/* About Page Specific Styles */

.about-main-content {
    padding: 40px 74px 60px;
    position: relative;
    z-index: 5;
    max-width: 1440px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 50px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #2C3E50;
    margin-bottom: 24px;
    max-width: 629px;
}

.about-description {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #2C3E50;
    max-width: 1282px;
}

/* Cards Section */
.cards-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
}

.info-card {
    background: rgba(74, 144, 226, 0.5);
    border-radius: 16px;
    padding: 24px 34px;
    width: 100%;
    max-width: 1308px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.star-icon {
    width: 34px;
    height: 37px;
    display: block;
    object-fit: contain;
}

.card-header h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 37px;
    color: #333333;
    margin: 0;
}

.card-content {
    display: flex;
    gap: 24px;
}

.card-content.single-column {
    flex-direction: column;
}

.card-column {
    flex: 1;
}

.card-column ul,
.education-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-column li,
.education-list li {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #333333;
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.card-column li:before,
.education-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: bold;
}

/* Ensure footer stays at bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-main-content {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .about-main-content {
        padding: 40px 60px 60px;
    }
}

@media (max-width: 1200px) {
    .card-content {
        flex-direction: column;
        gap: 0;
    }
    
    .about-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-main-content {
        padding: 24px 24px 80px 24px;
    }
    
    .about-title {
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        margin: 0 auto 24px auto;
        max-width: 320px;
    }
    
    .about-description {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        margin: 0 auto;
        max-width: 340px;
    }
    
    .info-card {
        padding: 20px 24px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .card-header {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 16px;
    }
    
    .card-header h2 {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }
    
    .card-column li,
    .education-list li {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 16px;
    }
    
    .cards-section {
        margin-bottom: 60px;
        gap: 24px;
    }
}