/* --- About Page Layout --- */
body {
    overflow-x: hidden; /* Prevents 100vw breakout from causing side-scroll */
}

.about-container {
    max-width: 800px; /* Narrow column for text readability */
    margin: 80px auto;
    padding: 0 20px;
    animation: fadeInAbout 0.8s ease-out;
}

.about-header {
    margin-bottom: 60px;
}

.about-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a73e8; /* Digital Blue */
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.about-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #202124;
    line-height: 1.1;
    margin: 0;
}

/* --- Content Styling --- */
.about-content {
    font-size: 18px;
    line-height: 1.8;
    color: #3c4043;
}

.intro-text {
    font-size: 22px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 40px;
}

.content-block p {
    margin-bottom: 30px;
}

/* Pull Quote Styling */
.content-quote {
    margin: 50px 0;
    padding-left: 30px;
    border-left: 4px solid #1a73e8;
}

.content-quote blockquote {
    font-style: italic;
    font-size: 24px;
    color: #1a73e8;
    margin: 0;
    line-height: 1.4;
}

.about-mission {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    font-weight: 600;
    color: #202124;
}

/* Simple Entrance Animation */
@keyframes fadeInAbout {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Mobile View (S24 Ultra / iPhone) --- */
@media (max-width: 768px) {
    .about-container {
        margin: 60px auto;
        padding: 0 25px;
    }
    
    .about-header h1 {
        font-size: 36px;
    }
    
    .intro-text {
        font-size: 20px;
        line-height: 1.5;
    }

    .about-content {
        font-size: 17px;
    }

    .content-quote blockquote {
        font-size: 20px;
    }
}

/* --- Breadcrumb Styling --- */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 13px;
    color: #70757a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    text-decoration: none;
    color: #70757a;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #1a73e8; /* Digital Blue */
}

.breadcrumb-separator {
    color: #dadce0;
}

.breadcrumb-current {
    color: #202124;
    font-weight: 500;
}

.about-container {
    /* This overrides the 100px from the main file */
    padding-top: 40px !important; 
    padding-left: 20px !important;
}