/* ===================================
   KEEN DRILL - MINIMALIST DESIGN SYSTEM
   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, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  min-height: 100vh;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

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

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #1a3d6e;
}

strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

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

.main-nav a {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2B5AA0;
  cursor: pointer;
  padding: 8px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #4a4a4a;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #2B5AA0;
}

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

.mobile-nav a {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2B5AA0;
  padding-left: 8px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 0;
}

.btn-primary {
  background-color: #2B5AA0;
  color: #ffffff;
  border: 2px solid #2B5AA0;
}

.btn-primary:hover {
  background-color: #1a3d6e;
  border-color: #1a3d6e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 90, 160, 0.2);
}

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

.btn-secondary:hover {
  background-color: #2B5AA0;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background-color: #fafafa;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero-subheadline {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.trust-badges span {
  font-size: 14px;
  color: #4a4a4a;
  font-weight: 500;
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero {
  background-color: #fafafa;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
}

.promo-hero {
  background-color: #2B5AA0;
  color: #ffffff;
}

.promo-hero h1,
.promo-hero p {
  color: #ffffff;
}

.promo-banner {
  font-size: 20px;
  font-weight: 600;
  color: #FFD166;
  margin-top: 16px;
}

/* ===================================
   BREADCRUMBS
   =================================== */

.breadcrumbs {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: #2B5AA0;
}

.breadcrumbs span {
  color: #4a4a4a;
}

/* ===================================
   SECTIONS
   =================================== */

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

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

/* ===================================
   CATEGORY GRID
   =================================== */

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  max-width: 300px;
  transition: all 0.3s ease;
  text-align: center;
}

.category-card:hover {
  border-color: #2B5AA0;
  box-shadow: 0 8px 24px rgba(43, 90, 160, 0.1);
  transform: translateY(-4px);
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.category-card p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.category-card .price {
  font-size: 16px;
  font-weight: 600;
  color: #2B5AA0;
  display: block;
}

/* ===================================
   CATEGORY GRID FULL
   =================================== */

.category-grid-full {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.category-card-large {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 560px;
  transition: all 0.3s ease;
}

.category-card-large:hover {
  border-color: #2B5AA0;
  box-shadow: 0 8px 24px rgba(43, 90, 160, 0.1);
  transform: translateY(-4px);
}

.category-card-large h2 {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: left;
}

.category-card-large p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 16px;
  text-align: left;
}

.category-card-large .price {
  font-size: 16px;
  font-weight: 600;
  color: #2B5AA0;
  display: block;
  margin-bottom: 16px;
}

.category-card-large .btn {
  margin-top: 8px;
}

/* ===================================
   FEATURES GRID
   =================================== */

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

.feature {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.feature p {
  font-size: 14px;
  color: #4a4a4a;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
  background-color: #fafafa;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-card strong {
  font-size: 14px;
  color: #4a4a4a;
  font-weight: 600;
  font-style: normal;
}

.rating {
  color: #F47920;
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-summary {
  text-align: center;
  font-size: 14px;
  color: #4a4a4a;
  margin-top: 16px;
}

/* ===================================
   STORE INFO
   =================================== */

.store-info {
  background-color: #fafafa;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.store-details p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 12px;
}

.store-details .btn {
  margin-top: 24px;
}

/* ===================================
   DEALS & PROMOTIONS
   =================================== */

.deals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.deal-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.deal-card:hover {
  border-color: #F47920;
  box-shadow: 0 8px 24px rgba(244, 121, 32, 0.1);
  transform: translateY(-4px);
}

.discount-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background-color: #F47920;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
}

.deal-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.old-price {
  font-size: 14px;
  color: #999999;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.new-price {
  font-size: 20px;
  font-weight: 600;
  color: #2B5AA0;
  margin-bottom: 16px;
}

/* ===================================
   BUNDLES
   =================================== */

.bundles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.bundle-card {
  background-color: #ffffff;
  border: 2px solid #FFD166;
  padding: 40px 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.bundle-card:hover {
  box-shadow: 0 8px 24px rgba(255, 209, 102, 0.2);
  transform: translateY(-4px);
}

.bundle-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.bundle-card p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.savings {
  font-size: 16px;
  font-weight: 600;
  color: #F47920;
  display: block;
}

/* ===================================
   NEWSLETTER
   =================================== */

.newsletter-promo {
  background-color: #2B5AA0;
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.newsletter-promo h2,
.newsletter-promo p {
  color: #ffffff;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 32px auto 0;
}

.email-input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  font-size: 14px;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn-primary {
  background-color: #F47920;
  border-color: #F47920;
}

.newsletter-form .btn-primary:hover {
  background-color: #d66a1a;
  border-color: #d66a1a;
}

/* ===================================
   VALUES & FEATURES
   =================================== */

.values-grid,
.commitment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card,
.commitment-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  max-width: 500px;
  text-align: center;
}

.value-card h3,
.commitment-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.value-card p,
.commitment-card p {
  font-size: 14px;
  color: #4a4a4a;
}

/* ===================================
   TEXT SECTIONS
   =================================== */

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

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

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

.values-list span {
  padding: 8px 20px;
  border: 1px solid #2B5AA0;
  color: #2B5AA0;
  font-size: 14px;
  font-weight: 500;
}

/* ===================================
   STORE CARDS
   =================================== */

.store-card-main {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.store-card-main h2 {
  text-align: left;
  margin-bottom: 24px;
}

.store-details p {
  margin-bottom: 16px;
}

.store-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-features span {
  padding: 8px 16px;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  color: #4a4a4a;
}

/* ===================================
   SERVICES & HELP
   =================================== */

.services-grid,
.help-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.help-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover,
.help-card:hover {
  border-color: #2B5AA0;
  box-shadow: 0 4px 12px rgba(43, 90, 160, 0.1);
}

.service-card h3,
.help-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p,
.help-card p {
  font-size: 14px;
  color: #4a4a4a;
}

/* ===================================
   AMENITIES
   =================================== */

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.amenities-grid span {
  padding: 12px 20px;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  color: #4a4a4a;
}

/* ===================================
   CONTACT METHODS
   =================================== */

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.method-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
  max-width: 320px;
  text-align: center;
}

.method-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.method-card p {
  font-size: 16px;
  color: #2B5AA0;
  font-weight: 600;
  margin-bottom: 8px;
}

.method-card .hours {
  font-size: 14px;
  color: #4a4a4a;
  font-weight: 400;
}

/* ===================================
   CONTACT FORM
   =================================== */

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px;
}

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

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #2B5AA0;
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.form-field.checkbox label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

/* ===================================
   INFO BLOCKS
   =================================== */

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.info-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  padding: 24px;
}

.info-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.info-block p {
  font-size: 14px;
  color: #4a4a4a;
}

/* ===================================
   FAQ
   =================================== */

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

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 24px;
}

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

