body {
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

.brand-section {
    padding: 4rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Header Content */
.header-content {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    font-size: 1.125rem;
    color: #5c5c5c;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #135c80;
    margin-top: 1.5rem;
    text-wrap: balance;
}

/* Cards Grid */
.cards-grid {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

.card:hover .card-image {
    transform: scale(1.02);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-label {
    margin-top: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-section {
        padding: 3rem 1.25rem;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cards-grid {
        gap: 2.5rem;
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-label {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-section {
        padding: 2rem 1rem;
    }

    .title {
        font-size: 1.3rem;
    }

    .subtitle {
        font-size: 14px;
    }
    .card-image {
        max-width: 200px;
    }

    .header-content {
        margin-bottom: 3rem;
    }

    .cards-grid {
        gap: 2rem;
    }

    .card-label {
        font-size: 1.375rem;
        margin-top: 1.25rem;
    }
}

/* Animation on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.home-footer {
    overflow: hidden;
}

.home-footer::after {
    top: -19px !important;
}

.page-header {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c040e8c;
    z-index: 1;
}
@media (max-width: 686px) {
    .page-header {
        height: 200px;
    }

}