/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f3f4f6;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1e3a8a;
  color: white;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #3b82f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 400px;
  width: 350px;
  display: none;
  transform: translateY(100px);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.cookie-popup.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-link {
  color: #06b6d4;
  text-decoration: underline;
  font-size: 12px;
}

.btn-accept {
  background: #06b6d4;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
}

.btn-accept:hover {
  background: #0891b2;
}

/* Responsive design for cookie popup */
@media (max-width: 480px) {
  .cookie-popup {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 40px);
    max-width: none;
  }
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar {
  padding: 1rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo a {
  text-decoration: none;
  color: inherit;
}

.nav-logo a:hover {
  color: #facc15;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.nav-logo h1 {
  margin: 0;
  color: #1e3a8a;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #06b6d4;
  position: relative;
}

/* .nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #06b6d4;
  border-radius: 1px;
} */

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1e3a8a;
  margin: 3px 0;
  transition: 0.3s;
}

/* Service Features */
.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

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

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

/* Section Intro */
.section-intro {
  text-align: center;
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Insight Features */
.insight-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature-tag {
  background: #007bff;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Success Stories styles */
.stat-description {
  color: #f8f9fa;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
}

.success-highlights {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.highlight-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.highlight-content h4 {
  color: #2c3e50;
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
}

.highlight-content p {
  color: #666;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .success-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-description {
    font-size: 11px;
  }

  .highlight-item {
    padding: 15px;
    gap: 12px;
  }

  .highlight-icon {
    font-size: 20px;
  }

  .highlight-content h4 {
    font-size: 14px;
  }

  .highlight-content p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .success-stats {
    grid-template-columns: 1fr;
  }
}
/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
}

.benefits .section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #3498db;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}

.benefit-stat {
  color: #e74c3c;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #fff5f5, #ffe6e6);
  border-radius: 25px;
  display: inline-block;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.benefit-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.benefit-features li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.benefit-features li:before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.benefits-guarantee {
  margin-bottom: 40px;
}

.guarantee-box {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.guarantee-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.guarantee-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
}

.guarantee-content p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.benefits-testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-testimonial blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #2c3e50;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.benefits-testimonial cite {
  color: #666;
  font-weight: 600;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .benefits h2 {
    font-size: 2rem;
  }
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.pricing .section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.toggle-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
}

.save-badge {
  background: #10b981;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-left: 8px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #3b82f6;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid #3b82f6;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.card-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 8px;
  text-align: center;
}

.package-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 30px;
}

.price-section {
  text-align: center;
  margin-bottom: 30px;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.price-main .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
}

.price-main .amount {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
}

.price-main .period {
  font-size: 1rem;
  color: #64748b;
}

.price-save {
  background: #10b981;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features-list li {
  padding: 10px 0;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid #f1f5f9;
}

.features-list li:last-child {
  border-bottom: none;
}

.btn-pricing {
  width: 100%;
  padding: 15px 30px;
  background: #1e3a8a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-pricing:hover {
  background: #1e40af;
}

.btn-featured {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.btn-featured:hover {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
}

.pricing-guarantee {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.guarantee-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-size: 1.3rem;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.guarantee-text p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.pricing-testimonial {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 15px;
  line-height: 1.6;
}

.pricing-testimonial cite {
  color: #64748b;
  font-weight: 600;
}

.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 120px 0 80px;

  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
}

.badge-discount {
  background: #ef4444;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-offer {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-highlight h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fbbf24;
}

.offer-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.offer-benefits li {
  padding: 8px 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.price-box {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 2px solid #fbbf24;
}

.price-old {
  font-size: 1rem;
  text-decoration: line-through;
  opacity: 0.7;
  margin-bottom: 5px;
}

.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #fbbf24;
}

.period {
  font-size: 1rem;
  opacity: 0.8;
}

.price-save {
  background: #10b981;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  border-left: 4px solid #10b981;
}

.guarantee-icon {
  font-size: 1.5rem;
}

.guarantee-text {
  font-weight: 600;
}

.hero-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  border-left: 4px solid #ef4444;
}

.urgency-text {
  font-weight: 600;
}

