* { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #0f766e;
            --secondary: #0d9488;
            --accent: #f59e0b;
            --dark: #0f172a;
            --light: #f8fafc;
            --text: #1e293b;
            --gray: #64748b;
            --border: #e2e8f0;
        }
        html { scroll-behavior: smooth; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif; color: var(--text); }
        
        header {
            background: white;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo { font-size: 26px; font-weight: 800; color: var(--primary); text-decoration: none; }
        nav ul { display: flex; list-style: none; gap: 45px; }
        nav a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 14px; }
        nav a:hover { color: var(--primary); }
        nav a.active { color: var(--primary); border-bottom: 2px solid var(--primary); }

        .page-header {
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
            padding: 80px 60px;
            text-align: center;
        }

        .page-header h1 { font-size: 52px; font-weight: 900; margin-bottom: 15px; }
        .page-header p { font-size: 18px; color: var(--gray); max-width: 700px; margin: 0 auto; }

        section { padding: 100px 60px; }
        section.light { background: white; }
        section.gradient { background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%); }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 100px;
        }

        .about-text h2 { font-size: 42px; font-weight: 900; margin-bottom: 25px; }
        .about-text p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }

        .about-image {
            width: 100%;
            height: 450px;
            background-image: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%), url('../stration-images/our-story.webp');
            background-size: cover;
            background-position: center;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(15, 118, 110, 0.15);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        .value-box {
            background: white;
            padding: 45px;
            border-radius: 8px;
            border: 1px solid var(--border);
            text-align: center;
        }

        .value-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .value-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .value-box p { font-size: 14px; color: var(--gray); line-height: 1.8; }

        .team-section {
            text-align: center;
            margin-bottom: 80px;
        }

        .team-section h2 { font-size: 42px; font-weight: 900; margin-bottom: 20px; }
        .team-section p { font-size: 17px; color: var(--gray); max-width: 700px; margin: 0 auto 80px; }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .team-member {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .member-image {
            width: 100%;
            height: 300px;
            background-image: linear-gradient(135deg, rgba(15, 118, 110, 0.2) 0%, rgba(13, 148, 136, 0.2) 100%);
            background-size: cover;
            background-position: center;
        }

        .member-image.sarah {
    background-image:
        linear-gradient(135deg, rgba(15,118,110,0.2), rgba(13,148,136,0.2)),
        url('../stration-images/sarah-mitchell.jpg');
}

.member-image.michael {
    background-image:
        linear-gradient(135deg, rgba(15,118,110,0.2), rgba(13,148,136,0.2)),
        url('../stration-images/Michael-chen.jpg');
}

.member-image.lisa {
    background-image:
        linear-gradient(135deg, rgba(15,118,110,0.2), rgba(13,148,136,0.2)),
        url('../stration-images/Lisa-Anderson.jpg');
}


        .member-info {
            padding: 30px;
            text-align: center;
        }

        .member-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
        .member-role { font-size: 13px; color: var(--gray); }

        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 100px 60px;
            text-align: center;
        }

        .cta-section h2 { font-size: 48px; font-weight: 900; margin-bottom: 20px; }
        .cta-section p { font-size: 18px; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }

        .btn {
            padding: 14px 35px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-white { background: white; color: var(--primary); }
        .btn-white:hover { background: var(--light); }

        footer {
            background: var(--dark);
            color: white;
            padding: 80px 60px 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
        }

        footer h4 { font-size: 13px; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; }
        footer a { color: #94a3b8; text-decoration: none; display: block; font-size: 14px; margin-bottom: 8px; }
        footer a:hover { color: white; }

        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 40px;
            text-align: center;
            color: #64748b;
            font-size: 13px;
        }

        @media (max-width: 1024px) {
            header { padding: 15px 40px; }
            nav ul { gap: 30px; }
            .page-header { padding: 60px 40px; }
            .page-header h1 { font-size: 40px; }
            section { padding: 80px 40px; }
            .about-content { grid-template-columns: 1fr; gap: 50px; }
            .values-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: 1fr; }
            footer { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            header { flex-direction: column; gap: 12px; padding: 12px 20px; }
            nav ul { gap: 20px; flex-wrap: wrap; justify-content: center; }
            .page-header { padding: 50px 20px; }
            .page-header h1 { font-size: 32px; }
            section { padding: 60px 20px; }
            .about-text h2 { font-size: 32px; }
            .team-grid { grid-template-columns: 1fr; }
            footer { grid-template-columns: 1fr; }
        }