/* ===================================
   DAVCNAKALKULATOR - ELEGANT CLASSIC STYLE
   Comprehensive CSS Styles
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #f8f6f3;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a4a6f;
  margin-bottom: 20px;
}

h1 { font-size: 42px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  color: #4a5568;
}

a {
  color: #2C5F8D;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #1a4a6f;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #4a5568;
}

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

/* HEADER */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 2px solid #e8e4df;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #2c3e50;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #1a4a6f;
  border-bottom-color: #F7B32B;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #1a4a6f;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2C5F8D;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #1a4a6f;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #F7B32B;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #2c3e50;
  padding: 16px 0;
  border-bottom: 1px solid #e8e4df;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #1a4a6f;
  padding-left: 10px;
  background-color: #f8f6f3;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #1a4a6f;
  color: #ffffff;
  border-color: #1a4a6f;
}

.btn-primary:hover {
  background-color: #2C5F8D;
  border-color: #2C5F8D;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 74, 111, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #1a4a6f;
  border-color: #1a4a6f;
}

.btn-secondary:hover {
  background-color: #1a4a6f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 74, 111, 0.25);
}

.btn:active {
  transform: translateY(0);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f8f6f3 0%, #e8e4df 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 3px solid #e8e4df;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #1a4a6f;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #4a5568;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

/* HERO INTERNAL */
.hero-internal {
  background: linear-gradient(135deg, #f8f6f3 0%, #e8e4df 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 3px solid #e8e4df;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #718096;
}

.breadcrumb a {
  color: #2C5F8D;
}

.hero-internal h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #718096;
  margin-bottom: 40px;
}

/* PROBLEM-SOLUTION */
.problem-solution {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 40px;
}

.content-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.problem, .solution {
  flex: 1;
  min-width: 280px;
  padding: 30px;
  background-color: #f8f6f3;
  border-radius: 4px;
  border: 2px solid #e8e4df;
}

.solution ul {
  margin-top: 20px;
  list-style: none;
  margin-left: 0;
}

.solution li::before {
  content: '✓ ';
  color: #F7B32B;
  font-weight: bold;
  margin-right: 8px;
}

/* CALCULATOR GRID */
.calculator-grid, .calculator-grid-full {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.calculator-card, .calculator-card-full {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  border: 2px solid #e8e4df;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

.calculator-card:hover, .calculator-card-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #F7B32B;
}

.calculator-card h3, .calculator-card-full h3 {
  font-size: 22px;
  margin-bottom: 12px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculator-card p, .calculator-card-full p {
  font-size: 15px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.calculator-card .price, .calculator-card-full .price {
  font-size: 32px;
  font-weight: 600;
  color: #1a4a6f;
  margin: 20px 0;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #F7B32B;
  color: #1a4a6f;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}

.popular {
  border-color: #F7B32B;
  box-shadow: 0 4px 16px rgba(247, 179, 43, 0.15);
}

.premium {
  border-color: #2C5F8D;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
}

/* FEATURES */
.features {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-card {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.features-list {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.features-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e8e4df;
}

.features-list li::before {
  content: '✓ ';
  color: #F7B32B;
  font-weight: bold;
  margin-right: 8px;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 60px 20px;
  background-color: #f8f6f3;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 40px auto;
}

.step {
  flex: 1;
  min-width: 260px;
  max-width: 300px;
  text-align: center;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
  position: relative;
}

.step-number {
  font-size: 48px;
  font-weight: 600;
  color: #e8e4df;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* TRUST INDICATORS */
.trust-indicators {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 40px auto;
}

.stat {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 30px 20px;
  background-color: #f8f6f3;
  border-radius: 4px;
  border: 2px solid #e8e4df;
}

.stat-number {
  font-size: 42px;
  font-weight: 600;
  color: #1a4a6f;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  color: #4a5568;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  background-color: #f8f6f3;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 40px auto;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  border-left: 4px solid #F7B32B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #1a4a6f;
  font-size: 16px;
}

.testimonial-author span {
  color: #718096;
  font-size: 14px;
}

/* CTA SECTIONS */
.cta-final, .cta-services, .cta-pricing {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a4a6f 0%, #2C5F8D 100%);
  text-align: center;
  margin-bottom: 0;
  color: #ffffff;
}

.cta-final h2, .cta-services h2, .cta-pricing h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 16px;
}

.cta-final p, .cta-services p, .cta-pricing p {
  color: #e8e4df;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-final .btn-primary, .cta-services .btn-primary, .cta-pricing .btn-primary {
  background-color: #F7B32B;
  border-color: #F7B32B;
  color: #1a4a6f;
}

.cta-final .btn-primary:hover, .cta-services .btn-primary:hover, .cta-pricing .btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}

.cta-final .btn-secondary, .cta-services .btn-secondary, .cta-pricing .btn-secondary {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.cta-final .btn-secondary:hover, .cta-services .btn-secondary:hover, .cta-pricing .btn-secondary:hover {
  background-color: #ffffff;
  color: #1a4a6f;
}

.trust-elements, .trust-line {
  font-size: 14px;
  color: #e8e4df;
  margin-top: 24px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.service-detail {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-detail img {
  width: 60px;
  height: 60px;
  align-self: flex-start;
}

.service-detail h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.service-price {
  font-size: 32px;
  font-weight: 600;
  color: #1a4a6f;
  margin: 16px 0;
}

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

.service-detail li {
  padding: 8px 0;
  border-bottom: 1px solid #e8e4df;
}

.service-detail li::before {
  content: '✓ ';
  color: #F7B32B;
  font-weight: bold;
  margin-right: 8px;
}

.time-required, .subscription-note, .guarantee {
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

/* BUNDLES */
.bundles, .pricing-bundles {
  padding: 60px 20px;
  background-color: #f8f6f3;
  margin-bottom: 60px;
}

.bundle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.bundle-card {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  border: 2px solid #e8e4df;
  text-align: center;
  position: relative;
}

.bundle-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.original-price {
  text-decoration: line-through;
  color: #718096;
  font-size: 18px;
}

.bundle-price {
  font-size: 36px;
  font-weight: 600;
  color: #1a4a6f;
  margin: 16px 0;
}

.savings {
  color: #F7B32B;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

/* PRICING */
.pricing-single, .pricing-subscription, .pricing-premium {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  flex: 1;
  min-width: 260px;
  max-width: 300px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  border: 2px solid #e8e4df;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 600;
  color: #1a4a6f;
  margin: 8px 0;
}

.period {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
}

.pricing-card ul {
  text-align: left;
  list-style: none;
  margin: 20px 0;
  flex-grow: 1;
}

.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid #e8e4df;
}

.pricing-card li::before {
  content: '✓ ';
  color: #F7B32B;
  font-weight: bold;
  margin-right: 8px;
}

.trial {
  background-color: #F7B32B;
  color: #1a4a6f;
  padding: 8px 12px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
}

.premium-card {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
  border: 2px solid #2C5F8D;
  border-radius: 4px;
  text-align: center;
}

.availability {
  color: #2C5F8D;
  font-weight: 600;
  margin-top: 16px;
}

/* ABOUT PAGE */
.story, .mission-vision, .team, .numbers, .technology, .commitment {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.story {
  background-color: #ffffff;
}

.mission-vision {
  background-color: #f8f6f3;
}

.mission, .vision, .values {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  border-left: 4px solid #F7B32B;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.value {
  flex: 1;
  min-width: 220px;
  padding: 20px;
  background-color: #f8f6f3;
  border-radius: 4px;
  border: 1px solid #e8e4df;
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 30px auto;
}

.milestone {
  padding: 16px 20px;
  background-color: #f8f6f3;
  border-left: 4px solid #F7B32B;
  border-radius: 3px;
}

.milestone strong {
  color: #1a4a6f;
  font-size: 18px;
  margin-right: 12px;
}

/* TEAM */
.team-grid, .team-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.team-member, .team-contact {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
  text-align: center;
}

.team-member h3, .team-contact h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.role {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* CONTACT PAGE */
.contact-methods {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.method {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
  text-align: center;
}

.method img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

.method h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* CONTACT FORM */
.contact-form-section {
  padding: 60px 20px;
  background-color: #f8f6f3;
  margin-bottom: 60px;
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 15px;
}

.field-placeholder {
  padding: 12px 16px;
  border: 2px solid #e8e4df;
  border-radius: 4px;
  background-color: #f8f6f3;
  color: #718096;
  font-style: italic;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.form-button {
  margin-top: 8px;
}

.form-note {
  font-size: 13px;
  color: #718096;
  margin-top: 16px;
  text-align: center;
}

/* SUPPORT CATEGORIES */
.support-categories {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-card {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
}

.response-time {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

/* OFFICE INFO */
.office-info {
  padding: 60px 20px;
  background-color: #f8f6f3;
  margin-bottom: 60px;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 800px;
  margin: 40px auto;
}

.office-address, .office-hours {
  flex: 1;
  min-width: 260px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
}

.office-note {
  text-align: center;
  color: #718096;
  font-style: italic;
  margin-top: 20px;
}

/* FAQ */
.faq-contact, .pricing-faq {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  background-color: #ffffff;
  border-radius: 4px;
  border-left: 4px solid #F7B32B;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a4a6f;
}

.faq-item p {
  color: #4a5568;
  line-height: 1.6;
}

/* LEGAL PAGES */
.hero-legal {
  background: linear-gradient(135deg, #f8f6f3 0%, #e8e4df 100%);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  border-bottom: 3px solid #e8e4df;
}

.legal-content {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  border: 2px solid #e8e4df;
}

.content-wrapper h2 {
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a4a6f;
}

.content-wrapper h3 {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper ul, .content-wrapper ol {
  margin-bottom: 20px;
}

/* THANK YOU PAGE */
.thank-you {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
}

.icon-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background-color: #F7B32B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-checkmark img {
  width: 50px;
  height: 50px;
}

.main-message {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 40px;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
  text-align: left;
}

.next-steps .step {
  padding: 16px 20px;
  background-color: #f8f6f3;
  border-left: 4px solid #F7B32B;
  border-radius: 3px;
}

.action-list {
  list-style: none;
  margin: 20px 0 40px;
  text-align: left;
}

.action-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e8e4df;
}

.action-list li::before {
  content: '→ ';
  color: #2C5F8D;
  font-weight: bold;
  margin-right: 8px;
}

/* BENEFITS & SUPPORT */
.benefits, .support-section, .trust-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.benefits {
  background-color: #f8f6f3;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.benefit {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.support-options {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}

.support-option {
  flex: 1;
  min-width: 260px;
  max-width: 400px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
  text-align: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.badge-item {
  padding: 12px 24px;
  background-color: #f8f6f3;
  border: 2px solid #e8e4df;
  border-radius: 4px;
  font-weight: 600;
  color: #1a4a6f;
  font-size: 14px;
}

/* GUARANTEE SECTIONS */
.guarantee, .money-back, .payment-security {
  padding: 60px 20px;
  background-color: #f8f6f3;
  text-align: center;
  margin-bottom: 60px;
}

.guarantee-period {
  font-size: 20px;
  font-weight: 600;
  color: #1a4a6f;
  margin-top: 20px;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.security-badges span {
  padding: 12px 24px;
  background-color: #ffffff;
  border: 2px solid #2C5F8D;
  border-radius: 4px;
  font-weight: 600;
  color: #2C5F8D;
  font-size: 14px;
}

/* SERVICE CATEGORIES */
.services-overview {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}

.service-categories span {
  padding: 10px 20px;
  background-color: #f8f6f3;
  border: 2px solid #e8e4df;
  border-radius: 20px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

/* TECH FEATURES */
.tech-features {
  list-style: none;
  max-width: 600px;
  margin: 30px auto;
}

.tech-features li {
  padding: 12px 0;
  border-bottom: 1px solid #e8e4df;
}

.tech-features li::before {
  content: '✓ ';
  color: #F7B32B;
  font-weight: bold;
  margin-right: 8px;
}

/* COMMITMENT GRID */
.commitment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.commitment-item {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #e8e4df;
  text-align: center;
}

.commitment-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a4a6f;
}

/* CONTACT ABOUT */
.contact-about {
  padding: 60px 20px;
  background-color: #f8f6f3;
  text-align: center;
  margin-bottom: 60px;
}

.contact-info {
  margin-top: 30px;
  color: #4a5568;
}

.contact-info p {
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  background-color: #1a4a6f;
  color: #e8e4df;
  padding: 60px 20px 30px;
  margin-top: 0;
}

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

.footer-brand {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
}

.footer-brand img {
  height: 45px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #cbd5e0;
  font-size: 14px;
}

.footer-nav, .footer-contact, .footer-legal {
  flex: 1;
  min-width: 180px;
}

.footer-nav h4, .footer-contact h4, .footer-legal h4 {
  color: #F7B32B;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-nav a, .footer-contact a, .footer-legal a {
  display: block;
  color: #cbd5e0;
  font-size: 14px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover, .footer-contact a:hover, .footer-legal a:hover {
  color: #F7B32B;
  padding-left: 4px;
}

.footer-contact p {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 228, 223, 0.2);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #cbd5e0;
  font-size: 13px;
  margin-bottom: 8px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #98a7b2;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-consent-banner.show {
  display: block;
  transform: translateY(0);
}

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

.cookie-consent-text {
  flex: 1;
  min-width: 260px;
  color: #e8e4df;
  font-size: 14px;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #F7B32B;
  color: #1a4a6f;
  border-color: #F7B32B;
}

.cookie-btn-accept:hover {
  background-color: #ffffff;
  color: #1a4a6f;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-btn-reject:hover {
  background-color: #ffffff;
  color: #1a4a6f;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #e8e4df;
  border-color: #e8e4df;
}

.cookie-btn-settings:hover {
  background-color: #e8e4df;
  color: #1a4a6f;
}

/* COOKIE SETTINGS MODAL */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-settings-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  color: #1a4a6f;
  font-size: 28px;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #718096;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1a4a6f;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #f8f6f3;
  border-radius: 4px;
  border: 2px solid #e8e4df;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  font-size: 18px;
  color: #1a4a6f;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e0;
  border-radius: 13px;
  transition: 0.3s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #F7B32B;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #4a5568;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* TYPOGRAPHY */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  
  /* NAVIGATION */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* HERO */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* BUTTONS */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  /* SECTIONS */
  .section {
    padding: 30px 20px;
  }
  
  /* CONTENT WRAPPER */
  .content-wrapper {
    flex-direction: column;
  }
  
  /* CARDS */
  .calculator-card, .calculator-card-full,
  .pricing-card, .feature-card,
  .bundle-card, .stat, .step,
  .testimonial-card, .method,
  .category-card, .team-member,
  .team-contact, .commitment-item,
  .value, .benefit {
    max-width: 100%;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-brand, .footer-nav,
  .footer-contact, .footer-legal {
    max-width: 100%;
  }
  
  /* COOKIE CONSENT */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* MODAL */
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .container {
    padding: 0 16px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .mobile-menu {
    width: 90%;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* FOCUS STYLES FOR ACCESSIBILITY */
a:focus, button:focus, input:focus {
  outline: 2px solid #F7B32B;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle,
  .mobile-menu, #cookie-consent-banner,
  #cookie-settings-modal {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}