.countdown {
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fbbf24;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-thank-you {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #facc15;
  color: #1e3a8a;
}
.btn-thank-you {
  background: #1e3a8a;
  color: #facc15;
}
.btn-primary:hover {
  background: #eab308;
  transform: translateY(-2px);
}
.btn-thank-you:hover {
  background: #2345a2;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #1e3a8a;
}

.hero-image img,
.hero-image svg {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 3rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  padding: 2rem;
  background: #f3f4f6;
  border-radius: 10px;
  border-left: 4px solid #06b6d4;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f3f4f6;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card.featured {
  border: 3px solid #facc15;
  transform: scale(1.05);
}

.service-card h3 {
  color: #1e3a8a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: left;
}

.service-price {
  margin-bottom: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 10px;
  color: white;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 5px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.price-period {
  font-size: 0.9rem;
  opacity: 0.9;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #06b6d4;
  margin-bottom: 1.5rem;
}

.service-cta {
  margin-top: 25px;
}

.service-cta .btn {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.service-guarantee {
  color: #27ae60;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.btn-service {
  background: #1e3a8a;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-service:hover {
  background: #1e40af;
}

@media (max-width: 768px) {
  .service-card {
    padding: 20px;
  }

  .price-amount {
    font-size: 1.5rem;
  }
}

/* Team Section */
.team {
  padding: 80px 0;
  background: white;
}

.team h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  margin: 0 auto;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

/* New sections styles */
.insights {
  padding: 80px 0;
  background: #f8f9fa;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.insight-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
}

.insight-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.insight-content {
  padding: 25px;
}

.insight-content h3 {
  color: #1e3a8a;
  margin-bottom: 15px;
}

.resources {
  padding: 80px 0;
  background: white;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.resource-block {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: background 0.3s ease;
}

.resource-block:hover {
  background: #e9ecef;
}

.resource-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.resource-block h3 {
  color: #1e3a8a;
  margin-bottom: 15px;
}

.success-stories {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
  color: white;
}

.success-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.success-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #facc15;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.success-text h3 {
  color: #facc15;
  margin-bottom: 20px;
  font-size: 2rem;
}

.success-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Service pages styling */
.page-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
  color: white;
  border-radius: 15px;
}

.page-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-header h1 {
  color: white;
  margin-bottom: 10px;
}

.last-updated {
  opacity: 0.8;
  font-style: italic;
}

.content-blocks {
  display: grid;
  gap: 30px;
}

.info-block {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.info-block:hover {
  transform: translateY(-5px);
}

.block-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.block-icon {
  width: 50px;
  height: 50px;
}

.block-header h2 {
  color: #1e3a8a;
  margin: 0;
  font-size: 1.5rem;
}

.block-content {
  padding: 30px;
}

.sub-block {
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #1e3a8a;
}

.sub-block:last-child {
  margin-bottom: 0;
}

.sub-block h3 {
  color: #1e3a8a;
  margin-bottom: 15px;
}

.member-photo {
  margin-bottom: 1.5rem;
}

.team-member h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: #06b6d4;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #f3f4f6;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author strong {
  color: #1e3a8a;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  color: #06b6d4;
  font-size: 0.9rem;
}

/* Urgency Section */
.urgency {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  text-align: center;
}

.urgency-content {
  max-width: 1000px;
  margin: 0 auto;
}

.urgency-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.urgency-subtitle {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.9;
  line-height: 1.6;
}

.urgency-timer {
  margin-bottom: 50px;
}

.urgency-timer h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #e74c3c;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  min-width: 100px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #e74c3c;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 5px;
}

.urgency-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.urgency-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.urgency-benefits {
  margin-bottom: 50px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.urgency-benefits h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #e74c3c;
}

.urgency-list {
  list-style: none;
  padding: 0;
}

.urgency-list li {
  padding: 10px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.urgency-action {
  margin-bottom: 50px;
}

.urgency-action h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #27ae60;
}

.urgency-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.urgency-offer {
  background: rgba(39, 174, 96, 0.2);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.offer-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.offer-text {
  font-size: 1rem;
  line-height: 1.4;
}

.urgency-cta {
  margin-top: 40px;
}

.btn-urgency {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  font-size: 1.3rem;
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.btn-urgency:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
  }
  50% {
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.8);
  }
  100% {
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
  }
}

.urgency-guarantee {
  margin-top: 20px;
  font-size: 1rem;
  color: #27ae60;
  font-weight: 600;
}

.urgency-testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 700px;
  margin: 0 auto;
}

.urgency-testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.urgency-testimonial cite {
  opacity: 0.8;
  font-weight: 600;
}

@media (max-width: 768px) {
  .urgency-header h2 {
    font-size: 2rem;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 15px;
  }

  .countdown-item {
    min-width: 80px;
    padding: 15px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .urgency-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .urgency-offers {
    grid-template-columns: 1fr;
  }
  .success-content {
    grid-template-columns: 1fr;
  }
  .urgency-offer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .btn-urgency {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
}

/* Insights Section */
.insights h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
}

/* Resources Section */
.resources h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
}

/* Success Stories Section */
.success-stories h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

/* Contact Section */
.contact {
  padding: 80px 0;

  color: white;
}

.contact h2 {
  color: #111827;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.contact-item p {
  line-height: 1.6;
  color: #111827;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #06b6d4;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

.btn-submit {
  background: #1e3a8a;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #1e40af;
}

.btn-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#map {
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  background: #1e3a8a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #facc15;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #06b6d4;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .service-card.featured {
    transform: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #06b6d4;
  outline-offset: 2px;
}

/* Remove outline for navigation links */
.nav-menu a:focus {
  outline: none;
}
