* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw 18px 5vw;
  background: linear-gradient(90deg, #f7eaff 0%, #6018b5 100%);
  box-shadow: 0 6px 28px rgba(112, 32, 176, 0.13);
  border-radius: 0 0 24px 24px;
  position: relative;
  z-index: 2;
  min-height: 72px;
  transition: background 0.4s;
}

header .logo {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6018b5;
  background: #fff;
  padding: 4px 24px 6px 18px;
  border-radius: 15px 50px 35px 15px;
  box-shadow: 0 4px 16px rgba(96,24,181,0.07);
  transition: box-shadow 0.22s;
}

header nav {
  display: flex;
  gap: 26px;
}

header nav a,
header .contacts a {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.16s, color 0.14s;
  letter-spacing: 0.3px;
  background: rgba(96, 24, 181, 0.14);
}

header nav a:hover,
header .contacts a:hover {
  background: #fff;
  color: #6018b5;
}

header .contacts {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 24px;
}

header .contacts .btn-call {
  background: linear-gradient(90deg, #a975d7 0%, #6018b5 100%);
  color: #fff;
  padding: 9px 24px;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px rgba(96,24,181,0.12);
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.15s;
}
header .contacts .btn-call:hover {
  background: linear-gradient(90deg, #6018b5 0%, #a975d7 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(96,24,181,0.17);
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 4vw;
    min-height: 0;
  }
  header nav, header .contacts {
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
  }
  header .logo {
    font-size: 1.5rem;
    padding: 4px 14px 6px 10px;
    margin-bottom: 6px;
  }
  header .contacts {
    margin-left: 0;
    justify-content: flex-start;
  }
}


.contacts {
    align-items: center;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: #f7f7f7;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.model-card {
  text-align: center;
}

.model-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #001433;
  font-size: 0.9rem;
}



.intro {
  background-color: #f8f8f8;
  padding: 1rem 1rem;
}

.intro .container {
  max-width: 800px;
  margin: 0 auto;
}

.intro h1, h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.intro p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  text-align: justify;
}


.advantages-section {
  padding: 56px 0 48px 0;
  background: #f8f5fc;
}
.advantages-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.advantages-section h2 {
  font-size: 2.2rem;
  color: #6018b5;
  text-align: center;
  margin-bottom: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}
.advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px 32px;
}
.advantage-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(80, 15, 107, 0.07);
  padding: 32px 24px 28px 24px;
  text-align: center;
  transition: box-shadow 0.18s;
  border-top: 5px solid #a975d7;
}
.advantage-item:hover {
  box-shadow: 0 10px 34px rgba(80, 15, 107, 0.13);
  border-top: 5px solid #6018b5;
}
.advantage-item .icon {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
.advantage-item h3 {
  font-size: 1.18rem;
  color: #6018b5;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.advantage-item p {
  color: #3b2251;
  font-size: 1.06rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 800px) {
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 18px 0;
  }
  .advantages-section h2 {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
  .advantage-item {
    padding: 20px 12px 14px 12px;
  }
}


.contact-icons {
  background: #f7f7f7;
  padding: 3rem 0rem;
  text-align: center;
}

.contact-icons h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-icons p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.messenger-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.messenger {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  transition: transform 0.2s;
}

.messenger:hover {
  transform: translateY(-3px);
}

.messenger img {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.services-page {
  padding: 4rem 1rem;
  background: #fff;
}

.services-page .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.services-page .subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
}

.service-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}





.contact-page {
  background: #f7f6fa;
  padding: 48px 0 64px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.contact-page .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(34, 19, 46, 0.10);
  padding: 48px 32px 32px 32px;
}

.contact-page h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #321d44;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
}

.contact-page .subtitle {
  font-size: 1.25rem;
  color: #5c4072;
  margin-bottom: 36px;
  text-align: left;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
  margin-top: 16px;
  margin-bottom: 36px;
}

.contact-card {
  background: linear-gradient(135deg, #eee6fa 0%, #f9f6ff 100%);
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(60,30,90,0.07);
  padding: 30px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s;
  border: 1.5px solid #ece2fa;
  min-height: 170px;
}

.contact-card:hover {
  box-shadow: 0 8px 28px rgba(51,20,90,0.12);
  border-color: #a27cff;
}

.contact-card .icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #6b44c5;
  background: #ede4ff;
  border-radius: 50%;
  padding: 8px 13px;
  box-shadow: 0 2px 12px rgba(160, 120, 255, 0.08);
}

