/**
 * ABOUT PAGE - CUSTOM STYLES
 * --------------------------
 * Dedicated CSS file for about.php page
 * Includes: Hero, Vision & Mission Cards, Impact Metrics Counter Stats
 */

:root {
    --gold: #D4AF37;
    --navy: #0A1F44;
    --rich-navy: #1A3A5C;
    --purple-primary: #8255f7;
    --purple-secondary: #8e66f7;
    --text-dark: #2C3E50;
    --text-muted: #5D6D7E;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography - Serif for headings (30 years legacy), Sans-serif for body (modern innovation) */
h1, h2, h3, h4, h5, h6,
.section-title,
.timeline-title,
.metrics-title,
.chairman-name,
.philosophy-card-title,
.timeline-content-title,
.timeline-year,
.timeline-vertical-year,
.timeline-vertical-title,
.chairman-quote-text {
    font-family: 'Cormorant Garamond', serif !important;
}

p, span, div, 
.section-subtitle,
.philosophy-card-content,
.timeline-content-text,
.timeline-vertical-text,
.counter-stat-label,
.counter-stat-description,
.chairman-title,
.hero-subtitle {
    font-family: 'Montserrat', sans-serif !important;
}

/* ========== GOLD COLOR ON PURPLE BACKGROUNDS ========== */
/* Ensure titles are visible on purple/navy backgrounds */
.bg-purple h1,
.bg-purple h2,
.bg-purple h3,
.bg-purple h4,
.bg-purple h5,
.bg-purple h6,
.bg-purple .section-title,
.bg-purple .timeline-title,
.bg-purple .metrics-title,
.bg-purple .chairman-name,
[style*="background"][style*="purple"] h1,
[style*="background"][style*="purple"] h2,
[style*="background"][style*="purple"] h3,
[style*="background"][style*="purple"] .section-title,
.impact-metrics-section h2,
.impact-metrics-section .metrics-title,
.chairman-section h2,
.chairman-section .chairman-name,
.chairman-section .chairman-quote-text {
    color: var(--gold) !important;
}

/* ========== HERO VIEWPORT SECTION ========== */
/* Responsive Hero Background Images - Using Media Queries */
/* Desktop - 1920x1080 (Default) */
.about-hero-viewport {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--rich-navy) 100%);
    background-image: url('../images/banners/about/CARE_N_SAFE_1920_x_1080.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Removed background-attachment: fixed for better performance and mobile compatibility */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Tablet - 1920x900 */
@media (max-width: 1024px) and (min-width: 768px) {
    .about-hero-viewport {
        background-image: url('../images/banners/about/CARE_N_SAFE_1920_x_900.png');
    }
}

/* Mobile - 600x480 */
@media (max-width: 767px) {
    .about-hero-viewport {
        background-image: url('../images/banners/about/CARE_N_SAFE_600x480.png');
        min-height: 400px;
    }
}

.about-hero-viewport::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(10 31 68 / 27%);
    z-index: 1;
}

.about-hero-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    padding: 0 30px;
}

.hero-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gold) !important;
    /* Black outline text-shadow effect */
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

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

/* ========== PHILOSOPHY SECTION - DUAL COLUMN CARDS ========== */
.philosophy-section {
    padding: 100px 0;
    background: var(--bg-light);
    /* Generous whitespace for empathy-driven design */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.philosophy-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-premium);
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #C19A2E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.philosophy-card:hover::before {
    transform: scaleX(1);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.philosophy-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.1) rotate(5deg);
}

.philosophy-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.philosophy-card-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    flex-grow: 1;
    margin-bottom: 25px;
    /* Increased line-height for better readability and comfort */
}

.philosophy-motto {
    background: linear-gradient(135deg, var(--gold), #C19A2E);
    color: var(--navy);
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-top: auto;
}

/* ========== IMPACT METRICS - COUNTER STATS COMPONENT ========== */
.impact-metrics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--rich-navy) 100%);
    position: relative;
    overflow: hidden;
}

.impact-metrics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.5;
}

.metrics-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.metrics-header {
    text-align: center;
    margin-bottom: 70px;
}

.metrics-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.metrics-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.counter-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.counter-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.counter-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.counter-stat-card:hover::before {
    opacity: 1;
}

.counter-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.counter-stat-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.counter-stat-card:hover .counter-stat-icon {
    transform: scale(1.15) rotate(5deg);
}

