* {
            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;

        }

        .services-hero {
            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);
        }
        

        .services-hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
        }

        .services-hero 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;
        }

        .services-hero p {
            font-size: 1.2rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            font-weight: 500;
            max-width: 600px;
        }

        .services-details {
            padding: 4rem 2rem;
            background: #e8e3db;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .services-intro {
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .service-card {
            text-align: center;
            background: rgba(255, 255, 255, 0.211);
            padding: 2rem;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(224, 135, 135, 0.12);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .service-card h3 {
            font-size: 1.6rem;
            color: #2c2c2c;
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
        }

        .service-card p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: #555;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .service-features li:before {
            content: "✓";
            color: #8b7355;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .service-link {
            display: inline-block;
            color: #8b7355;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .service-link:hover {
            border-bottom-color: #8b7355;
        }

        .why-section {
            background: #e8e3db;
            padding: 4rem 2rem;
        }

        .why-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-point {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.211);
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .why-point:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(224, 135, 135, 0.12);
        }

        .why-point h4 {
            color: #8b7355;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .why-point p {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: left;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .bento-card {
            background: rgba(255, 255, 255, 0.211);
            padding: 2rem;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(224, 135, 135, 0.12);
        }

        .bento-card.large {
            min-height: 300px;
        }

        .bento-card h3 {
            font-size: 1.6rem;
            color: #2c2c2c;
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
        }

        .bento-card p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .bento-link {
            display: inline-block;
            color: #8b7355;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            align-self: flex-start;
        }

        .bento-link:hover {
            color: #c5956b;
        }

        .results-section {
            padding: 4rem 2rem;
            background: #e8e3db;
        }

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

        .results-section p {
            text-align: center;
            font-size: 1rem;
            color: #555;
            margin-bottom: 3rem;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .result-card {
            background: rgba(255, 255, 255, 0.211);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .result-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(224, 135, 135, 0.12);
        }

        .result-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .result-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .result-content {
            padding: 2rem;
        }

        .result-quote {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .result-author h4 {
            color: #2c2c2c;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            font-weight: 700;
        }

        .result-author span {
            color: #8b7355;
            font-size: 0.85rem;
            font-weight: 500;
        }

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

        .cta-section h2 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 800;
            font-family: 'Montserrat', 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.1rem;
            margin-bottom: 2rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .cta-btn {
            display: inline-block;
            background: rgba(255, 255, 255, 0.95);
            color: #8b7355;
            padding: 1rem 3rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
            color: #6b5344;
        }

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

        footer p {
            margin: 0.5rem 0;
            font-size: 0.95rem;
        }

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

            .services-hero h1 {
                font-size: 2.5rem;
            }

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

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

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

            nav {
                padding: 0 1.5rem;
            }

            .nav-left, .nav-right {
                gap: 1rem;
            }

            .cta-section {
                margin: 1.5rem;
            }

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

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

            .services-hero p {
                font-size: 0.9rem;
            }

            .cta-btn {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }