html, body.about-us-page {
    margin: 0;
    padding: 0;
    background-color: #161616; 
}

.about-main {
    min-height: calc(100vh - 82px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #161616;
    padding: 4rem 2rem; 
}

/* Hero Section */
.about-hero {
    background-color: transparent;
    text-align: center;
    margin-bottom: 2rem;
}

.about-hero-container {
    max-width: 800px;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
}

.about-subtitle {
    font-size: 1.15rem;
    color: #cccccc;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.about-cards-section {
    background-color: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cards-container {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Card Styling */
.info-card {
    background-color: #1f1f1f;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    
    /* Animation base setup */
    opacity: 0;
    transform: translateY(30px);
}

.info-card.appear {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #e44343;
}

.info-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.75rem 0;
    color: #ffffff;
}

.info-card p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }
}