/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Fiery Ocean Color Palette */
    --primary-color: #8B1538; /* Dark Red */
    --primary-dark: #5D0E26;  /* Darker Red */
    --secondary-color: #D2334A; /* Bright Red */
    --accent-color: #F4E4BC;  /* Cream */
    --text-primary: #1E3A5F;  /* Navy Blue */
    --text-secondary: #6B8CAE; /* Light Blue */
    --text-light: #9BABC8;    /* Lighter Blue */
    --bg-primary: #ffffff;
    --bg-secondary: #F8F9FB;
    --bg-dark: #1E3A5F;       /* Navy Blue */
    --border-color: #E6EBF0;
    --success-color: #10b981;
    --warning-color: #F4E4BC;
    --danger-color: #D2334A;
    
    /* Updated Gradients with new palette */
    --gradient-primary: linear-gradient(135deg, #8B1538 0%, #D2334A 100%);
    --gradient-secondary: linear-gradient(135deg, #D2334A 0%, #F4E4BC 100%);
    --gradient-accent: linear-gradient(135deg, #1E3A5F 0%, #6B8CAE 100%);
    --gradient-navy: linear-gradient(135deg, #1E3A5F 0%, #6B8CAE 100%);
    --gradient-warm: linear-gradient(135deg, #8B1538 0%, #F4E4BC 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #6B8CAE 100%);
    
    --shadow-sm: 0 1px 2px 0 rgba(30, 58, 95, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(30, 58, 95, 0.12), 0 2px 4px -1px rgba(30, 58, 95, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(30, 58, 95, 0.15), 0 4px 6px -2px rgba(30, 58, 95, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(30, 58, 95, 0.15), 0 10px 10px -5px rgba(30, 58, 95, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    padding-top: 120px; /* Header yüksekliği için padding */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles (Same as other pages) */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid var(--border-color) !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.top-bar {
    background: var(--bg-dark);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--accent-color);
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.navbar {
    padding: 15px 0;
    position: relative;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    transition: all 0.3s ease;
}

.logo a:hover h2 {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin: 0 15px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
}

/* Add spacing for dropdown chevron */
.nav-menu .dropdown > a i {
    margin-left: 6px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(139, 21, 56, 0.1);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(139, 21, 56, 0.15);
    font-weight: 700;
}

/* Desktop dropdown - only hover */
@media (min-width: 769px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        min-width: 280px;
        z-index: 100;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(20px);
        overflow: hidden;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
}

.dropdown-menu li {
    margin: 0;
    position: relative;
}

.dropdown-menu li:first-child {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.dropdown-menu li:last-child {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.dropdown-menu a {
    padding: 18px 25px;
    border-bottom: 1px solid rgba(139, 21, 56, 0.08);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.08) 0%, rgba(210, 51, 74, 0.05) 100%);
    color: var(--primary-color);
    transform: translateX(8px);
    padding-left: 30px;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1003;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Page Header */
.about-page .page-header {
    padding: 150px 0 80px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="600" cy="800" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.1;
}

.about-page .header-content {
    position: relative;
    z-index: 2;
}

.about-page .header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-page .header-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-page .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.about-page .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-page .breadcrumb a:hover {
    color: white;
}

.about-page .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Our Story Section */
.about-page .our-story {
    padding: 100px 0;
}

.about-page .story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page .story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.about-page .story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-page .story-image {
    position: relative;
}

.about-page .image-placeholder {
    width: 100%;
    max-width: 600px;
    height: auto; /* override generic .image-placeholder heights from other pages */
    aspect-ratio: 1 / 1; /* kare oran */
    background: var(--gradient-accent);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 0 auto; /* ortala */
}

.about-page .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.about-page .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    color: white;
}

.about-page .stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.about-page .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.about-page .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mission & Vision Section */
.about-page .mission-vision {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-page .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-page .mv-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.about-page .mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.about-page .mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.about-page .mv-icon i {
    font-size: 2rem;
    color: white;
}

.about-page .mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-page .mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.about-page .mv-list {
    list-style: none;
    text-align: left;
}

.about-page .mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.about-page .mv-list li:last-child {
    border-bottom: none;
}

.about-page .mv-list li i {
    color: var(--success-color);
    font-size: 1rem;
}

/* Values Section */
.about-page .values {
    padding: 100px 0;
}

.about-page .values-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-page .values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.about-page .values-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-page .value-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.about-page .value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-page .value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-page .value-icon i {
    font-size: 1.8rem;
    color: white;
}

.about-page .value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.about-page .value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Team Section */
.about-page .team {
    padding: 40px 0 100px;
    background: var(--bg-secondary);
}

.about-page .team-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-page .team-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.about-page .team-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.about-page .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-page .team-member {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.about-page .team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-page .member-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-page .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-page .team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.about-page .member-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-page .member-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* CTA Section */
.about-page .cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.about-page .cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-page .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-page .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-page .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.about-page .cta-button.primary {
    background: var(--accent-color);
    color: var(--text-primary);
}

.about-page .cta-button.primary:hover {
    background: #F0D89A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.about-page .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-page .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer .contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer .contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-float span {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-page {
        padding-top: 100px; /* Mobilde daha az padding */
    }
    
    .top-bar {
        padding: 10px 0;
        position: relative;
        z-index: 1001;
    }
    
    .about-page .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 20px;
        transition: right 0.3s ease;
        z-index: 1002;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        overflow: hidden;
    }
    
    .about-page .nav-menu.active {
        right: 0;
    }
    
    .about-page .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .about-page .nav-menu a {
        padding: 18px 25px;
        width: 100%;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .about-page .nav-menu .dropdown > a {
        background: transparent;
        color: var(--text-primary);
        font-weight: 600;
        border-bottom: 1px solid rgba(139, 21, 56, 0.2);
    }
    
    .about-page .nav-menu .dropdown > a:hover {
        background: rgba(139, 21, 56, 0.05);
        color: var(--primary-color);
    }
    
    .about-page .nav-menu .dropdown.show > a {
        background: #F8E8E9;
        color: var(--primary-color);
    }
    
    .about-page .nav-menu .dropdown > a i {
        color: var(--text-secondary);
        transition: transform 0.3s ease;
    }
    
    .about-page .nav-menu .dropdown.show > a i {
        color: var(--primary-color);
        transform: rotate(180deg);
    }
    
    .about-page .dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        box-shadow: none !important;
        background: #F8E8E9;
        margin: 0;
        border-radius: 0;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 0;
    }
    
    .about-page .dropdown-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 400px;
        padding: 0;
    }
    
    .about-page .dropdown-menu a {
        padding: 15px 25px;
        font-size: 1rem;
        color: var(--text-primary);
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(139, 21, 56, 0.1);
        background: #F5F5F5;
        transition: all 0.3s ease;
    }
    
    .about-page .dropdown-menu a:hover {
        background: rgba(139, 21, 56, 0.05);
        color: var(--primary-color);
        transform: none;
        padding-left: 30px;
    }
    
    .about-page .dropdown-menu a i {
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
        color: var(--primary-color);
    }
    
    .about-page .dropdown-menu li:last-child a {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .top-bar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        order: 1;
        flex: 1;
    }
    
    .contact-info span {
        margin: 0;
        font-size: 12px;
        padding: 2px 0;
        text-align: left;
    }
    
    .social-links {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 8px;
        width: auto;
    }
    
    .social-links a {
        margin: 0;
        font-size: 14px;
        padding: 8px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-radius: 8px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .social-links a:hover {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-page .header-content h1 {
        font-size: 2.2rem;
    }
    
    .about-page .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-page .story-text {
        padding-right: 0;
    }
    
    .about-page .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-page .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .about-page .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .about-page .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-page .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .about-page .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .about-page .cta-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .about-page .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .about-page .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .about-page .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .about-page .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .about-page .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-page .whatsapp-float span {
        display: none;
    }
    
    .about-page .whatsapp-float a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .about-page .whatsapp-float i {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .about-page .container {
        padding: 0 15px;
    }
    
    .about-page .page-header {
        padding: 120px 0 60px;
    }
    
    .about-page .header-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .about-page .header-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .about-page .header-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .about-page .breadcrumb {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .about-page .our-story {
        padding: 60px 0;
    }
    
    .about-page .mission-vision {
        padding: 60px 0;
    }
    
    .about-page .values {
        padding: 60px 0;
    }
    
    .about-page .team {
        padding: 60px 0;
    }
    
    .about-page .values-header h2,
    .about-page .team-header h2 {
        font-size: 2rem;
    }
    
    .about-page .mv-card,
    .about-page .value-card,
    .about-page .team-member {
        padding: 20px;
    }
}
