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

:root {
  --primary: #1a4d8f;
  --secondary: #ff6b35;
  --dark: #1a1a2e;
  --light: #f7f9fc;
  --accent: #ffd23f;
  --text: #2d3748;
  --border: #e2e8f0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: var(--dark);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
}

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

nav a {
  color: white;
  transition: color 0.3s;
  font-weight: 500;
}

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

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2a5a9e 100%);
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,128C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  opacity: 0.3;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.cta-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid white;
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: white;
  color: var(--primary);
}

.section {
  padding: 80px 20px;
}

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

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

.story-block {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
}

.story-block h3 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--primary);
}

.story-block p {
  margin-bottom: 20px;
}

.story-block strong {
  color: var(--secondary);
  font-weight: 600;
}

.inline-image {
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  flex: 1;
  min-width: 280px;
  background: white;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--primary);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary);
  margin: 20px 0;
}

.service-card .price-note {
  font-size: 0.9rem;
  color: #666;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: 5px solid var(--accent);
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.testimonial .author {
  font-weight: bold;
  color: var(--primary);
}

.highlight-box {
  background: linear-gradient(135deg, var(--secondary), #ff8c5a);
  color: white;
  padding: 50px 40px;
  border-radius: 12px;
  margin: 50px 0;
  text-align: center;
}

.highlight-box h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.benefit-item {
  flex: 1;
  min-width: 250px;
  padding: 25px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.benefit-item h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  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-button {
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-button:hover {
  background: #143d73;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(255,107,53,0.4);
  z-index: 999;
  transition: all 0.3s;
}

.sticky-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 7px 25px rgba(255,107,53,0.5);
}

footer {
  background: var(--dark);
  color: white;
  padding: 50px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: var(--accent);
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  display: none;
}

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.cookie-buttons button {
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

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

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.thanks-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
}

.thanks-box {
  max-width: 600px;
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-box h1 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.contact-info {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-item {
  margin: 25px 0;
  padding: 20px;
  border-left: 4px solid var(--primary);
  background: var(--light);
}

.contact-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
}

.policy-content h1 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.policy-content h2 {
  color: var(--dark);
  margin: 35px 0 20px;
  font-size: 1.8rem;
}

.policy-content p {
  margin-bottom: 20px;
}

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

.policy-content li {
  margin-bottom: 10px;
}

.urgency-banner {
  background: var(--accent);
  color: var(--dark);
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.split-section {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 60px 0;
  flex-wrap: wrap;
}

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

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

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
    gap: 15px;
  }

  nav ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    flex-direction: column;
  }

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

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

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