@font-face {
    font-family: 'CustomFont';
    src: url('fonts/Aptos.ttf') format('truetype');
}

body {
    font-family: 'CustomFont';
    background-color: #f7f9fc;
    margin: 0;   
}

.global-card {
    max-width: 1200px;
    min-height: 600px;
    margin: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-header {
    display: flex;
    justify-content: space-between;
}

    .form-header h3 {
        margin: 0 0 0 25px;
        font-size: 18px;
        color: #333;
    }

.divider {
    height: 2px;
    background-color: #ddd;
    border-radius: 1px;
    margin: 20px 0 0 0;
    width: calc(100% + 40px); 
    transform: translateX(-20px); 
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.catalog-card {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    text-decoration: none; /* Remove underline for links */
    color: inherit; /* Inherit text color */
}

    .catalog-card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.icon-container {
    background-color: #283593;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 112px;
    flex-shrink: 0;
}

.catalog-title {
    padding: 0 20px;
    font-family: 'CustomFont';
    font-size: 18px;
    font-weight: 700;
    color: #0071C1
}

.icon-container img {
    width: 35px;
    height: 35px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 20px;
    }

    .icon-container {
        width: 60px;
        height: 60px;
    }

    .catalog-title {
        font-size: 16px;
    }
}

.summary-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: none;
}

.summary-table {
    width: 100%;
    margin: 10px 0;
    border: none;
}

    .summary-table td {
        padding: 15px;
        border: none;
        border-bottom: 1px solid #e0e0e0; /* Light gray line */
    }

.total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    background-color: #f8f9fc; /* Light gray background */
    padding: 10px;
    border-radius: 5px;
}

.text3 {
    font-family: "Poppins", Helvetica;
    font-weight: 700;
    color: #5c5c5c;
    font-size: 24px;
    letter-spacing: 0;
    line-height: normal;
}

.text5 {
    font-family: "CustomFont", Helvetica;
    font-weight: 700;
    color: rgba(33, 33, 33, 1);
    font-size: 22px;
    letter-spacing: 0;
    line-heigh
}