/* ========================================
   KAVONIRASIGNAL - MODERN BOLD DESIGN
   CSS Reset & Base Styles
   ======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY - BOLD & MODERN
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0a0a0a;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  font-weight: 700;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

strong {
  font-weight: 700;
  color: #1B4B7F;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

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

section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

main {
  min-height: 100vh;
}

/* ========================================
   HEADER - BOLD & GEOMETRIC
   ======================================== */

header {
  background: linear-gradient(135deg, #1B4B7F 0%, #0d2647 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #F0B429;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #F0B429;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ========================================
   BUTTONS - HIGH CONTRAST & BOLD
   ======================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #F0B429;
  color: #0a0a0a;
  border-color: #F0B429;
  box-shadow: 4px 4px 0 #0a0a0a;
}

.btn-primary:hover {
  background: #0a0a0a;
  color: #F0B429;
  border-color: #F0B429;
  box-shadow: 6px 6px 0 #F0B429;
  transform: translate(-2px, -2px);
}

.btn-secondary {
  background: transparent;
  color: #1B4B7F;
  border-color: #1B4B7F;
  box-shadow: 4px 4px 0 #1B4B7F;
}

.btn-secondary:hover {
  background: #1B4B7F;
  color: #ffffff;
  box-shadow: 6px 6px 0 #0a0a0a;
  transform: translate(-2px, -2px);
}

/* ========================================
   MOBILE MENU - BOLD SLIDE-IN
   ======================================== */

.mobile-menu-toggle {
  display: none;
  background: #F0B429;
  color: #0a0a0a;
  border: none;
  font-size: 28px;
  font-weight: 900;
  padding: 12px 20px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  box-shadow: 4px 4px 0 #0a0a0a;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #0a0a0a;
  color: #F0B429;
  box-shadow: 6px 6px 0 #F0B429;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: #1B4B7F;
  z-index: 1200;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F0B429;
  color: #0a0a0a;
  border: none;
  font-size: 32px;
  font-weight: 900;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 4px 4px 0 #0a0a0a;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #0a0a0a;
  color: #F0B429;
  box-shadow: 6px 6px 0 #F0B429;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(240, 180, 41, 0.2);
  border-left-color: #F0B429;
  padding-left: 30px;
}

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

  .mobile-menu-toggle {
    display: block;
  }
}

/* ========================================
   HERO SECTIONS - DRAMATIC & BOLD
   ======================================== */

