   :root {
      --main-pink: #ffe3ed;
      --accent-pink: #ffb6d5;
      --netnest-bg: linear-gradient(135deg, #ffe3ed 0%, #ffb6d5 100%);
      --text-dark: #3d2c3c;
      --white: #fff;
      --shadow: 0 4px 24px rgba(255,182,213,0.15);
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Montserrat', Arial, sans-serif;
      background: var(--netnest-bg);
      color: var(--text-dark);
      min-height: 100vh;
      margin: 0;
      padding-bottom: 60px;
    }
    /* Navbar */
    .navbar {
      background: var(--white);
      box-shadow: var(--shadow);
      border-radius: 0 0 30px 30px;
    }
    .navbar-brand {
      font-weight: 700;
      color: var(--accent-pink) !important;
      font-size: 1.5rem;
      letter-spacing: 2px;
    }
    .nav-link {
      color: var(--text-dark) !important;
      font-weight: 600;
      margin-left: 1rem;
      margin-right: 1rem;
      border-radius: 20px;
      transition: background 0.2s, color 0.2s;
      padding: 0.5rem 1.2rem !important;
    }
    .nav-link.active, .nav-link:hover {
      background: var(--accent-pink);
      color: var(--white) !important;
    }
    /* Section */
    section {
      background: var(--white);
      border-radius: 30px;
      box-shadow: var(--shadow);
      padding: 3rem 2rem;
      margin: 3rem auto;
      max-width: 1100px;
    }
    h2 {
      color: var(--accent-pink);
      font-weight: 700;
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
      text-align: center;
      letter-spacing: 1px;
    }
    /* Portfolio */
    .portfolio-grid img {
      border-radius: 18px;
      box-shadow: 0 4px 18px rgba(255,182,213,0.13);
      width: 100%;
      object-fit: cover;
      aspect-ratio: 1/1.2;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .portfolio-grid img:hover {
      transform: scale(1.04) rotate(-1deg);
      box-shadow: 0 8px 30px rgba(255,182,213,0.25);
    }
    /* About */
    .about-img {
      border-radius: 25px;
      box-shadow: 0 4px 20px rgba(255,182,213,0.18);
      width: 100%;
      max-width: 320px;
      object-fit: cover;
    }
    /* Services (маникюр) */
    .nail-services {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-top: 2rem;
    }
    .nail-service-card {
      background: linear-gradient(135deg, #fff6fa 60%, #ffe3ed 100%);
      border-radius: 28px;
      box-shadow:
        0 4px 24px rgba(255,182,213,0.15),
        0 1.5px 6px rgba(255,182,213,0.10);
      padding: 2.2rem 1.3rem 2rem 1.3rem;
      min-width: 210px;
      max-width: 270px;
      flex: 1 1 210px;
      text-align: center;
      transition: box-shadow 0.22s, transform 0.18s;
      position: relative;
      margin-bottom: 1.5rem;
    }
    .nail-service-card:hover {
      box-shadow:
        0 8px 36px rgba(255,182,213,0.22),
        0 0 0 4px #ffd6e8;
      transform: translateY(-4px) scale(1.035);
    }
    .nail-service-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1.1rem auto;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(145deg, #fff0f8 60%, #ffe3ed 100%);
      box-shadow:
        4px 4px 12px #ffe3ed,
        -4px -4px 12px #fff;
      font-size: 2.1rem;
      color: #ff6fa5;
    }
    .nail-service-title {
      font-weight: 700;
      font-size: 1.13rem;
      margin-bottom: 0.6rem;
      color: #c94e8a;
    }
    .nail-service-desc {
      font-size: 1rem;
      color: #a07a8c;
      opacity: 0.93;
    }
    /* Contacts */
    .contacts-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--accent-pink);
      color: #fff;
      font-size: 1.6rem;
      margin-right: 0.8rem;
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
    }
    .contacts-social a:hover {
      background: var(--text-dark);
      color: var(--accent-pink);
      transform: scale(1.13);
    }
    .contact-form input,
    .contact-form textarea {
      border-radius: 12px;
      border: 1px solid #ffd6e8;
      padding: 0.7rem 1rem;
      font-size: 1rem;
      width: 100%;
      margin-bottom: 1rem;
      background: #fff;
      transition: border-color 0.3s;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--accent-pink);
      outline: none;
      box-shadow: 0 0 8px rgba(255,182,213,0.25);
    }
    .contact-form button {
      background: var(--accent-pink);
      border: none;
      padding: 0.7rem 2.2rem;
      border-radius: 50px;
      color: #fff;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      transition: box-shadow 0.3s;
      width: 100%;
    }
    .contact-form button:hover {
      box-shadow: 0 6px 18px rgba(255,182,213,0.25);
      background: var(--text-dark);
      color: var(--accent-pink);
    }
    /* Footer */
    footer {
      text-align: center;
      color: var(--text-dark);
      margin: 3rem 0 1rem 0;
      font-size: 1rem;
      opacity: 0.8;
    }
    /* Media Queries */
    @media (max-width: 991px) {
      section {
        padding: 2.2rem 0.8rem;
        margin: 2rem 0.5rem;
      }
    }
    @media (max-width: 900px) {
      .nail-services { gap: 1.2rem; }
      .nail-service-card { padding: 1.5rem 0.8rem; min-width: 150px; }
    }
    @media (max-width: 600px) {
      .navbar-brand {
        font-size: 1.1rem;
      }
      h2 {
        font-size: 1.4rem;
      }
      section {
        padding: 1.1rem 0.3rem;
        margin: 1.2rem 0.1rem;
        border-radius: 16px;
      }
      .about-img {
        max-width: 90vw;
        border-radius: 16px;
      }
      .nail-services { flex-direction: column; gap: 1rem; }
      .nail-service-card { max-width: 100%; }
    }