/* About page specific styles - navigation inherited from main style.css */


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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* About page specific styles */
/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    animation: fadeInUp 1s ease-out;
}

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

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    animation: scaleIn 1s ease-out 0.3s both;
}

.about-hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'GeoCaps', 'Ubuntu', sans-serif;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    font-family: 'GeoCaps', 'Ubuntu', sans-serif;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.about-hero-description {
    font-size: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.7;
    opacity: 0.9;
    font-family: 'Geo1', 'Ubuntu', sans-serif;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.about-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.7s both;
}

.hero-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), #e09c3b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
    box-shadow: 0 20px 60px rgba(252,182,78,0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.hero-image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(252,182,78,0.25);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background-color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.mission-card, .vision-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
    border: 1px solid transparent;
}

.mission-card {
    animation-delay: 0.1s;
}

.vision-card {
    animation-delay: 0.2s;
}

.mission-card::after, .vision-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #e09c3b);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 0 0 2px rgba(252, 182, 78, 0.12) inset;
}

.mission-card:hover::after, .vision-card:hover::after {
    transform: scaleX(1);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e09c3b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.mission-card:hover .mission-icon, .vision-card:hover .vision-icon {
    transform: scale(1.03);
}

.mission-card h3, .vision-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.mission-card:hover h3, .vision-card:hover h3 {
    color: var(--primary-color);
}

.mission-card p, .vision-card p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mission-card:hover p, .vision-card:hover p {
    opacity: 1;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23Fcb64e" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    animation: scaleIn 1s ease-out 0.3s both;
}

.team-header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.team-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    animation: fadeInLeft 1s ease-out 0.7s both;
}

.team-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    color: var(--secondary-color);
    opacity: 0.8;
    animation: fadeInRight 1s ease-out 0.9s both;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
    border: 1px solid transparent;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }

.team-member::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #e09c3b);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10), 0 0 0 2px rgba(252, 182, 78, 0.12) inset;
}

.team-member:hover::after {
    transform: scaleX(1);
}

.member-photo {
    margin-bottom: 20px;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e09c3b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 48px;
    color: var(--white);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.team-member:hover .photo-placeholder {
    transform: scale(1.03);
}

.member-info h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-member:hover .member-info h3 {
    color: var(--primary-color);
}

.member-position {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.member-description {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-description {
    opacity: 1;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    animation: slideInFromBottom 0.6s ease-out both;
}

.member-skills:nth-child(1) { animation-delay: 0.1s; }
.member-skills:nth-child(2) { animation-delay: 0.2s; }
.member-skills:nth-child(3) { animation-delay: 0.3s; }

.skill-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e09c3b 100%);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 8px rgba(252, 182, 78, 0.25);
}

/* Values Section */
.values {
    padding: 80px 0;
    background-color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: scaleIn 1s ease-out 0.3s both;
}

.values-header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.values-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    animation: fadeInLeft 1s ease-out 0.7s both;
}

.values-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    color: var(--secondary-color);
    opacity: 0.8;
    animation: fadeInRight 1s ease-out 0.9s both;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.value-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
    border: 1px solid transparent;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #e09c3b);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 0 0 2px rgba(252, 182, 78, 0.12) inset;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e09c3b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.value-card:hover .value-icon {
    transform: scale(1.03);
}

.value-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: var(--primary-color);
}

.value-card p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-color);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.value-card:hover p {
    opacity: 1;
}

/* About Stats Section */
.about-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    animation: fadeInUp 1s ease-out;
}

.about-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.stat-item {
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Ubuntu', sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.03);
}

.stat-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.stat-item:hover .stat-label {
    opacity: 1;
}

/* Improve contrast for About Stats on light background */
.about-stats .stat-item { color: var(--secondary-color); }
.about-stats .stat-number { color: var(--primary-color); }
.about-stats .stat-label { color: var(--secondary-color); }

