/* ==========================================
   InnovaRex - Warm & Friendly Design System
   Modern Financial Services - Mobile First
   ========================================== */

/* CSS RESET & BASE */
* {
  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', Arial, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: #fefefe;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Warm & Friendly */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a4379;
  margin-bottom: 16px;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

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

strong {
  font-weight: 600;
  color: #2c3e50;
}

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

a:hover {
  color: #F0A500;
}

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

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

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: #1a4379;
  color: white;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 67, 121, 0.3);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #1a4379 0%, #2a5a9f 100%);
  z-index: 10000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #F0A500;
  transform: translateX(10px);
}

/* HEADER - Warm & Welcoming */
header {
  background: linear-gradient(135deg, #1a4379 0%, #2a5a9f 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.main-nav {
  display: none;
  gap: 24px;
}

.main-nav a {
  color: white;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: rgba(240, 165, 0, 0.2);
  color: #F0A500;
}

.cta-button {
  background: #F0A500;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(240, 165, 0, 0.3);
  transition: all 0.3s ease;
  display: none;
}

.cta-button:hover {
  background: #d89400;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240, 165, 0, 0.4);
}

/* HERO SECTION - Warm & Inviting */
.hero {
  background: linear-gradient(135deg, #fef5e7 0%, #fdebd0 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

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

.hero h1 {
  font-size: 36px;
  color: #1a4379;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  color: #2c3e50;
  font-size: 14px;
}

.trust-badges span {
  padding: 8px 16px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #fef5e7 0%, #fdebd0 100%);
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 0 0 30px 30px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #4a5568;
}

.breadcrumb a {
  color: #1a4379;
}

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

/* BUTTONS - Warm & Friendly */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #1a4379 0%, #2a5a9f 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(26, 67, 121, 0.3);
  background: linear-gradient(135deg, #0f2d5a 0%, #1a4379 100%);
}

.btn-secondary {
  background: white;
  color: #1a4379;
  border: 2px solid #1a4379;
}

.btn-secondary:hover {
  background: #1a4379;
  color: white;
  transform: translateY(-3px);
}

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

section h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 32px;
}

/* PROBLEM-SOLUTION */
.problem-solution {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-radius: 30px;
  padding: 50px 20px;
}

.problem-solution h2 {
  color: #c53030;
}

.problem-solution p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}

.stats-grid, .services-grid, .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.stat {
  background: white;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat strong {
  display: block;
  font-size: 32px;
  color: #F0A500;
  margin-bottom: 8px;
}

.stat span {
  color: #4a5568;
  font-size: 14px;
}

/* SERVICES */
.services-preview, .services-detailed {
  background: #fefefe;
}

.service-card, .service-card-detailed {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card:hover, .service-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(26, 67, 121, 0.2);
}

.service-card h3, .service-card-detailed h3 {
  color: #1a4379;
  font-size: 20px;
}

.service-card p, .service-card-detailed p {
  flex-grow: 1;
}

.service-card .price, .service-card-detailed .price {
  font-size: 28px;
  font-weight: 700;
  color: #F0A500;
  display: block;
}

.service-card-detailed ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card-detailed li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.service-card-detailed li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C7A4F;
  font-weight: bold;
}

.duration {
  display: block;
  color: #718096;
  font-size: 14px;
  margin-top: 8px;
}

/* HOW IT WORKS */
.how-it-works {
  background: linear-gradient(135deg, #e6f2ff 0%, #cfe9ff 100%);
  border-radius: 30px;
}

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

.step {
  background: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.step-number {
  display: block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F0A500 0%, #d89400 100%);
  color: white;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(240, 165, 0, 0.3);
}

/* TESTIMONIALS - High Contrast */
.testimonials {
  background: #f7fafc;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 500px;
  border-left: 5px solid #F0A500;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.testimonial-card strong {
  color: #1a4379;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-card span {
  color: #718096;
  font-size: 13px;
}

.trust-score, .rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #F0A500;
  margin-top: 24px;
}

/* CTA BANNER */
.cta-banner, .cta {
  background: linear-gradient(135deg, #1a4379 0%, #2a5a9f 100%);
  color: white;
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
}

.cta-banner h2, .cta h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-banner p, .cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.guarantee, .urgency {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

/* TIPS & ARTICLES */
.tips-featured {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe5cc 100%);
  border-radius: 30px;
  padding: 50px 20px;
}

.featured-article {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.badge {
  display: inline-block;
  background: #F0A500;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.meta {
  color: #718096;
  font-size: 14px;
  display: block;
  margin-top: 12px;
}

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

.article-card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1 1 280px;
  max-width: 350px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* NEWSLETTER */
.newsletter-signup {
  background: linear-gradient(135deg, #e6f7ff 0%, #ccefff 100%);
  border-radius: 30px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
}

.newsletter-form input {
  padding: 16px;
  border: 2px solid #1a4379;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #F0A500;
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.1);
}

.note {
  font-size: 13px;
  color: #718096;
}

/* PROCESS & FAQ */
.process, .faq {
  background: #f7fafc;
}

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

.process-steps .step {
  flex: 1 1 200px;
  max-width: 250px;
}

.process-steps .step span {
  display: block;
  width: 50px;
  height: 50px;
  background: #F0A500;
  color: white;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item h4 {
  color: #1a4379;
  margin-bottom: 12px;
}

/* CONTACT */
.contact-options, .office-location {
  margin-bottom: 40px;
}

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

.option, .trust-item {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
}

.option:hover, .trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.option h4 {
  color: #1a4379;
  margin-bottom: 12px;
}

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

.form-placeholder {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-placeholder p {
  margin-bottom: 12px;
  color: #4a5568;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #e6fff2 0%, #ccffe5 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
}

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

.icon-check {
  width: 80px;
  height: 80px;
  background: #2C7A4F;
  color: white;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(44, 122, 79, 0.3);
}

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

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

.resource-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* LEGAL PAGES */
.legal-page {
  background: white;
  padding: 40px 20px;
}

.legal-page h2 {
  text-align: left;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a4379;
}

.legal-page h3 {
  text-align: left;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page p, .legal-page li {
  max-width: 800px;
}

/* SPECIALTY SECTIONS */
.philosophy, .mission-values, .approach {
  background: #f7fafc;
  padding: 50px 20px;
  border-radius: 30px;
}

.principles, .values, .approach-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.principle, .value {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 320px;
  transition: all 0.3s ease;
}

.principle:hover, .value:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.team-member {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-member h4 {
  margin-bottom: 8px;
}

.team-member p {
  color: #F0A500;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-member span {
  color: #718096;
  font-size: 14px;
}

/* PRICING */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.pricing-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 380px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card.popular {
  border: 3px solid #F0A500;
  transform: scale(1.05);
}

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

.pricing-card h3 {
  color: #1a4379;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  color: #F0A500;
}

.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.pricing-card li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.pricing-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C7A4F;
  font-weight: bold;
  font-size: 18px;
}

/* TAX & INVESTMENT SPECIFIC */
.tax-checklist, .case-studies, .strategies, .portfolios {
  margin-bottom: 40px;
}

.checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.category {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 320px;
}

.category h4 {
  color: #1a4379;
  margin-bottom: 16px;
}

.case-study, .strategy, .portfolio, .broker {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.case-study h4, .strategy h4, .portfolio h4, .broker h4 {
  color: #1a4379;
  margin-bottom: 12px;
}

.case-study p, .strategy span, .portfolio span {
  margin-bottom: 8px;
}

/* STORY & MILESTONES */
.story {
  background: #f7fafc;
  padding: 50px 20px;
  border-radius: 30px;
}

.milestones {
  background: white;
  padding: 20px;
  border-radius: 16px;
  margin-top: 24px;
  text-align: center;
  color: #1a4379;
  font-weight: 600;
}

/* FOOTER - Warm & Inviting */
footer {
  background: linear-gradient(135deg, #1a4379 0%, #0f2d5a 100%);
  color: white;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #F0A500;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #F0A500;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a4379 0%, #2a5a9f 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.cookie-text {
  flex: 1;
  text-align: center;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: #2C7A4F;
  color: white;
}

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

.cookie-reject {
  background: #c53030;
  color: white;
}

.cookie-reject:hover {
  background: #9b2c2c;
  transform: translateY(-2px);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #4a5568;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  background: #f7fafc;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  margin-bottom: 12px;
  color: #1a4379;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #cbd5e0;
  border-radius: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  left: 27px;
}

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

/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 28px; }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
  }
  
  .cta-button {
    display: inline-block;
  }
  
  .hero h1 {
    font-size: 52px;
  }
  
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
  
  .trust-badges {
    flex-direction: row;
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: row;
  }
  
  .cookie-content {
    flex-direction: row;
    text-align: left;
  }
  
  .cookie-text {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 100px 20px;
  }
  
  .footer-content {
    justify-content: space-between;
  }
  
  .footer-col {
    flex: 0 1 220px;
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #F0A500;
  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-width: 0;
}

/* ANIMATIONS */
@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-toggle, .cookie-banner {
    display: none;
  }
  
  body {
    color: black;
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}