/* ============================================
   SPARKY FUNDS IT - VINTAGE RETRO STYLE CSS
   Comprehensive stylesheet for all pages
   ============================================ */

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

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  color: #2c1810;
  background-color: #f5e6d3;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px);
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY - VINTAGE RETRO STYLE
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #3d2817;
  text-shadow: 2px 2px 0px rgba(181, 83, 9, 0.2);
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  border-bottom: 3px solid #b45309;
  padding-bottom: 12px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #5d3a1a;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #2c1810;
}

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

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

/* ============================================
   HEADER - VINTAGE STYLE
   ============================================ */
header {
  background-color: #3d2817;
  background-image: linear-gradient(135deg, #3d2817 0%, #5d3a1a 100%);
  border-bottom: 4px solid #b45309;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.main-nav a {
  color: #f5e6d3;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #b45309;
  border-color: #f5e6d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(181, 83, 9, 0.3);
}

/* ============================================
   MOBILE MENU - HAMBURGER STYLE
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #b45309;
  color: #f5e6d3;
  border: 3px solid #3d2817;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #3d2817;
  border-color: #b45309;
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: #3d2817;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(181,83,9,.1) 10px, rgba(181,83,9,.1) 20px);
  z-index: 1999;
  padding: 80px 20px 20px;
  box-shadow: 4px 0 12px rgba(0,0,0,0.4);
  transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-right: 4px solid #b45309;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #b45309;
  color: #f5e6d3;
  border: 3px solid #f5e6d3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #f5e6d3;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  background-color: rgba(181, 83, 9, 0.2);
  border-left: 4px solid #b45309;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #b45309;
  border-left-width: 8px;
  padding-left: 24px;
}

/* ============================================
   HERO SECTION - VINTAGE RETRO
   ============================================ */
.hero {
  background: linear-gradient(135deg, #d4a574 0%, #b8956a 50%, #8b6f47 100%);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(181,83,9,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(61,40,23,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #d4a574 0%, #b8956a 50%, #8b6f47 100%);
  border: 6px solid #3d2817;
  border-radius: 12px;
  padding: 60px 40px;
  margin-bottom: 60px;
  box-shadow: 
    0 8px 16px rgba(0,0,0,0.2),
    inset 0 2px 4px rgba(255,255,255,0.2);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(61,40,23,0.03) 8px, rgba(61,40,23,0.03) 16px);
  pointer-events: none;
  border-radius: 6px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #2c1810;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(181, 83, 9, 0.3);
}

.hero-subheadline {
  font-size: 20px;
  color: #3d2817;
  margin-bottom: 32px;
  line-height: 1.6;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-indicators span {
  background-color: #f5e6d3;
  color: #3d2817;
  padding: 10px 20px;
  border: 2px solid #b45309;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.section-subheadline {
  font-size: 18px;
  color: #5d3a1a;
  margin-bottom: 40px;
  text-align: center;
  font-style: italic;
  font-family: 'Georgia', serif;
}

/* ============================================
   BUTTONS - VINTAGE RETRO STYLE
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
  position: relative;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.btn-primary {
  background-color: #b45309;
  color: #f5e6d3;
  border-color: #3d2817;
}

.btn-primary:hover {
  background-color: #935411;
  border-color: #2c1810;
}

.btn-secondary {
  background-color: #f5e6d3;
  color: #3d2817;
  border-color: #b45309;
}

.btn-secondary:hover {
  background-color: #e6d7c4;
  border-color: #935411;
}

/* ============================================
   CARDS & GRID LAYOUTS - FLEXBOX ONLY
   ============================================ */
.service-grid,
.benefits-grid,
.testimonial-grid,
.resource-grid,
.industry-grid,
.values-grid,
.stats-grid,
.differentiators,
.content-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.benefit-card,
.testimonial-card,
.resource-card,
.industry-card,
.value-card,
.stat-card,
.differentiator-card,
.card {
  background-color: #fef7ed;
  border: 3px solid #b45309;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 4px 4px 0px rgba(61, 40, 23, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.benefit-card::before,
.resource-card::before {
  content: '★';
  position: absolute;
  top: -12px;
  left: 20px;
  font-size: 24px;
  color: #b45309;
  background-color: #f5e6d3;
  padding: 0 8px;
}

.service-card:hover,
.benefit-card:hover,
.resource-card:hover,
.industry-card:hover,
.value-card:hover,
.differentiator-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0px rgba(61, 40, 23, 0.4);
  border-color: #935411;
}

.service-card h3,
.benefit-card h3,
.resource-card h3 {
  color: #3d2817;
  margin-bottom: 12px;
  border-bottom: 2px dashed #b45309;
  padding-bottom: 8px;
}

.price,
.price-tag {
  display: inline-block;
  background-color: #b45309;
  color: #f5e6d3;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
  border: 2px solid #3d2817;
  box-shadow: 2px 2px 0px rgba(0,0,0,0.2);
  font-family: 'Georgia', serif;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  background-color: #e6d7c4;
  border-top: 4px solid #3d2817;
  border-bottom: 4px solid #3d2817;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 3px solid #3d2817;
  padding: 32px;
  box-shadow: 6px 6px 0px rgba(61, 40, 23, 0.3);
  flex: 1 1 calc(50% - 12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 18px;
  color: #2c1810;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Georgia', serif;
  position: relative;
  padding-left: 24px;
}

.testimonial-card p::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 48px;
  color: #b45309;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px solid #b45309;
}

.testimonial-author strong {
  color: #3d2817;
  font-size: 16px;
  font-family: 'Georgia', serif;
}

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

/* ============================================
   STATISTICS SECTION
   ============================================ */
.statistics,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  padding: 40px 20px;
  background-color: #3d2817;
  border-radius: 12px;
  border: 4px solid #b45309;
}

.stat,
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background-color: #fef7ed;
  border: 3px solid #b45309;
  border-radius: 8px;
  flex: 1 1 200px;
  min-width: 180px;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #b45309;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 0px rgba(61, 40, 23, 0.2);
}

