
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        header {
            background: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #8B6F47;
            letter-spacing: 2px;
        }

        .laisa-logo {
            height: 70px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #8B6F47;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hero {
            margin-top: 80px;
            height: 600px;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                        url('background.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 700px;
            line-height: 1.8;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            color: white;
            text-decoration: none;
            border: 2px solid white;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            transition: all 0.3s;
        }

        .btn:hover {
            background: white;
            color: #333;
        }

        .section {
            padding: 100px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .section-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 30px;
        }

        .section h2 {
            font-size: 36px;
            margin-bottom: 30px;
            font-weight: 300;
            text-transform: lowercase;
            color: #333;
        }

        .section p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #666;
        }

        .section strong {
            color: #333;
        }

        .image-placeholder {
            width: 80%;
            height: 350px;
            background: url('WhatsApp\ Image\ 2025-12-08\ at\ 18.19.37_7a52a040.jpg');
            border-radius: 10px;
        }

          .image-placeholder2 {
            width: 500;
            height: 400px;
            background: url('ramasadi.jpg');
            border-radius: 5px;
        }
          .image-placeholder3 {
            width: 80%;
            height: 350px;
            background: url('Bwerinofa.jpg');
            border-radius: 5px;
        }
        .bg-light {
            background: #F9F7F4;
        }

        .treatments-section {
            background:  gray;
            color: white;
            text-align: center;
            padding: 100px 40px;
        }

        .treatments-section h2 {
            color: white;
            font-size: 42px;
        }

        .treatments-section p {
            color: rgba(255,255,255,0.9);
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .skincare-section {
            padding: 100px 40px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .skincare-section h2 {
            font-size: 42px;
        }

        .skincare-section p {
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .cta-sections {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cta-box {
            padding: 80px 40px;
            text-align: center;
        }

        .cta-box:first-child {
            background:  gray;
        }

        .cta-box:last-child {
            background: darkgray;
        }

        .cta-box h3 {
            font-size: 24px;
            margin-bottom: 30px;
            font-weight: 300;
        }

        footer {
            background: #333;
            color: white;
            padding: 80px 40px 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
        }

        .footer-section h4 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            font-size: 14px;
            line-height: 1.8;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: white;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .laisa-logo {
                height: 75px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .section-split, .cta-sections, .footer-content {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .section h2 {
                font-size: 28px;
            }
            
        .image-placeholder {
            width:100%;
            height: 350px;
            background: url('WhatsApp\ Image\ 2025-12-08\ at\ 18.19.37_7a52a040.jpg');
            border-radius: 5px;
        }
            
        }