.faq-item p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 0;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

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

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px;
}

.content-wrapper h2 {
  text-align: left;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper p {
  font-size: 14px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 16px;
}

/* ===================================
   RIGHTS SECTION
   =================================== */

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.right-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  max-width: 320px;
  text-align: center;
}

.right-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.right-card p {
  font-size: 14px;
  color: #4a4a4a;
}

.cta-text {
  text-align: center;
  font-size: 16px;
  margin-top: 24px;
}

/* ===================================
   COOKIE SETTINGS
   =================================== */

.cookie-settings-section {
  background-color: #fafafa;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.settings-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px;
  text-align: center;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  text-align: left;
}

.category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e0e0e0;
}

.category input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.category label {
  font-size: 14px;
  font-weight: 500;
}

/* ===================================
   KEY POINTS / HIGHLIGHTS
   =================================== */

.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.highlight-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 260px;
  text-align: center;
}

.highlight-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.highlight-card p {
  font-size: 14px;
  color: #4a4a4a;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background-color: #fafafa;
}

.confirmation-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background-color: #27ae60;
  color: #ffffff;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.confirmation-message {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.response-time {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 32px;
}

/* ===================================
   NEXT STEPS
   =================================== */

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #4a4a4a;
  flex-grow: 1;
}

/* ===================================
   QUICK LINKS
   =================================== */

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.quick-links a {
  padding: 12px 24px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  border-color: #2B5AA0;
  background-color: #fafafa;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  background-color: #fafafa;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 32px;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 600;
}

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

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

.footer-column a {
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-column p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.footer-bottom p {
  font-size: 14px;
  color: #999999;
  margin-bottom: 0;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-banner-actions .btn {
  padding: 10px 24px;
  font-size: 13px;
}

.cookie-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-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 24px;
  text-align: left;
  font-size: 24px;
}

.cookie-preference {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-preference:last-child {
  border-bottom: none;
}

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

.cookie-preference h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-preference p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  /* Header & Navigation */
  .main-nav {
    display: none;
  }

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

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Category Cards */
  .category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .category-card-large {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Features */
  .feature {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Deals */
  .deal-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Bundle Cards */
  .bundle-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }

  .email-input {
    flex: 1 1 100%;
  }

  /* Value Cards */
  .value-card,
  .commitment-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Service Cards */
  .service-card,
  .help-card,
  .method-card,
  .info-block,
  .right-card,
  .highlight-card,
  .step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Forms */
  .form-wrapper {
    padding: 24px;
  }

  /* Legal Content */
  .content-wrapper {
    padding: 24px;
  }

  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-banner-actions .btn {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    flex: 1 1 100%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Typography */
  h1 {
    font-size: 40px;
  }

  /* Category Cards */
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }

  .category-card-large {
    flex: 1 1 calc(50% - 32px);
  }

  /* Features */
  .feature {
    flex: 1 1 calc(50% - 32px);
  }

  /* Deals */
  .deal-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

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

/* ===================================
   ACCESSIBILITY
   =================================== */

:focus {
  outline: 2px solid #2B5AA0;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

  a {
    text-decoration: underline;
  }
}