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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1D4A6E;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #2c3e50;
}

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

a:hover {
  color: #1D4A6E;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

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

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

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2c3e50;
  padding: 8px 0;
  position: relative;
}

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

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

.cta-button {
  display: none;
  background-color: #F8B739;
  color: #1D4A6E;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(248, 183, 57, 0.3);
}

.cta-button:hover {
  background-color: #e5a52d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 183, 57, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #2C5F8D;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background-color: #E74C3C;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px;
  color: #2c3e50;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #f8f9fa;
  color: #2C5F8D;
  transform: translateX(8px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1D4A6E 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.hero p {
  font-size: 18px;
  color: #f8f9fa;
  max-width: 800px;
  margin: 0 auto 32px;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #F8B739;
  color: #1D4A6E;
  box-shadow: 0 4px 12px rgba(248, 183, 57, 0.3);
}

.btn-primary:hover {
  background-color: #e5a52d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(248, 183, 57, 0.4);
}

.btn-secondary {
  background-color: #ffffff;
  color: #2C5F8D;
  border: 2px solid #ffffff;
}

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

/* Stats Section */
.stats {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  min-width: 150px;
}

.stat-item h3 {
  font-size: 48px;
  color: #2C5F8D;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: #2c3e50;
}

/* Services Preview Section */
.services-preview {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.services-preview h2 {
  margin-bottom: 16px;
}

.services-preview > p {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 360px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

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

.service-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #F8B739;
  margin-top: 16px;
}

/* Why Us Section */
.why-us {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.benefit-item {
  background-color: #ffffff;
  border-left: 4px solid #F8B739;
  padding: 24px;
  border-radius: 8px;
  flex: 1 1 250px;
  max-width: 550px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

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

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

.testimonial-card .author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2C5F8D;
  font-style: normal;
  font-size: 14px;
  margin-top: 8px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2C5F8D 0%, #1D4A6E 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1D4A6E 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.breadcrumbs a {
  color: #F8B739;
  text-decoration: none;
}

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

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

.page-hero p {
  font-size: 18px;
  color: #f8f9fa;
  max-width: 800px;
}

/* Reviews List */
.reviews-list {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

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

.review-card h3 {
  color: #2C5F8D;
  font-size: 20px;
}

.rating {
  color: #F8B739;
  font-size: 18px;
  letter-spacing: 2px;
}

.meta {
  font-size: 14px;
  color: #6c757d;
  margin-top: 8px;
}

.read-more {
  color: #2C5F8D;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

.read-more:hover {
  color: #1D4A6E;
  text-decoration: underline;
}

/* Categories Section */
.categories {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

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

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

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

.category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  background-color: #2C5F8D;
  color: #ffffff;
}

.category-card:hover h3,
.category-card:hover p {
  color: #ffffff;
}

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

.category-card p {
  font-size: 14px;
  color: #6c757d;
}

/* Services Detailed */
.services-detailed {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-detailed h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.service-card.featured {
  border: 3px solid #F8B739;
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #F8B739;
  color: #1D4A6E;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
}

/* Process Section */
.process {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

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

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

.step {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 350px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.step h3 {
  color: #F8B739;
  font-size: 24px;
  margin-bottom: 16px;
}

/* Benefits Section */
.benefits {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Events Calendar */
.events-calendar {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.events-calendar h2 {
  text-align: center;
  margin-bottom: 40px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.event-date {
  background-color: #2C5F8D;
  color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-date .day {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 4px;
}

.event-details {
  flex-grow: 1;
}

.event-details h3 {
  color: #2C5F8D;
  margin-bottom: 8px;
  font-size: 20px;
}

.event-details .location,
.event-details .time {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 4px;
}

.category-badge {
  display: inline-block;
  background-color: #F8B739;
  color: #1D4A6E;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

/* Categories Quick */
.categories-quick {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

.categories-quick h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.category-btn {
  background-color: #ffffff;
  color: #2C5F8D;
  border: 2px solid #2C5F8D;
  padding: 12px 24px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Submit Event */
.submit-event {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.submit-event h2 {
  margin-bottom: 16px;
}

.submit-event p {
  font-size: 18px;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* Our Story */
.our-story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.our-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.our-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
}

/* Values Section */
.values {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

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

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

.value-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  flex: 1 1 240px;
  max-width: 280px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

/* Achievements */
.achievements {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.stat-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.stat-card h3 {
  font-size: 48px;
  color: #F8B739;
  margin-bottom: 8px;
}

/* What We Do */
.what-we-do {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

.what-we-do h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.activity-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Contact CTA */
.contact-cta,
.cta-contact {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.contact-cta p,
.cta-contact p {
  font-size: 18px;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* Blog Posts */
.blog-posts {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

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

.post-card h3 {
  color: #2C5F8D;
  font-size: 20px;
  margin-top: 8px;
}

.post-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6c757d;
  margin-top: 8px;
}

/* Newsletter */
.newsletter {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
  margin-bottom: 60px;
}

.newsletter h2 {
  margin-bottom: 16px;
}

.newsletter > p {
  font-size: 18px;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 32px;
}

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

.newsletter-form input {
  flex: 1 1 300px;
  padding: 16px;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #2C5F8D;
}

.privacy-note {
  font-size: 14px;
  color: #6c757d;
}

/* Contact Options */
.contact-options {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.contact-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 350px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

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

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-info,
.form-note {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.form-fields-list {
  margin-top: 24px;
}

.form-fields-list ul {
  list-style-type: none;
  padding-left: 0;
}

.form-fields-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.form-fields-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F8B739;
  font-weight: 700;
}

.form-note {
  background-color: #fff3cd;
  border-left: 4px solid #F8B739;
}

.form-note strong {
  color: #2C5F8D;
}

/* Office Info */
.office-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.office-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

.office-details {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.office-text {
  flex: 1 1 300px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

/* Response Promise */
.response-promise {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

.response-promise h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.promise-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 350px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.promise-card h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.content-wrapper h2 {
  color: #2C5F8D;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.content-wrapper h3 {
  color: #2C5F8D;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper ul {
  margin-left: 24px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1D4A6E 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

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

.thank-you-hero p {
  font-size: 18px;
  color: #f8f9fa;
  max-width: 700px;
  margin: 0 auto;
}

/* Next Steps */
.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.step-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 350px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.step-card h3 {
  color: #F8B739;
  margin-bottom: 16px;
  font-size: 20px;
}

/* While Waiting */
.while-waiting {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

.while-waiting h2 {
  text-align: center;
  margin-bottom: 40px;
}

.cta-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.cta-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 350px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-card h3 {
  color: #2C5F8D;
}

/* Return Navigation */
.return-navigation {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.return-navigation h2 {
  margin-bottom: 32px;
}

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

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

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

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

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

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

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

.footer-col nav a,
.footer-col p {
  color: #e9ecef;
  font-size: 14px;
  line-height: 1.6;
}

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

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

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

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

.legal-links a {
  color: #adb5bd;
  font-size: 14px;
}

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

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

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

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

.cookie-btn.accept {
  background-color: #F8B739;
  color: #1D4A6E;
}

.cookie-btn.accept:hover {
  background-color: #e5a52d;
}

.cookie-btn.reject {
  background-color: #6c757d;
  color: #ffffff;
}

.cookie-btn.reject:hover {
  background-color: #5a6268;
}

.cookie-btn.settings {
  background-color: transparent;
  color: #2C5F8D;
  border: 2px solid #2C5F8D;
}

.cookie-btn.settings:hover {
  background-color: #2C5F8D;
  color: #ffffff;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  color: #2C5F8D;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dee2e6;
}

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

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

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

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

.toggle-switch.active {
  background-color: #F8B739;
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(24px);
}

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

/* Responsive Design - Tablet */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .cta-button {
    display: inline-block;
  }

  h1 { font-size: 56px; }
  h2 { font-size: 40px; }

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

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
  h1 { font-size: 64px; }
  h2 { font-size: 48px; }

  .hero {
    padding: 120px 20px;
  }

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

  .stat-grid {
    gap: 48px;
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }

  .hero {
    padding: 60px 20px;
  }

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

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

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

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

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

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

  .legal-links {
    justify-content: center;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #F8B739;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

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

  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}