/* ===================================
   BREEZY DESTINATIONS - SCANDINAVIAN CLEAN 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', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C2C2C;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   SCANDINAVIAN CLEAN TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  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;
}

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

a:hover {
  color: #E8934C;
}

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

li {
  margin-bottom: 8px;
}

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

em {
  font-style: italic;
  color: #5A5A5A;
}

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

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

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

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2C2C2C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 150;
  background-color: #2C5F8D;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.2);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 200;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C2C2C;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2C2C2C;
  padding: 12px 0;
  border-bottom: 1px solid #F4F1EA;
  transition: all 0.3s ease;
}

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

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

.hero {
  background: linear-gradient(135deg, #F4F1EA 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

.hero-subheadline {
  font-size: 20px;
  color: #5A5A5A;
  margin-bottom: 32px;
  line-height: 1.6;
}

.breadcrumb {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #2C5F8D;
}

.breadcrumb a:hover {
  color: #E8934C;
}

/* ===================================
   BUTTONS - SCANDINAVIAN STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #2C5F8D;
  color: #FFFFFF;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background-color: #E8934C;
  border-color: #E8934C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(232, 147, 76, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

.btn-secondary:hover {
  background-color: #2C5F8D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 95, 141, 0.2);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ===================================
   TRUST ELEMENTS
   =================================== */

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