.contact-card h3 {
  font-size: 1.18rem;
  color: #321d44;
  margin-bottom: 7px;
  margin-top: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-card p {
  font-size: 1.06rem;
  color: #46315c;
  margin: 0;
  line-height: 1.5;
  word-break: break-word;
}

.contact-card a {
  color: #8e63f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  word-break: break-all;
}
.contact-card a:hover {
  color: #321d44;
  text-decoration: underline;
}

.contact-page .legal {
  font-size: 1rem;
  color: #9986c3;
  background: #f8f4ff;
  border-radius: 10px;
  padding: 12px 16px;
  text-align: left;
  margin-top: 18px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(120,100,180,0.07);
}

@media (max-width: 600px) {
  .contact-page .container {
    padding: 18px 4vw;
  }
  .contact-page h1 {
    font-size: 1.5rem;
    text-align: left;
  }
  .contact-page .subtitle {
    font-size: 1.07rem;
    text-align: left;
  }
}




.about-page {
  background: linear-gradient(120deg, #f8f5fc 0%, #f9f8fc 70%, #f6eaff 100%);
  padding: 64px 0 60px 0;
}
.about-page .container {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(96,24,181,0.08);
  padding: 44px 32px 38px 32px;
}

.about-page h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #6018b5;
  background: linear-gradient(90deg, #f8f5fc 30%, #a975d7 100%);
  padding: 12px 0 18px 0;
  border-radius: 14px;
  text-align: center;
  letter-spacing: 2px;
  box-shadow: 0 2px 16px rgba(112,32,176,0.06);
  margin-bottom: 28px;
}

.about-page .intro {
  font-size: 1.32rem;
  font-weight: 500;
  color: #4d2e77;
  margin-bottom: 18px;
  line-height: 1.7;
  text-align: center;
  background: #f6eaff;
  padding: 20px 22px 14px 22px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(96,24,181,0.05);
}

.about-page p {
  font-size: 1.12rem;
  color: #3b2251;
  margin-bottom: 20px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, sans-serif;
}

.about-page p.legal {
  color: #aa42f7;
  font-size: 1.02rem;
  font-style: italic;
  background: #f6eaff;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(96,24,181,0.03);
  display: flex;
  align-items: center;
  gap: 9px;
}

@media (max-width: 700px) {
  .about-page .container {
    padding: 18px 6vw 14px 6vw;
  }
  .about-page h1 {
    font-size: 1.5rem;
    padding: 8px 0 10px 0;
  }
  .about-page .intro {
    font-size: 1rem;
    padding: 14px 8px 8px 8px;
  }
  .about-page p {
    font-size: 0.99rem;
  }
  .about-page p.legal {
    font-size: 0.95rem;
    padding: 10px 8px;
  }
}


.pricing-page {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}

.pricing-page .container {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-page .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.price-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.price-card .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d43f3a;
  margin-bottom: 0.5rem;
}

.price-card .desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.site-footer {
  background-color: #010033;
  color: #ddd;
  font-size: 0.9rem;
  padding: 3rem 1rem;
  text-align: center;
  line-height: 1.7;
}

.site-footer a {
  color: #ccc;
  text-decoration: underline;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .container {
  max-width: 1000px;
  margin: 0 auto;
}

.site-footer strong {
  color: #fff;
}

.site-footer .confidential {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}


.faq-section {
  padding: 60px 0;
  background: #faf8fd;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #462066;
  letter-spacing: 1px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(46, 8, 78, 0.06);
  margin-bottom: 28px;
  padding: 32px 28px 24px 28px;
  transition: box-shadow 0.2s;
  border-left: 5px solid #a975d7;
  position: relative;
}

.faq-item h3 {
  font-size: 1.35rem;
  color: #7e44c0;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.faq-item p {
  color: #352046;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

.faq-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .faq-section {
    padding: 32px 0;
  }
  .faq-list {
    padding: 0 10px;
  }
  .faq-item {
    padding: 18px 12px 12px 16px;
  }
  .faq-section h2 {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
}
