* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF6B9D;
  --secondary: #FFA07A;
  --dark: #2C3E50;
  --light: #F8F9FA;
  --accent: #FFD93D;
  --text: #333;
  --white: #FFFFFF;
  --border: #E0E0E0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.wide-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: 0.3s;
}

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF9E6 100%);
}

.hero-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--dark);
  font-weight: 800;
}

.hero-subtitle {
  font-size: 22px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--light);
}

.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 700;
  text-align: center;
}

.section-intro {
  font-size: 20px;
  color: #666;
  margin-bottom: 50px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.story-block {
  max-width: 680px;
  margin: 0 auto 50px;
}

.story-block h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 600;
}

.story-block p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
}

.story-block img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.inline-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin: 20px 0;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.inline-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  flex: 1;
  min-width: 280px;
  background: var(--white);
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.benefit-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 600;
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.testimonial {
  background: var(--white);
  padding: 40px;
  border-left: 5px solid var(--accent);
  margin: 40px auto;
  max-width: 680px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text);
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
  font-size: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  max-width: 1100px;
  margin: 50px auto;
}

.service-card {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 700;
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #666;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0;
  display: block;
}

.service-features {
  list-style: none;
  margin: 20px 0;
}

.service-features li {
  padding: 8px 0;
  font-size: 15px;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.form-section {
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  padding: 80px 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--dark);
  text-align: center;
  font-weight: 700;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
}

.cta-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--dark);
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  z-index: 99;
  transition: all 0.3s;
  font-size: 16px;
}

.cta-sticky:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.urgency-block {
  background: var(--accent);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin: 50px auto;
  max-width: 680px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.urgency-block p {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #CCC;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 30px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 25px;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
  z-index: 1000;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 15px;
  color: var(--text);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 15px;
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-reject {
  background: var(--border);
  color: var(--text);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.highlight-box {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF9E6 100%);
  padding: 40px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 680px;
  border-left: 5px solid var(--primary);
}

.highlight-box h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 700;
}

.highlight-box p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.image-full {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.split-content {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 50px auto;
  flex-wrap: wrap;
}

.split-text {
  flex: 1;
  min-width: 300px;
}

.split-image {
  flex: 1;
  min-width: 300px;
}

.split-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thanks-container {
  max-width: 700px;
  margin: 100px auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--light);
  border-radius: 15px;
}

.thanks-container h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 800;
}

.thanks-container p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text);
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
}

.contact-info {
  max-width: 700px;
  margin: 50px auto;
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h3 {
  font-size: 26px;
  margin-bottom: 30px;
  color: var(--dark);
  font-weight: 700;
}

.contact-item {
  margin-bottom: 25px;
  font-size: 17px;
  line-height: 1.8;
}

.contact-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.policy-content {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.policy-content h1 {
  font-size: 38px;
  margin-bottom: 30px;
  color: var(--dark);
  font-weight: 800;
}

.policy-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 700;
}

.policy-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
}

.policy-content ul {
  margin: 20px 0 20px 30px;
}

.policy-content li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--text);
}

@media (max-width: 768px) {
  .header-content nav {
    display: none;
  }

  .header-content nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .header-content nav.active ul {
    flex-direction: column;
    gap: 15px;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 30px;
  }

  .story-block h3 {
    font-size: 24px;
  }

  .form-container {
    padding: 30px 20px;
  }

  .cta-sticky {
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    padding: 12px 20px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .split-content {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}