.badge {
  background-color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2C5F8D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-indicator {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  color: #E8934C;
}

.trust-element {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #7A7A7A;
}

/* ===================================
   SECTIONS WITH PROPER SPACING
   =================================== */

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   SERVICE CARDS - FLEXBOX LAYOUT
   =================================== */

.services-overview,
.services-detail {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-overview h2,
.services-detail h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card {
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.service-card p {
  color: #5A5A5A;
  font-size: 15px;
  line-height: 1.6;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #2C5F8D;
  margin-top: 20px;
  margin-bottom: 0;
}

.service-detail-card {
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  border-color: #2C5F8D;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.1);
}

.service-detail-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.service-detail-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #E8934C;
  margin: 20px 0;
  display: block;
}

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

.service-detail-card ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.service-detail-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8934C;
  font-weight: 700;
}

/* ===================================
   VALUE PROPOSITION & BENEFITS
   =================================== */

.value-proposition {
  background-color: #F4F1EA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefit {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 260px;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  margin-bottom: 20px;
}

.benefit h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.benefit p {
  color: #5A5A5A;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===================================
   TESTIMONIALS - READABLE DESIGN
   =================================== */

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

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2C2C2C;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-author {
  font-weight: 600;
  color: #1A1A1A;
  font-style: normal;
  font-size: 14px;
}

.rating {
  color: #E8934C;
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ===================================
   PROJECT CARDS & REFERENCES
   =================================== */

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

.project-card {
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.project-card:hover {
  border-color: #2C5F8D;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.12);
  transform: translateY(-4px);
}

.project-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.project-card p {
  color: #5A5A5A;
  margin-bottom: 12px;
}

.project-card em {
  color: #2C5F8D;
  font-style: italic;
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E8E8E8;
}

.project-stats {
  background-color: #F4F1EA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.project-stats h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.stat-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #2C5F8D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

/* ===================================
   BLOG & ARTICLES
   =================================== */

.blog-articles,
.popular-topics {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.blog-articles h2,
.popular-topics h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.article-card {
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 320px;
  max-width: 400px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

.article-card p {
  color: #5A5A5A;
  flex-grow: 1;
}

.article-card .meta {
  font-size: 13px;
  color: #7A7A7A;
  margin-top: auto;
  margin-bottom: 0;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.tag {
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  color: #2C5F8D;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: #2C5F8D;
  color: #FFFFFF;
  border-color: #2C5F8D;
}

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

.contact-options,
.office-hours,
.location-map {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.contact-options h2,
.office-hours h2,
.location-map h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.contact-option {
  background-color: #F4F1EA;
  padding: 40px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 450px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-option img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.contact-option h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.contact-option p {
  color: #2C2C2C;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-option .note {
  font-size: 14px;
  color: #7A7A7A;
  font-style: italic;
}

/* ===================================
   FORM STYLING
   =================================== */

.contact-form-section {
  background-color: #F4F1EA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-field input[type="checkbox"] {
  margin-right: 8px;
}

.form-field p {
  color: #5A5A5A;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 4px;
}

.form-note {
  font-size: 13px;
  color: #7A7A7A;
  margin-top: 24px;
  text-align: center;
}

.cta-instruction {
  text-align: center;
  font-size: 14px;
  color: #7A7A7A;
  margin-top: 16px;
}

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

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C5F8D 0%, #1A4768 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #E8E8E8;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn,
.cta-section .btn {
  margin: 0 8px 16px;
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2C5F8D;
}

/* ===================================
   COMPANY STORY & MISSION
   =================================== */

.company-story,
.mission-values,
.expertise {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.company-story h2,
.mission-values h2,
.expertise h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.text-section p {
  color: #2C2C2C;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.stat {
  background-color: #F4F1EA;
  padding: 20px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #2C5F8D;
}

.mission-statement {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #2C5F8D;
  margin-top: 48px;
  font-style: italic;
}

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

.value-card,
.expertise-card {
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 260px;
  max-width: 400px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.value-card h3,
.expertise-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.value-card p,
.expertise-card p {
  color: #5A5A5A;
  line-height: 1.7;
  margin-bottom: 0;
}

.certification {
  text-align: center;
  font-size: 14px;
  color: #7A7A7A;
  margin-top: 32px;
}

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

.thank-you-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #E8934C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  font-weight: 700;
}

.next-steps,
.confirmation-details,
.additional-resources,
.social-proof {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.next-steps h2,
.additional-resources h2,
.social-proof h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.step-card,
.resource-card {
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 280px;
  max-width: 380px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-card h3,
.resource-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.step-card p,
.resource-card p {
  color: #5A5A5A;
  margin-bottom: 20px;
}

.response-time {
  text-align: center;
  font-size: 14px;
  color: #7A7A7A;
  margin-top: 32px;
}

.confirmation-details {
  background-color: #F4F1EA;
  text-align: center;
}

.confirmation-details p {
  color: #2C2C2C;
  font-size: 16px;
}

.social-proof {
  background-color: #FFFFFF;
  text-align: center;
}

.social-proof p {
  color: #2C2C2C;
  font-size: 18px;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.legal-content h2 {
  color: #1A1A1A;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #E8E8E8;
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  color: #2C5F8D;
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-content p {
  color: #2C2C2C;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  color: #2C2C2C;
  line-height: 1.8;
}

.legal-content a {
  color: #2C5F8D;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #E8934C;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.right-card {
  background-color: #F4F1EA;
  padding: 24px;
  border-radius: 8px;
  flex: 1 1 280px;
  max-width: 400px;
  margin-bottom: 20px;
}

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

.right-card p {
  color: #5A5A5A;
  font-size: 15px;
  margin-bottom: 0;
}

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

footer {
  background-color: #1A1A1A;
  color: #E8E8E8;
  padding: 60px 20px 32px;
}

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

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

.footer-section h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
}

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

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

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

.footer-nav a:hover {
  color: #E8934C;
}

.copyright {
  text-align: center;
  color: #7A7A7A;
  font-size: 13px;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.cookie-banner p {
  color: #E8E8E8;
  font-size: 14px;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background-color: #E8934C;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #D17A35;
  transform: translateY(-2px);
}

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

.cookie-reject:hover {
  background-color: #FFFFFF;
  color: #1A1A1A;
}

.cookie-settings {
  background-color: transparent;
  color: #E8E8E8;
  border: 1px solid #5A5A5A;
}

.cookie-settings:hover {
  background-color: #2C2C2C;
  border-color: #7A7A7A;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 400;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  display: none;
}

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

.cookie-modal h2 {
  color: #1A1A1A;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #F4F1EA;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-category h3 {
  color: #2C5F8D;
  font-size: 16px;
  margin: 0;
}

.cookie-category p {
  font-size: 14px;
  color: #5A5A5A;
  margin: 8px 0 0;
}

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

.cookie-modal-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1 1 auto;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Trust Badges */
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  .badge {
    text-align: center;
  }
  
  /* Services */
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  /* Benefits */
  .benefits-grid {
    flex-direction: column;
  }
  
  .benefit {
    max-width: 100%;
  }
  
  /* Testimonials */
  .testimonial-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    max-width: 100%;
  }
  
  /* Stats */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-card {
    max-width: 100%;
  }
  
  /* Articles */
  .article-grid {
    flex-direction: column;
  }
  
  .article-card {
    max-width: 100%;
  }
  
  /* Contact */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-option {
    max-width: 100%;
  }
  
  /* Form */
  .form-container {
    padding: 24px;
  }
  
  /* CTA */
  .cta-banner,
  .cta-section {
    padding: 60px 20px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-modal {
    padding: 24px;
    width: 95%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .services-grid,
  .benefits-grid,
  .testimonial-grid,
  .article-grid {
    justify-content: center;
  }
  
  .service-card,
  .benefit,
  .testimonial-card,
  .article-card {
    flex: 1 1 45%;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

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

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

.mobile-menu.active {
  animation: slideInRight 0.4s ease;
}

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

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

.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; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .section {
    page-break-inside: avoid;
  }
}