.hero {
  background: linear-gradient(135deg, #1B4B7F 0%, #2C8C5C 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: #F0B429;
  opacity: 0.1;
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: #ffffff;
  opacity: 0.05;
  transform: rotate(-30deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 400;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  font-weight: 700;
  font-size: 16px;
}

.trust-indicators span {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-left: 4px solid #F0B429;
}

/* ========================================
   CARD LAYOUTS - GEOMETRIC & STRUCTURED
   ======================================== */

.benefits-grid,
.services-grid,
.process-steps,
.values-grid,
.stats-grid,
.approach-grid,
.guarantees-grid,
.categories-grid,
.blog-grid,
.tools-grid,
.downloads-grid,
.guides-grid,
.videos-grid,
.suggestions-grid,
.contact-methods,
.info-grid,
.steps-grid,
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.step,
.value-card,
.stat-card,
.approach-card,
.guarantee-card,
.category-card,
.article-card,
.tool-card,
.download-item,
.guide-card,
.video-card,
.suggestion-card,
.method-card,
.info-item,
.step-card,
.right-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background: #ffffff;
  border: 4px solid #0a0a0a;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.value-card::before,
.category-card::before,
.tool-card::before,
.method-card::before,
.right-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  background: #F0B429;
  z-index: -1;
  transition: all 0.3s ease;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.category-card:hover,
.tool-card:hover,
.method-card:hover,
.right-card:hover {
  transform: translate(-4px, -4px);
}

.benefit-card:hover::before,
.service-card:hover::before,
.value-card:hover::before,
.category-card:hover::before,
.tool-card:hover::before,
.method-card:hover::before,
.right-card:hover::before {
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.category-card h3,
.tool-card h3,
.method-card h3,
.right-card h3 {
  color: #1B4B7F;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-price {
  display: inline-block;
  background: #1B4B7F;
  color: #ffffff;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 20px;
  margin: 16px 0;
  border: 3px solid #0a0a0a;
  box-shadow: 4px 4px 0 #F0B429;
}

/* ========================================
   PROCESS STEPS - NUMBERED & BOLD
   ======================================== */

.step {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px 24px;
  background: #f8f8f8;
  border: 4px solid #1B4B7F;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #F0B429;
  color: #0a0a0a;
  font-size: 32px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid #0a0a0a;
  box-shadow: 4px 4px 0 #1B4B7F;
}

/* ========================================
   STATISTICS - HIGH IMPACT NUMBERS
   ======================================== */

.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 40px 24px;
  background: #1B4B7F;
  color: #ffffff;
  border: none;
}

.stat-card::before {
  display: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #F0B429;
  margin-bottom: 8px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   TESTIMONIALS - CONTRAST & READABILITY
   ======================================== */

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 40px;
  background: #ffffff;
  border: 4px solid #0a0a0a;
  position: relative;
  margin-bottom: 24px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-weight: 900;
  color: #F0B429;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 3px solid #F0B429;
}

.testimonial-author strong {
  color: #0a0a0a;
  font-size: 18px;
}

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

.rating {
  color: #F0B429;
  font-size: 20px;
  margin-top: 8px;
}

.trust-badge {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1B4B7F;
  margin-top: 40px;
  padding: 20px;
  background: #F0B429;
  border: 4px solid #0a0a0a;
  box-shadow: 6px 6px 0 #1B4B7F;
  display: inline-block;
  width: auto;
}

/* ========================================
   SERVICES DETAILED - STRUCTURED LAYOUT
   ======================================== */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.service-item {
  padding: 40px;
  background: #ffffff;
  border: 4px solid #0a0a0a;
  position: relative;
}

.service-item::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  background: #f8f8f8;
  z-index: -1;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.service-features h4 {
  color: #1B4B7F;
  margin-top: 24px;
  margin-bottom: 16px;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-weight: 500;
  color: #1a1a1a;
}

.service-features li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #F0B429;
  font-size: 14px;
}

.service-duration,
.service-commitment,
.service-saving,
.service-success,
.service-limited {
  display: inline-block;
  padding: 8px 16px;
  background: #2C8C5C;
  color: #ffffff;
  font-weight: 700;
  margin-top: 16px;
  border: 3px solid #0a0a0a;
}

.service-premium {
  background: #F0B429;
  border-color: #1B4B7F;
  border-width: 6px;
}

.service-badge {
  position: absolute;
  top: -16px;
  right: 40px;
  background: #1B4B7F;
  color: #ffffff;
  padding: 8px 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 3px solid #0a0a0a;
  box-shadow: 4px 4px 0 #F0B429;
}

/* ========================================
   BLOG & ARTICLES - CARD GRID
   ======================================== */

.article-featured {
  padding: 60px;
  background: linear-gradient(135deg, #1B4B7F 0%, #2C8C5C 100%);
  color: #ffffff;
  border: 6px solid #0a0a0a;
  position: relative;
  margin-top: 40px;
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 40px;
  background: #F0B429;
  color: #0a0a0a;
  padding: 8px 24px;
  font-weight: 900;
  text-transform: uppercase;
  border: 3px solid #0a0a0a;
}

.article-featured h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.article-excerpt {
  font-size: 18px;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.article-meta span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-left: 3px solid #F0B429;
}

.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background: #ffffff;
  border: 4px solid #0a0a0a;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.article-card:hover {
  border-color: #1B4B7F;
  box-shadow: 8px 8px 0 #F0B429;
  transform: translate(-4px, -4px);
}

.article-card h3 {
  color: #1B4B7F;
  margin-bottom: 16px;
}

.article-card .article-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 3px solid #f0f0f0;
}

