/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333333;
}

/* All Headings Use Sora Font */
h1, h2, h3, h4, h5, h6,
.banner-title,
.section-title,
.subsection-title,
.welcome-title,
.welcome-quote-title,
.section-heading,
.legacy-title,
.legacy-subtitle,
.founder-detail-title,
.founder-name,
.mission-title,
.vision-title {
    font-family: 'Sora', sans-serif;
}

/* About Us Container */
.about-us-container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%);
}

/* Mac-specific font size adjustments */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @supports (-webkit-appearance: none) {
        /* Target Safari on Mac */
        .about-us-container {
            font-size: 0.92em; /* Reduce base font size by 8% */
        }
        
        /* Reduce heading sizes */
        .banner-title,
        .section-title,
        .subsection-title,
        .welcome-title,
        .welcome-quote-title,
        .section-heading,
        .legacy-title,
        .founder-detail-title,
        .founder-name,
        .mission-heading,
        .vision-heading {
            font-size: 0.9em !important; /* Reduce headings by 10% */
        }
        
        /* Reduce body text sizes */
        .welcome-text p,
        .founder-detail-content p,
        .mission-text p,
        .vision-text p,
        .legacy-subtitle {
            font-size: 0.92em !important; /* Reduce body text by 8% */
        }
    }
}