.stat-label {
  font-size: 14px;
  color: #3d2817;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ============================================
   SERVICE DETAILS & FEATURES
   ============================================ */
.service-detail,
.solution-card,
.guide-item {
  background-color: #fef7ed;
  border: 3px solid #b45309;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 4px 4px 0px rgba(61, 40, 23, 0.3);
}

.features-list,
.benefits-list {
  margin: 24px 0;
  padding-left: 24px;
}

.features-list li,
.benefits-list li {
  margin-bottom: 12px;
  color: #2c1810;
  position: relative;
  padding-left: 24px;
}

.features-list li::before,
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #b45309;
  font-weight: 700;
  font-size: 18px;
}

.ideal-for {
  background-color: #e6d7c4;
  padding: 16px;
  border-left: 4px solid #b45309;
  margin-top: 24px;
  font-style: italic;
  font-family: 'Georgia', serif;
  color: #3d2817;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #b45309 0%, #935411 100%);
  color: #f5e6d3;
  text-align: center;
  padding: 60px 40px;
  border-radius: 12px;
  border: 4px solid #3d2817;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  margin-bottom: 60px;
}

.cta-section h2 {
  color: #f5e6d3;
  border-bottom: 3px solid #f5e6d3;
  padding-bottom: 16px;
  margin-bottom: 24px;
  display: inline-block;
}