/* Mobile Responsive Design */
@media (max-width: 1400px) {
    /* Prevent horizontal overflow on mobile only */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    .about-hero-container,
    .mission-vision-container,
    .team-container,
    .values-container,
    .about-stats-container {
        max-width: 100%;
        overflow-x: hidden;
    }
    /* Mobile responsive styles */
    
    .about-hero {
        padding: 80px 0 60px;
        min-height: 50vh;
    }
    
    .about-hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        word-wrap: break-word;
    }
    
    .about-hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: left;
        hyphens: none;
    }
    
    .hero-image-placeholder {
        display: none;
    }
    
    .mission-vision {
        padding: 60px 0;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .mission-card, .vision-card {
        padding: 35px 25px;
        border-radius: 18px;
        text-align: center;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .mission-card p, .vision-card p {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
        hyphens: none;
    }
    
    .team {
        padding: 60px 0;
    }
    
    .team-container {
        padding: 0 15px;
    }
    
    .team-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .team-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
        line-height: 1.4;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-member {
        padding: 30px 25px;
        border-radius: 18px;
        text-align: center;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .team-member h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .member-position {
        text-align: center !important;
    }
    
    .team-member p {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
        hyphens: none;
    }
    
    .values {
        padding: 80px 0;
    }
    
    .values-container {
        padding: 0 20px;
    }
    
    .values-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .values-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        line-height: 1.4;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .value-card {
        padding: 35px 25px;
        border-radius: 18px;
        text-align: center;
    }
    
    .value-card i {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .value-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .value-card p {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
        hyphens: none;
    }
    
    .about-stats {
        padding: 60px 0;
    }
    
    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .stat-card {
        padding: 25px 20px;
        border-radius: 16px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 1rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    /* Mobile responsive styles */
    
    .about-hero {
        padding: 80px 0 50px;
        min-height: 45vh;
    }
    
    .about-hero-container {
        padding: 0 18px;
        gap: 35px;
    }
    
    .about-hero-title {
        font-size: 2.3rem;
        line-height: 1.2;
        margin-bottom: 18px;
        word-wrap: break-word;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 18px;
        font-weight: 600;
    }
    
    .about-hero-description {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: left;
        hyphens: none;
    }
    
    .hero-image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    .mission-vision {
        padding: 60px 0;
    }
    
    .mission-vision-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .mission-card, .vision-card {
        padding: 30px 22px;
        border-radius: 18px;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.7rem;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .mission-card p, .vision-card p {
        font-size: 1.05rem;
        line-height: 1.6;
        text-align: left;
        hyphens: none;
    }
    
    .team {
        padding: 60px 0;
    }
    
    .team-container {
        padding: 0 15px;
    }
    
    .team-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .team-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .team-grid {
        gap: 25px;
    }
    
    .team-member {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .team-member h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .member-position {
        text-align: center !important;
    }
    
    .team-member p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
        hyphens: none;
    }
    
    .values {
        padding: 60px 0;
    }
    
    .values-container {
        padding: 0 15px;
    }
    
    .values-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .values-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .values-grid {
        gap: 20px;
    }
    
    .value-card {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .value-card i {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .value-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .value-card p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
        hyphens: none;
    }
    
    .about-stats {
        padding: 50px 0;
    }
    
    .about-stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
        border-radius: 14px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.95rem;
        line-height: 1.3;
    }
}

/* iPhone 12 Pro and similar devices (390px width) */
@media (max-width: 390px) {
    /* Guardrail against tiny-width horizontal scroll */
    html, body { overflow-x: hidden; }
    .about-hero-container,
    .mission-vision-container,
    .team-container,
    .values-container,
    .about-stats-container { max-width: 100%; overflow-x: hidden; }
    /* Mobile responsive styles */
    
    .about-hero {
        padding: 80px 0 50px;
        min-height: 45vh;
    }
    
    .about-hero-container {
        padding: 0 12px;
        gap: 25px;
    }
    
    .about-hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .about-hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: left;
        hyphens: none;
        word-wrap: break-word;
    }
    
    .hero-image-placeholder {
        width: 160px;
        height: 160px;
        font-size: 2.5rem;
    }
    
    .mission-vision {
        padding: 40px 0;
    }
    
    .mission-vision-container {
        padding: 0 12px;
        gap: 25px;
    }
    
    .mission-card, .vision-card {
        padding: 25px 18px;
        border-radius: 16px;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .mission-card p, .vision-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .team {
        padding: 40px 0;
    }
    
    .team-container {
        padding: 0 12px;
    }
    
    .team-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .team-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .team-grid {
        gap: 20px;
        max-width: 320px;
    }
    
    .team-member {
        padding: 25px 18px;
        border-radius: 16px;
    }
    
    .team-member img {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .team-member h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .team-member p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .values {
        padding: 40px 0;
    }
    
    .values-container {
        padding: 0 12px;
    }
    
    .values-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .values-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .values-grid {
        gap: 18px;
        max-width: 320px;
    }
    
    .value-card {
        padding: 20px 18px;
        border-radius: 16px;
    }
    
    .value-card i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .value-card p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .about-stats {
        padding: 40px 0;
    }
    
    .about-stats-container {
        gap: 12px;
        padding: 0 12px;
    }
    
    .stat-card {
        padding: 18px 15px;
        border-radius: 14px;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        line-height: 1.2;
    }
}

/* Tablet fixes (no effect on desktop): avoid >100% width layouts */
@media (min-width: 769px) and (max-width: 1180px) {
    .mission-vision-container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        padding: 0 20px;
        max-width: 100%;
    }
}

/* iPhone 12 Pro Touch Optimizations */
@media (max-width: 390px) and (hover: none) and (pointer: coarse) {
    .mission-card,
    .vision-card,
    .team-member,
    .value-card,
    .stat-card {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .mission-card:active,
    .vision-card:active,
    .team-member:active,
    .value-card:active,
    .stat-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