.article-card .article-meta span {
  background: #f8f8f8;
  color: #666666;
  border-left-color: #2C8C5C;
}

/* ========================================
   NEWSLETTER & CTA SECTIONS
   ======================================== */

.newsletter-signup,
.cta-banner,
.cta-section {
  background: #F0B429;
  padding: 80px 20px;
  text-align: center;
  border-top: 6px solid #0a0a0a;
  border-bottom: 6px solid #0a0a0a;
  position: relative;
}

.newsletter-content,
.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-signup h2,
.cta-banner h2,
.cta-section h2 {
  color: #0a0a0a;
  margin-bottom: 16px;
}

.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  font-weight: 700;
}

.newsletter-benefits span {
  padding: 12px 24px;
  background: #ffffff;
  border: 3px solid #0a0a0a;
}

.cta-info {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.cta-link {
  margin-top: 20px;
}

.cta-link a {
  color: #1B4B7F;
  font-weight: 700;
  text-decoration: underline;
}

/* ========================================
   RESOURCES & TOOLS
   ======================================== */

.resources-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.popular-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: #ffffff;
  border: 4px solid #0a0a0a;
  border-left: 8px solid #1B4B7F;
  transition: all 0.3s ease;
}

.popular-item:hover {
  border-left-width: 12px;
  padding-left: 28px;
}

.popular-item h3 {
  margin: 0;
  color: #1B4B7F;
}

.popular-item span {
  background: #F0B429;
  color: #0a0a0a;
  padding: 8px 16px;
  font-weight: 700;
  border: 3px solid #0a0a0a;
}

.download-info,
.guide-pages {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  color: #2C8C5C;
}

/* ========================================
   CONTACT FORM - BOLD PLACEHOLDERS
   ======================================== */

.contact-form-placeholder {
  max-width: 700px;
  margin: 40px auto 0;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1B4B7F;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.input-placeholder,
.textarea-placeholder,
.select-placeholder {
  width: 100%;
  padding: 16px;
  background: #f8f8f8;
  border: 4px solid #0a0a0a;
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-placeholder {
  height: 50px;
}

.textarea-placeholder {
  height: 150px;
}

.select-placeholder {
  height: 50px;
}

.input-placeholder:hover,
.textarea-placeholder:hover,
.select-placeholder:hover {
  border-color: #1B4B7F;
  box-shadow: 4px 4px 0 #F0B429;
}

.privacy-note {
  font-size: 14px;
  color: #666666;
  margin: 24px 0;
}

.privacy-note a {
  color: #1B4B7F;
  font-weight: 700;
  text-decoration: underline;
}

.form-button {
  margin: 32px 0;
}

.required-note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

/* ========================================
   MAP & LOCATION
   ======================================== */

.map-placeholder {
  padding: 80px 40px;
  background: #f8f8f8;
  border: 6px solid #0a0a0a;
  text-align: center;
  margin-top: 40px;
  position: relative;
}

.map-placeholder::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  background: #1B4B7F;
  z-index: -1;
}

.map-placeholder p {
  font-size: 20px;
  font-weight: 700;
  color: #1B4B7F;
  margin-bottom: 12px;
}

.map-info {
  font-size: 16px;
  color: #666666;
}

/* ========================================
   SOCIAL PROOF & REVIEWS
   ======================================== */

.rating-summary {
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border: 6px solid #0a0a0a;
  margin: 40px auto;
  max-width: 500px;
  position: relative;
}

.rating-summary::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  background: #F0B429;
  z-index: -1;
}

.rating-stars {
  font-size: 48px;
  color: #F0B429;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 #0a0a0a;
}

.rating-summary p {
  font-size: 24px;
  font-weight: 900;
  color: #1B4B7F;
  margin-bottom: 8px;
}

.quick-testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.quick-testimonials p {
  padding: 20px 24px;
  background: #ffffff;
  border-left: 6px solid #2C8C5C;
  font-style: italic;
  font-weight: 600;
  color: #1a1a1a;
}

