* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #e8e3db;
        }

        header {
            background: #e8e3db;
            padding: 1.5rem 0;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 3rem;
        }

        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-left a, .nav-right a {
            color: #333;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-left a:hover, .nav-right a:hover {
            color: #8b7355;
        }

        .logo {
            font-size: 2rem;
            font-weight: 1000;
            color: #333;
            font-family: 'Cinzel Decorative', serif;
            font-variant: small-caps;
            text-decoration: none;
        }

        .hero-section {
            height: 400px;
            border-radius: 50px;
            background: linear-gradient(135deg, #c5a87a 9%, #9b8278 50%, #d4a5a5 80%, #8b7355 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 2rem 3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 900px;
            padding: 0 2rem;
        }

        .brand {
            color: #ffffff;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            margin-bottom: 8px;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;;
        }

        .hero-content p {
            font-size: 1.3rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            font-weight: 400;
            opacity: 0.95;
            line-height: 1.6;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 3rem;
        }

        .story-section {
            max-width: 900px;
            margin: 0 auto 6rem;
            text-align: center;
        }

        .story-section h2 {
            font-size: 2.8rem;
            color: #2c2c2c;
            margin-bottom: 2rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .story-section p {
            font-size: 1.15rem;
            color: #555;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .values-section {
            margin-bottom: 6rem;
        }

        .values-section h2 {
            font-size: 2.8rem;
            color: #2c2c2c;
            text-align: center;
            margin-bottom: 3rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-10px);
            border-color: #d4a5a5;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .value-card h3 {
            font-size: 1.6rem;
            color: #2c2c2c;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .value-card p {
            color: #555;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .team-section {
            margin-bottom: 6rem;
        }

        .team-section h2 {
            font-size: 2.8rem;
            color: #2c2c2c;
            text-align: center;
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .team-intro {
            text-align: center;
            font-size: 1.1rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 25px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .team-member:hover {
            transform: translateY(-10px);
            border-color: #d4a5a5;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .member-photo {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #8b7355 0%, #c5a87a 100%);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }

        .member-name {
            font-size: 1.3rem;
            color: #2c2c2c;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .member-role {
            color: #8b7355;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .member-bio {
            color: #555;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .stats-section {
            background: linear-gradient(135deg, #c5a87a 9%, #9b8278 50%, #d4a5a5 80%, #8b7355 100%);
            border-radius: 30px;
            padding: 5rem 3rem;
            margin: 3rem;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            color: white;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        .mission-section {
            max-width: 1000px;
            margin: 6rem auto;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 30px;
            padding: 4rem;
            text-align: center;
        }

        .mission-section h2 {
            font-size: 2.8rem;
            color: #2c2c2c;
            margin-bottom: 2rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .mission-section p {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.9;
        }

        .cta-section {
            background: linear-gradient(135deg, #c5a87a 9%, #9b8278 50%, #d4a5a5 80%, #8b7355 100%);
            padding: 5rem 3rem;
            text-align: center;
            margin: 3rem;
            border-radius: 30px;
        }

        .cta-section h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .cta-btn {
            display: inline-block;
            background: white;
            color: #8b7355;
            padding: 1.2rem 3.5rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        footer p {
            margin: 0.5rem 0;
        }

        @media (max-width: 1100px) {
            .values-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 968px) {
            .hero-section {
                height: 400px;
                margin: 1rem 1.5rem;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .about-container {
                padding: 3rem 1.5rem;
            }

            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 0 1.5rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .mission-section {
                padding: 2.5rem;
            }
        }