 * {
            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: 800px;
            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;
        }

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

        .section-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

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

        .section-intro p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }

        .feature-showcase {
            display: grid;
            gap: 8rem;
            margin-bottom: 5rem;
        }

        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .feature-row.reverse {
            direction: rtl;
        }

        .feature-row.reverse > * {
            direction: ltr;
        }

        .feature-visual {
            background: rgba(139, 115, 85, 0.1);
            border-radius: 20px;
            padding: 3rem;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(139, 115, 85, 0.2);
            position: relative;
            overflow: hidden;
        }

        .feature-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 165, 165, 0.15) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .visual-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .visual-icon {
            font-size: 6rem;
            margin-bottom: 1rem;
            display: block;
        }

        .visual-label {
            font-size: 1.5rem;
            color: #8b7355;
            font-weight: 600;
        }

        .feature-content h3 {
            font-size: 2rem;
            color: #2c2c2c;
            margin-bottom: 1.5rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
        }

        .feature-content p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .feature-points {
            list-style: none;
            padding: 0;
        }

        .feature-points li {
            display: flex;
            align-items: start;
            gap: 1rem;
            padding: 1rem;
            margin-bottom: 0.8rem;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .feature-points li:hover {
            background: rgba(139, 115, 85, 0.1);
            transform: translateX(10px);
        }

        .point-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #8b7355 0%, #c5a87a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 2px;
        }

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

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

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

        .capability-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .capability-card h4 {
            font-size: 1.4rem;
            color: #2c2c2c;
            margin-bottom: 1rem;
            font-weight: 600;
        }

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

        .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: 968px) {
            .hero-section {
                height: 400px;
                margin: 1rem 1.5rem;
            }

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

            .feature-row {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .feature-row.reverse {
                direction: ltr;
            }

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

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

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

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

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

            .cta-section h2 {
                font-size: 2rem;
            }
        }