/* CSS Reset and 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', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a3d4f;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #455a64;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2C5F7C;
  color: #ffffff;
  border-color: #2C5F7C;
}

.btn-primary:hover {
  background-color: #1a3d4f;
  border-color: #1a3d4f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2C5F7C;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
}

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

.logo {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #455a64;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #2C5F7C;
  background-color: #f0f4f7;
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #2C5F7C;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #455a64;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #2C5F7C;
  transform: rotate(90deg);
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #4a7a99 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

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

.hero-cta .btn-primary {
  background-color: #E8B55F;
  border-color: #E8B55F;
  color: #1a3d4f;
  font-weight: 700;
}

.hero-cta .btn-primary:hover {
  background-color: #f5c962;
  border-color: #f5c962;
  box-shadow: 0 6px 16px rgba(232, 181, 95, 0.4);
}

.hero-cta .btn-secondary {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.hero-cta .btn-secondary:hover {
  background-color: #ffffff;
  color: #2C5F7C;
}

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

.trust-indicators span {
  font-size: 14px;
  color: #e8f4f8;
  font-weight: 500;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

/* Hero Internal Pages */
.hero-internal {
  background: linear-gradient(135deg, #1a3d4f 0%, #2C5F7C 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.hero-internal h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-internal .hero-subheadline {
  color: #e8f4f8;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #e8f4f8;
}

.breadcrumb a {
  color: #E8B55F;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

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

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

.text-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.text-section h2 {
  margin-top: 32px;
  margin-bottom: 20px;
}

.text-section h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.text-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.text-section li {
  list-style: disc;
  margin-bottom: 12px;
  color: #455a64;
  line-height: 1.8;
}

/* Value Proposition Section */
.value-proposition {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 60px 20px;
}

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

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #f8f9fa;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.12);
  border-color: #7BA899;
}

.benefit-card h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: #546e7a;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #f0f4f7;
  border-radius: 6px;
  font-weight: 500;
  color: #2C5F7C;
}

.benefit-item:before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #7BA899;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* Services Grid */
.services-overview {
  background-color: #f8f9fa;
}

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

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

.service-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(44, 95, 124, 0.15);
}

.service-card h3 {
  color: #2C5F7C;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.7;
}

.service-card .price {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #E8B55F;
  margin-top: 8px;
}

/* Service Detail Cards */
.service-detailed {
  background-color: #ffffff;
}

.service-detail-card {
  background-color: #f8f9fa;
  padding: 40px 32px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid #2C5F7C;
  position: relative;
}

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

.service-detail-card .price-tag {
  display: inline-block;
  background-color: #E8B55F;
  color: #1a3d4f;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-detail-card h3 {
  color: #2C5F7C;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.service-detail-card ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.service-detail-card li {
  list-style: none;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  color: #455a64;
}

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

/* Process Section */
.process {
  background-color: #ffffff;
}

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

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

.step {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  padding: 24px 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  position: relative;
}

.step h3 {
  color: #2C5F7C;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: #546e7a;
}

/* Testimonials */
.testimonials {
  background-color: #f8f9fa;
}

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

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

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

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #37474f;
  font-style: italic;
  flex-grow: 1;
}

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

.testimonial-author strong {
  font-size: 16px;
  color: #1a3d4f;
}

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

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.stat-card strong {
  font-size: 42px;
  color: #2C5F7C;
  font-family: 'Merriweather', serif;
  display: block;
}

.stat-card span {
  font-size: 15px;
  color: #546e7a;
  font-weight: 500;
}

/* Team Grid */
.team {
  background-color: #ffffff;
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.team-member {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.12);
}

.team-member h3 {
  color: #1a3d4f;
  font-size: 20px;
  margin-bottom: 8px;
}

.team-member .role {
  color: #2C5F7C;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.team-member p {
  font-size: 14px;
  color: #546e7a;
  line-height: 1.6;
}

/* Categories Grid */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #2C5F7C;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(44, 95, 124, 0.15);
  border-top-color: #E8B55F;
}

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

.category-card p {
  font-size: 15px;
  color: #546e7a;
}

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

.article-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 28px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.12);
}

.article-card h3 {
  color: #1a3d4f;
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-card p {
  font-size: 15px;
  color: #546e7a;
}

/* Tools Grid */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.tool-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #f0f4f7;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tool-card:hover {
  border-color: #7BA899;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(123, 168, 153, 0.15);
}

.tool-card h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
}

.tool-card p {
  font-size: 14px;
  color: #546e7a;
}

/* Guides List */
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.guide-item {
  background-color: #ffffff;
  padding: 32px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-item h3 {
  color: #1a3d4f;
  font-size: 22px;
  margin-bottom: 8px;
}

.guide-item p {
  color: #546e7a;
  margin-bottom: 16px;
}

/* Strategies Grid */
.strategies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.strategy-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 3px solid #7BA899;
  transition: all 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(123, 168, 153, 0.15);
  border-top-color: #E8B55F;
}

.strategy-card h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
}

.strategy-card p {
  font-size: 14px;
  color: #546e7a;
}

/* Mistakes List */
.mistakes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.mistake-item {
  flex: 1 1 280px;
  max-width: 500px;
  background-color: #fff3e0;
  padding: 28px 24px;
  border-radius: 8px;
  border-left: 4px solid #E8B55F;
}

.mistake-item h3 {
  color: #1a3d4f;
  font-size: 20px;
  margin-bottom: 12px;
}