/* ========================================
   ERROR & CONFIRMATION PAGES
   ======================================== */

.error-hero,
.confirmation-hero {
  text-align: center;
  padding: 100px 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #F0B429;
  text-shadow: 6px 6px 0 #1B4B7F;
  line-height: 1;
  margin-bottom: 24px;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: #2C8C5C;
  color: #ffffff;
  font-size: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  border: 6px solid #0a0a0a;
  box-shadow: 8px 8px 0 #F0B429;
  border-radius: 50%;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.page-links a {
  padding: 12px 24px;
  background: #1B4B7F;
  color: #ffffff;
  font-weight: 700;
  border: 3px solid #0a0a0a;
  transition: all 0.3s ease;
}

.page-links a:hover {
  background: #F0B429;
  color: #0a0a0a;
  box-shadow: 4px 4px 0 #1B4B7F;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-hero {
  background: #1B4B7F;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.legal-hero h1 {
  color: #ffffff;
}

.last-updated {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.8;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 4px solid #f0f0f0;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  color: #1B4B7F;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 4px solid #F0B429;
}

.legal-section h3 {
  color: #2C8C5C;
  margin-top: 24px;
}

.legal-section a {
  color: #1B4B7F;
  font-weight: 700;
  text-decoration: underline;
}

/* ========================================
   FOOTER - STRUCTURED & BOLD
   ======================================== */

footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
  color: #F0B429;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-section a {
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #F0B429;
  padding-left: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  border-left-color: #F0B429;
  padding-left: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 3px solid #333333;
}

.footer-bottom p {
  color: #888888;
  font-size: 14px;
  font-weight: 600;
}

/* ========================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  color: #ffffff;
  padding: 24px 20px;
  z-index: 2000;
  border-top: 6px solid #F0B429;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #F0B429;
  font-weight: 700;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #F0B429;
  color: #0a0a0a;
  border-color: #F0B429;
}

.cookie-accept:hover {
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 4px 4px 0 #F0B429;
}

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

.cookie-reject:hover {
  background: #ffffff;
  color: #0a0a0a;
}

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

.cookie-settings:hover {
  background: #F0B429;
  color: #0a0a0a;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  border: 6px solid #0a0a0a;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F0B429;
  color: #0a0a0a;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  border: 3px solid #0a0a0a;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  border: 3px solid #0a0a0a;
  background: #f8f8f8;
}

.cookie-category h3 {
  color: #1B4B7F;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.toggle-switch {
  width: 60px;
  height: 30px;
  background: #cccccc;
  border: 3px solid #0a0a0a;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #2C8C5C;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  transition: left 0.3s ease;
}

.toggle-switch.active::after {
  left: calc(100% - 21px);
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-info {
  text-align: center;
  margin-top: 32px;
}

.contact-info p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info a {
  color: #1B4B7F;
  text-decoration: underline;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    padding: 60px 20px;
  }

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

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

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  .benefit-card,
  .service-card,
  .value-card,
  .stat-card,
  .approach-card,
  .category-card,
  .article-card,
  .tool-card,
  .guide-card,
  .video-card,
  .suggestion-card,
  .method-card,
  .right-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .step {
    flex: 1 1 calc(50% - 24px);
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-section {
    flex: 1 1 100%;
  }

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .article-featured {
    padding: 40px 24px;
  }

  .map-placeholder {
    padding: 60px 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .error-code {
    font-size: 80px;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 60px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }

  .stat-number {
    font-size: 36px;
  }

  .step {
    flex: 1 1 100%;
  }

  .benefit-card,
  .service-card,
  .service-item,
  .testimonial-card {
    padding: 24px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu {
    width: 90%;
  }
}

/* ========================================
   ACCESSIBILITY & FOCUS STATES
   ======================================== */

a:focus,
button:focus,
.cookie-btn:focus {
  outline: 4px solid #F0B429;
  outline-offset: 2px;
}

/* ========================================
   ANIMATION UTILITIES
   ======================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000000;
  }

  a {
    text-decoration: underline;
  }
}

/* END OF STYLES */