.cta-section p {
  font-size: 18px;
  color: #fef7ed;
  margin-bottom: 32px;
  font-family: 'Georgia', serif;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.trust-badges span {
  background-color: #f5e6d3;
  color: #3d2817;
  padding: 8px 16px;
  border: 2px solid #3d2817;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* ============================================
   CONTACT SECTIONS
   ============================================ */
.contact-grid,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background-color: #fef7ed;
  border: 3px solid #b45309;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  box-shadow: 4px 4px 0px rgba(61, 40, 23, 0.3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail {
  font-weight: 700;
  color: #b45309;
  font-size: 18px;
  font-family: 'Georgia', serif;
}

.availability {
  font-size: 14px;
  color: #5d3a1a;
  font-style: italic;
}

.address {
  font-size: 18px;
  color: #2c1810;
  line-height: 1.8;
  margin-bottom: 16px;
}

.hours-table {
  background-color: #fef7ed;
  border: 3px solid #b45309;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #b45309;
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: #3d2817;
}

.time {
  color: #5d3a1a;
  font-family: 'Georgia', serif;
}

/* ============================================
   AREAS & RESOURCES
   ============================================ */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.areas-list span {
  background-color: #fef7ed;
  color: #3d2817;
  padding: 8px 16px;
  border: 2px solid #b45309;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.resource-type,
.date {
  display: inline-block;
  background-color: #b45309;
  color: #f5e6d3;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-list article {
  background-color: #fef7ed;
  border: 3px solid #b45309;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 4px 4px 0px rgba(61, 40, 23, 0.3);
}

/* ============================================
   POLICY & LEGAL PAGES
   ============================================ */
.policy-content,
.terms-content,
.cookies-content,
.gdpr-content {
  background-color: #ffffff;
  border: 3px solid #3d2817;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 4px 4px 0px rgba(61, 40, 23, 0.3);
}

.policy-section,
.terms-section,
.cookie-section,
.gdpr-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px dashed #b45309;
}

.policy-section:last-child,
.terms-section:last-child,
.cookie-section:last-child,
.gdpr-section:last-child {
  border-bottom: none;
}

.policy-section h2,
.terms-section h2,
.cookie-section h2,
.gdpr-section h2 {
  color: #3d2817;
  margin-bottom: 16px;
}

.policy-section ul,
.gdpr-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.policy-section ul li,
.gdpr-section ul li {
  margin-bottom: 8px;
  color: #2c1810;
}

.last-updated {
  font-size: 14px;
  color: #5d3a1a;
  font-style: italic;
}

/* ============================================
   FOOTER - VINTAGE RETRO
   ============================================ */
footer {
  background-color: #3d2817;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(181,83,9,.05) 20px, rgba(181,83,9,.05) 40px);
  color: #f5e6d3;
  padding: 60px 0 20px;
  border-top: 6px solid #b45309;
  margin-top: 60px;
}

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

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

.footer-column h4 {
  color: #f5e6d3;
  margin-bottom: 16px;
  border-bottom: 2px solid #b45309;
  padding-bottom: 8px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

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

.footer-column a {
  display: block;
  color: #e6d7c4;
  padding: 8px 0;
  font-size: 14px;
  border-left: 3px solid transparent;
  padding-left: 12px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #f5e6d3;
  border-left-color: #b45309;
  padding-left: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid #5d3a1a;
}

.footer-bottom p {
  font-size: 14px;
  color: #e6d7c4;
}

/* ============================================
   COOKIE CONSENT BANNER - VINTAGE STYLE
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #3d2817;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(181,83,9,.1) 10px, rgba(181,83,9,.1) 20px);
  color: #f5e6d3;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.4);
  z-index: 1998;
  border-top: 4px solid #b45309;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}
.cookie-text p {
  color: white;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Georgia', serif;
}

.cookie-btn-accept {
  background-color: #b45309;
  color: #f5e6d3;
  border-color: #f5e6d3;
}

.cookie-btn-accept:hover {
  background-color: #935411;
  transform: scale(1.05);
}

.cookie-btn-reject,
.cookie-btn-settings {
  background-color: transparent;
  color: #b45309;
  border-color: #b45309;
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background-color: rgba(181, 83, 9, 0.2);
}

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

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

.cookie-modal-content {
  background-color: #f5e6d3;
  border: 4px solid #3d2817;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.cookie-modal-content h2 {
  color: #3d2817;
  margin-bottom: 24px;
  border-bottom: 3px solid #b45309;
  padding-bottom: 12px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #fef7ed;
  border: 2px solid #b45309;
  border-radius: 8px;
}

.cookie-category h3 {
  color: #3d2817;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  font-size: 14px;
  color: #2c1810;
  margin-bottom: 12px;
}

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

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

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Header mobile adjustments */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-content {
    justify-content: center;
  }
  
  /* Hero mobile adjustments */
  .hero {
    padding: 40px 24px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Card grids mobile - single column */
  .service-grid,
  .benefits-grid,
  .testimonial-grid,
  .resource-grid,
  .industry-grid,
  .values-grid,
  .differentiators,
  .contact-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-card,
  .testimonial-card,
  .resource-card,
  .industry-card,
  .value-card,
  .differentiator-card,
  .contact-card,
  .card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Statistics mobile */
  .statistics,
  .stats-grid {
    flex-direction: column;
  }
  
  .stat,
  .stat-card {
    flex: 1 1 100%;
  }
  
  /* Footer mobile */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal mobile */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Section spacing mobile */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit-card,
  .resource-card,
  .industry-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .stat,
  .stat-card {
    flex: 1 1 calc(33.333% - 16px);
  }
}

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

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

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

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

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

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

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

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