.counter-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.counter-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-stat-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    line-height: 1.6;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991px) {
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .philosophy-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .philosophy-card {
        padding: 40px 30px;
    }
    
    .section-title,
    .metrics-title {
        font-size: 2.8rem;
    }
    
    .counter-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .counter-stat-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-viewport {
        min-height: 400px;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .philosophy-section,
    .impact-metrics-section {
        padding: 60px 0;
    }
    
    .philosophy-card {
        padding: 35px 25px;
    }
    
    .philosophy-card-title {
        font-size: 2rem;
    }
    
    .philosophy-card-content {
        font-size: 1rem;
    }
    
    .section-title,
    .metrics-title {
        font-size: 2.3rem;
    }
    
    .counter-stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .counter-stat-card {
        padding: 40px 25px;
    }
    
    .counter-stat-number {
        font-size: 3rem;
    }
    
    .metrics-container,
    .philosophy-cards {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .philosophy-card {
        padding: 30px 20px;
    }
    
    .philosophy-icon {
        font-size: 2.5rem;
    }
    
    .counter-stat-icon {
        font-size: 2.5rem;
    }
    
    .counter-stat-number {
        font-size: 2.5rem;
    }
}

/* ========== ACCESSIBILITY & SEO ENHANCEMENTS ========== */
.about-hero-viewport,
.philosophy-section,
.impact-metrics-section {
    position: relative;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========== INTERACTIVE TIMELINE SECTION - THE LEGACY ========== */
.timeline-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.timeline-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Horizontal Timeline for Desktop */
.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Changed from flex-start to stretch for uniform height */
    position: relative;
    padding: 40px 0;
    margin-top: 60px;
    gap: 15px; /* Add gap between items */
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #C19A2E);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    flex: 1 1 0; /* Equal flex basis for uniform width */
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0; /* Prevents flex items from overflowing */
    max-width: 100%;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #C19A2E);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    transition: var(--transition);
}

.timeline-marker::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.timeline-marker-icon {
    font-size: 1.8rem;
    color: var(--navy);
    position: relative;
    z-index: 1;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
    padding: 0 5px;
}

.timeline-content {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px 25px;
    margin-top: 20px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    min-height: 240px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex: 1; /* Make all cards equal height */
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
    background: var(--bg-white);
}

.timeline-content-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    flex-shrink: 0;
}

.timeline-content-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Vertical Timeline for Mobile */
.timeline-vertical {
    display: none;
    position: relative;
    padding: 40px 0;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), #C19A2E);
}

.timeline-vertical-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-vertical-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), #C19A2E);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.timeline-vertical-content {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.timeline-vertical-content:hover {
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
    background: var(--bg-white);
}

.timeline-vertical-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.timeline-vertical-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.timeline-vertical-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ========== EXECUTIVE STATEMENT - CHAIRMAN'S MESSAGE ========== */
.chairman-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--rich-navy) 100%);
    position: relative;
    overflow: hidden;
}

.chairman-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.4;
}

.chairman-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.chairman-blockquote {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 80px 60px;
    border-left: 6px solid var(--gold);
    position: relative;
    display: flex;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    /* Generous padding for comfortable reading experience */
}

.chairman-photo {
    flex-shrink: 0;
    width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    position: relative;
}

.chairman-photo img {
    width: 100%;
    height: 100%;
    object-fit: initial;
    transition: transform 0.5s ease;
}

.chairman-photo:hover img {
    transform: scale(1.05);
}

.chairman-quote-content {
    flex: 1;
    position: relative;
}

.chairman-quote-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: 'Cormorant Garamond', serif;
}

.chairman-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--gold);
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
    z-index: 1;
    /* Larger font and increased spacing for emphasis and readability */
}

.chairman-quote-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: 'Cormorant Garamond', serif;
}

.chairman-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.chairman-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.chairman-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.chairman-signature-img {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    filter: brightness(1.1);
}

/* Desktop/Laptop - Ensure uniform timeline card heights */
@media (min-width: 992px) {
    .timeline-horizontal {
        align-items: stretch;
    }
    
    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-content {
        height: 240px;
        min-height: 240px;
    }
}

/* Responsive for Timeline and Chairman Section */
@media (max-width: 991px) {
    .timeline-horizontal {
        display: none;
    }
    
    .timeline-vertical {
        display: block;
    }
    
    .timeline-title,
    .chairman-quote-text {
        font-size: 2.8rem;
    }
    
    .chairman-blockquote {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    
    .chairman-photo {
        width: 220px;
        height: 220px;
        margin-bottom: 30px;
    }
    
    .chairman-quote-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .timeline-section,
    .chairman-section {
        padding: 60px 0;
    }
    
    .timeline-title {
        font-size: 2.5rem;
    }
    
    .chairman-blockquote {
        padding: 40px 30px;
    }
    
    .chairman-photo {
        width: 180px;
        height: 180px;
    }
    
    .chairman-quote-text {
        font-size: 1.5rem;
    }
    
    .chairman-name {
        font-size: 1.5rem;
    }
    
    .timeline-container,
    .chairman-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .timeline-title {
        font-size: 2rem;
    }
    
    .chairman-quote-text {
        font-size: 1.3rem;
    }
    
    .chairman-photo {
        width: 150px;
        height: 150px;
    }
    
    .chairman-blockquote {
        padding: 30px 20px;
    }
}