.mistake-item p {
  color: #546e7a;
  font-size: 15px;
}

/* Contact Sections */
.contact-info,
.contact-methods {
  background-color: #ffffff;
}

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

.contact-card,
.method-card {
  flex: 1 1 250px;
  max-width: 320px;
  background-color: #f8f9fa;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  border-top: 3px solid #2C5F7C;
}

.contact-card h3,
.method-card h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-card p,
.method-card p {
  font-size: 15px;
  color: #455a64;
  line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #f8f9fa;
}

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

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-note {
  background-color: #e3f2fd;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  border-left: 4px solid #2C5F7C;
}

.form-note p {
  font-size: 14px;
  color: #37474f;
  margin-bottom: 12px;
}

.form-note p:last-child {
  margin-bottom: 0;
}

.form-fields-display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 600;
  color: #1a3d4f;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.field-placeholder {
  padding: 12px 16px;
  background-color: #f8f9fa;
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  color: #90a4ae;
  font-size: 15px;
}

.trust-note {
  text-align: center;
  color: #7BA899;
  font-weight: 500;
  margin-top: 24px;
  font-size: 14px;
}

/* FAQ Section */
.faq-contact {
  background-color: #ffffff;
}

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

.faq-item {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #7BA899;
}

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

.faq-item p {
  color: #546e7a;
  font-size: 15px;
}

/* Thank You / Confirmation Pages */
.confirmation-message,
.confirmation-content {
  background-color: #ffffff;
  padding: 60px 20px;
}

.confirmation-message h2,
.confirmation-content h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.step-card,
.suggestion-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #f8f9fa;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.step-card h3,
.suggestion-card h3 {
  color: #2C5F7C;
  font-size: 18px;
}

.step-card p,
.suggestion-card p {
  font-size: 14px;
  color: #546e7a;
  flex-grow: 1;
}

.confirmation-note {
  text-align: center;
  font-size: 15px;
  color: #7BA899;
  font-weight: 500;
  margin-top: 32px;
}

.contact-urgency,
.next-steps {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

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

.contact-option {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #ffffff;
  padding: 28px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-option h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-option p {
  font-size: 15px;
  color: #455a64;
}

.back-home {
  text-align: center;
  padding: 40px 20px;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #7BA899;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(123, 168, 153, 0.15);
}

.value-card h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: #546e7a;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2C5F7C 0%, #4a7a99 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

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

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

.cta-section .btn-primary {
  background-color: #E8B55F;
  border-color: #E8B55F;
  color: #1a3d4f;
  font-weight: 700;
}

.cta-section .btn-primary:hover {
  background-color: #f5c962;
  border-color: #f5c962;
}

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

.cta-section .btn-secondary:hover {
  background-color: #ffffff;
  color: #2C5F7C;
}

.trust-badge {
  margin-top: 24px;
  font-size: 14px;
  color: #e8f4f8;
  font-weight: 500;
}

/* Footer */
footer {
  background-color: #1a3d4f;
  color: #e8f4f8;
  padding: 60px 20px 20px;
}

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

.footer-column {
  flex: 1 1 220px;
  max-width: 300px;
}

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

.footer-column .tagline {
  font-weight: 600;
  color: #E8B55F;
  margin-bottom: 12px;
  font-size: 14px;
}

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

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

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

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

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links a {
  font-size: 13px;
  color: #b0bec5;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #E8B55F;
}

.copyright {
  font-size: 13px;
  color: #90a4ae;
}

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

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

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

.cookie-banner-text {
  flex: 1 1 300px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: #e8f4f8;
  margin-bottom: 0;
}

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

.cookie-banner .btn-accept {
  background-color: #E8B55F;
  color: #1a3d4f;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.cookie-banner .btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-banner .btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-banner .btn-settings {
  background-color: transparent;
  color: #E8B55F;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.cookie-banner .btn-settings:hover {
  color: #f5c962;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

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

.cookie-modal-header h3 {
  color: #1a3d4f;
  font-size: 24px;
}

.cookie-modal-close {
  font-size: 28px;
  color: #78909c;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 6px;
  margin-bottom: 16px;
}

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

.cookie-category h4 {
  color: #2C5F7C;
  font-size: 18px;
  margin-bottom: 0;
}

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

.cookie-toggle.active {
  background-color: #7BA899;
}

.cookie-toggle.disabled {
  background-color: #90a4ae;
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle.active:before {
  transform: translateX(24px);
}

.cookie-category p {
  font-size: 14px;
  color: #546e7a;
  margin-bottom: 0;
}

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

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

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

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

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

  .hero-cta {
    flex-direction: column;
  }

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

  .main-nav,
  .header-cta {
    display: none;
  }

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

  .service-card,
  .benefit-card,
  .strategy-card,
  .team-member,
  .category-card,
  .tool-card,
  .value-card,
  .article-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .stat-card,
  .step,
  .contact-card,
  .method-card,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .footer-column {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 12px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

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

  .cookie-banner-content {
    flex-direction: column;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner .btn-accept,
  .cookie-banner .btn-reject {
    flex: 1;
  }

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

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

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .benefit-card,
  .strategy-card,
  .team-member,
  .category-card {
    flex: 1 1 calc(50% - 12px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

/* Animation Classes */
@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 {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-section {
    display: none;
  }

  body {
    background-color: #ffffff;
  }

  .container {
    max-width: 100%;
  }
}