/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1em 0;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

section {
    padding: 2em 1em;
    margin-bottom: 1.5em;
}

.hero {
    text-align: center;
    background-color: #00796b;
    color: white;
    padding: 3em 0;
}

.hero h1 {
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
}

.cta-btn {
    background-color: #ff5722;
    color: white;
    padding: 1em 2em;
    text-decoration: none;
    border-radius: 5px;
}

.cta-btn:hover {
    background-color: #e64a19;
}

h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 1em;
}

.service {
    margin-bottom: 1.5em;
}

.service h3 {
    font-size: 1.5em;
    color: #4CAF50;
}

form {
    display: grid;
    gap: 1em;
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea {
    width: 100%;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 1em 2em;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        padding: 0;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2em;
    }

    .service {
        text-align: center;
    }

    form {
        width: 90%;
    }
}
/* Styles from index.html */
    :root {
      --primary: #949A80;
      --accent: #f0b9a4;
      --bg: #fffaf7;
      --text: #24323f;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 0.75rem 1.75rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .btn-primary {
      background: var(--primary);
      color: #ffffff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
      background: #949A80;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: #949A80
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* Header / nav */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 250, 247, 0.98);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.75rem 0;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #ffe2d5, #f0b9a4 55%, #2f6f6f 100%);
    }

    .logo-text {
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.85rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.92rem;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.15rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.2s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Mobile nav button */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      padding: 4px 6px;
      background: #ffffff;
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      height: 2px;
      background: #333333;
      border-radius: 999px;
    }

    /* Hero section */
    /* .hero {
      padding: 2.5rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 2.5rem;
      align-items: center;
    }

    .hero-kicker {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.9rem;
    }

    .hero-kicker span {
      font-size: 0.8rem;
      color: #64748b;
    }

    .hero-title {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 0.75rem;
      letter-spacing: -0.03em;
    }

    .hero-title span {
      color: var(--primary);
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: #64748b;
      margin-bottom: 1.2rem;
      max-width: 28rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
      margin-bottom: 1.2rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      font-size: 0.8rem;
      color: #64748b;
    }

    .hero-meta strong {
      font-weight: 600;
      color: var(--text);
    }

    .hero-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      padding: 1.4rem 1.4rem 1.6rem;
      background: radial-gradient(circle at top left, #ffece2, #f7d2bf 40%, #2f6f6f 125%);
      color: #102a2a;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.75rem;
      background: rgba(255, 255, 255, 0.7);
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      margin-bottom: 0.6rem;
    }

    .hero-product {
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 0.25rem;
    }

    .hero-desc {
      font-size: 0.8rem;
      max-width: 14rem;
    }

    .hero-badge {
      position: absolute;
      right: 1.3rem;
      top: 1.4rem;
      background: #102a2a;
      color: #ffffff;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 600;
    }

    .hero-circle {
      position: absolute;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #ffffff, #ffe2d4 60%, rgba(255, 255, 255, 0));
      right: -10px;
      bottom: -40px;
      opacity: 0.9;
    }

    .hero-footnote {
      font-size: 0.75rem;
      margin-top: 1rem;
      color: #0f172a;
      opacity: 0.9;
    }
*/
    /* Generic sections */
   /* section {
      padding: 2.5rem 0;
    }

    h2.section-title {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }

    .section-intro {
      font-size: 0.95rem;
      color: #64748b;
      margin-bottom: 1.4rem;
      max-width: 32rem;
    }
*/
    /* Products */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.25rem;
    }

    .product-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 1rem;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .product-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #94a3b8;
    }

    .product-name {
      font-weight: 600;
      font-size: 1rem;
    }

    .product-tagline {
      font-size: 0.85rem;
      color: #64748b;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.25rem;
    }

    .chip {
      font-size: 0.75rem;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.04);
      color: #475569;
    }

    .product-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-top: 0.5rem;
      font-size: 0.8rem;
      color: #64748b;
    }

    .price {
      font-weight: 600;
      color: var(--primary);
      font-size: 0.95rem;
    }

    /* Routine */
    .routine-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 1.75rem;
      align-items: start;
    }

    .step-list {
      display: grid;
      gap: 0.75rem;
    }

    .step {
      background: #ffffff;
      border-radius: 14px;
      padding: 0.8rem 0.95rem;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      column-gap: 0.75rem;
      align-items: flex-start;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    }

    .step-number {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: rgba(47, 111, 111, 0.06);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .step-title {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.15rem;
    }

    .step-text {
      font-size: 0.8rem;
      color: #64748b;
    }

    .skin-types {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 0.75rem;
    }

    .skin-tag {
      font-size: 0.75rem;
      padding: 0.25rem 0.65rem;
      border-radius: 999px;
      border: 1px dashed rgba(148, 163, 184, 0.9);
      color: #64748b;
      background: rgba(255, 255, 255, 0.7);
    }

    .routine-card {
      border-radius: 20px;
      padding: 1.2rem 1.1rem;
      background: conic-gradient(from 210deg, #f9e1d5, #ffece2, #d3f1ea, #f9e1d5);
      position: relative;
      overflow: hidden;
      min-height: 220px;
    }

    .routine-card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.4rem;
    }

    .routine-card p {
      font-size: 0.8rem;
      max-width: 15rem;
      color: #0f172a;
    }

    .routine-pill {
      position: absolute;
      right: 1.1rem;
      bottom: 1.1rem;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      color: #ffffff;
      font-size: 0.75rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    /* Testimonials */
    .testimonial-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      gap: 1.75rem;
      align-items: center;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 1.1rem;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      column-gap: 0.9rem;
      align-items: start;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f97373, #facc15);
    }

    .testimonial-text {
      font-size: 0.85rem;
      color: #475569;
      margin-bottom: 0.4rem;
    }

    .testimonial-name {
      font-size: 0.85rem;
      font-weight: 600;
    }

    .testimonial-meta {
      font-size: 0.75rem;
      color: #94a3b8;
    }

    .stars {
      display: inline-flex;
      gap: 2px;
      font-size: 0.8rem;
      color: #f59e0b;
      margin-bottom: 0.25rem;
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 1.75rem;
      align-items: start;
    }

    .contact-card {
      background: #ffffff;
      padding: 1.1rem 1.2rem;
      border-radius: 16px;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    }

    .contact-card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.35rem;
    }

    .contact-card p {
      font-size: 0.85rem;
      color: #64748b;
      margin-bottom: 0.8rem;
    }

    .field {
      margin-bottom: 0.7rem;
    }

    .field label {
      display: block;
      font-size: 0.8rem;
      margin-bottom: 0.25rem;
      color: #475569;
    }

    .field input,
    .field textarea {
      width: 100%;
      padding: 0.55rem 0.6rem;
      border-radius: 10px;
      border: 1px solid #e2e8f0;
      font-size: 0.85rem;
      font-family: inherit;
      outline: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
      background: #f8fafc;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(47, 111, 111, 0.25);
      background: #ffffff;
    }

    .field textarea {
      min-height: 100px;
      resize: vertical;
    }

    .contact-meta {
      font-size: 0.85rem;
      color: #64748b;
    }

    .contact-meta strong {
      display: block;
      color: var(--text);
      margin-bottom: 0.15rem;
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding: 1.5rem 0 2rem;
      font-size: 0.8rem;
      color: #94a3b8;
    }

    footer .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }

    footer a {
      color: #64748b;
      margin-left: 0.75rem;
    }

    /* Responsive tweaks */
    @media (max-width: 900px) {
      .hero-grid,
      .routine-grid,
      .testimonial-wrap,
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        inset: 60px 1.25rem auto 1.25rem;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 1rem 0.9rem;
        display: none;
      }

      .nav-links.show {
        display: flex;
      }

      .nav-toggle {
        display: flex;
      }
    }

           /* Hero Section */
        .hero {
            height: 80vh;
            background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), 
                        url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&q=80&w=2070') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: black;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: black;
        }

        .btn {
            background: var(--primary);
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: 0.3s;
        }

        .btn:hover {
            background: var(--accent);
        }

        /* Services Section */
        .services {
            padding: 80px 10%;
            background: var(--secondary);
            text-align: center;
        }

        .section-title {
            margin-bottom: 50px;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* Contact Section */
        .contact {
            padding: 10px 10%;
        }

        .contact-container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
        }
        input, textarea {
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 10% 20px;
            text-align: center;
        }

        .social-links {
            margin-bottom: 20px;
        }

        .social-links a {
            color: white;
            font-size: 24px;
            margin: 0 15px;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            nav ul { display: none; }
            .hero-content h1 { font-size: 2rem; }
        }
 