/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #faf8f5;
  overflow-x: hidden;
}

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

/* Typography - Elegant Classic Style */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
}

h4 {
  font-size: 18px;
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

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

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

/* Header & Navigation */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e0d8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-menu li a {
  font-size: 16px;
  color: #2c2c2c;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: #1B4B8C;
  border-bottom-color: #1B4B8C;
}

.cta-button {
  background-color: #1B4B8C;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #1B4B8C;
}

.cta-button:hover {
  background-color: #153a6e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 75, 140, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #1B4B8C;
  color: #ffffff;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #153a6e;
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2c2c2c;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 0;
  font-size: 18px;
  color: #2c2c2c;
  border-bottom: 1px solid #e5e0d8;
  transition: all 0.3s ease;
}

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

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

.btn-primary {
  background-color: #1B4B8C;
  color: #ffffff;
  border-color: #1B4B8C;
}

.btn-primary:hover {
  background-color: #153a6e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 75, 140, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #1B4B8C;
  border-color: #1B4B8C;
}

.btn-secondary:hover {
  background-color: #1B4B8C;
  color: #ffffff;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #f5f3ef 0%, #faf8f5 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e0d8;
}

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

.hero h1 {
  font-size: 52px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

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

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

/* Page Hero */
.page-hero {
  background: linear-gradient(to bottom, #f5f3ef 0%, #faf8f5 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e0d8;
}

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

.breadcrumb {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #1B4B8C;
}

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

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

.value-proposition {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.value-proposition h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-proposition > p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
}

.stat-item strong {
  font-size: 42px;
  color: #1B4B8C;
  font-family: 'Georgia', serif;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 16px;
  color: #4a4a4a;
  text-align: center;
}

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

.services-preview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1B4B8C;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

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

.service-card .price {
  font-size: 20px;
  color: #1B4B8C;
  font-weight: 600;
  margin-top: auto;
}

/* Service Detail */
.service-detail {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  margin-bottom: 32px;
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 20px;
}

.service-detail .price {
  font-size: 24px;
  color: #1B4B8C;
  font-weight: 600;
  display: block;
  margin: 20px 0;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #4a4a4a;
}

.service-detail strong {
  color: #1a1a1a;
}

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

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

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

.step {
  background: #f5f3ef;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  position: relative;
}

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

.step p {
  font-size: 15px;
  color: #4a4a4a;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(to bottom, #f5f3ef 0%, #faf8f5 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card strong {
  color: #1a1a1a;
  font-size: 16px;
  font-style: normal;
}

.testimonial-card span {
  color: #6a6a6a;
  font-size: 14px;
}

.testimonial-single {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-single .testimonial-card {
  max-width: 700px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1B4B8C 0%, #153a6e 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 8px;
}

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

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

.cta-section .btn-primary {
  background-color: #FFB81C;
  border-color: #FFB81C;
  color: #1a1a1a;
}

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

.contact-info {
  margin-top: 24px;
  font-size: 16px;
  color: #ffffff;
}

/* Mission/Vision */
.mission-vision {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.mission,
.vision,
.values {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  margin-bottom: 32px;
}

.values ul {
  padding-left: 24px;
}

.values ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #4a4a4a;
  font-size: 16px;
}

/* Team Grid */
.team {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #ffffff;
}

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

.team > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 17px;
  color: #4a4a4a;
}

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

.team-member {
  background: #f5f3ef;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
}

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

.team-member p {
  font-size: 15px;
  color: #6a6a6a;
}

/* Timeline */
.timeline {
  background: linear-gradient(to bottom, #f5f3ef 0%, #faf8f5 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.timeline-items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item strong {
  font-size: 24px;
  color: #1B4B8C;
  font-family: 'Georgia', serif;
}

.timeline-item p {
  color: #4a4a4a;
  font-size: 15px;
}

/* Discoveries */
.featured-discovery {
  background: linear-gradient(135deg, #1B4B8C 0%, #153a6e 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 8px;
  position: relative;
}

.feature-badge {
  background: #FFB81C;
  color: #1a1a1a;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.featured-discovery h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.discovery-meta {
  color: #e0e0e0;
  font-size: 15px;
  margin-bottom: 16px;
}

.featured-discovery p {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.7;
  max-width: 800px;
}

.key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.key-points li {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 15px;
}

/* Discovery Cards */
.discoveries-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.discovery-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.discovery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1B4B8C;
}

.discovery-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.discovery-card .date {
  color: #6a6a6a;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.discovery-card .category {
  color: #1B4B8C;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 12px;
  background: #f5f3ef;
  border-radius: 4px;
}

/* Research Trends */
.research-trends {
  background: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.research-trends h2 {
  text-align: center;
  margin-bottom: 32px;
}

.research-trends ul {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 24px;
}

.research-trends ul li {
  list-style: disc;
  margin-bottom: 16px;
  color: #4a4a4a;
  font-size: 17px;
}

/* Research Approach */
.research-approach {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.research-approach > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 17px;
  color: #4a4a4a;
}

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

.principle {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
}

.principle h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1B4B8C;
}

.principle p {
  font-size: 15px;
  color: #4a4a4a;
}

/* Active Projects */
.active-projects {
  background: linear-gradient(to bottom, #f5f3ef 0%, #faf8f5 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.project-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
}

.project-item h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.project-item p {
  margin-bottom: 8px;
  color: #4a4a4a;
}

.project-item strong {
  color: #1B4B8C;
}

/* Research Areas */
.research-areas {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.area {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.area h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.area p {
  flex-grow: 1;
  margin-bottom: 16px;
  color: #4a4a4a;
}

.area span {
  color: #1B4B8C;
  font-size: 14px;
  font-weight: 600;
}

/* Research Impact */
.research-impact {
  background: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.impact-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  text-align: center;
}

.impact-stats .stat strong {
  font-size: 48px;
  color: #1B4B8C;
  font-family: 'Georgia', serif;
  margin-bottom: 8px;
}

.impact-stats .stat span {
  font-size: 16px;
  color: #4a4a4a;
}

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

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

.contact-method {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1B4B8C;
}

.contact-method p {
  margin-bottom: 8px;
  color: #4a4a4a;
}

.contact-method strong {
  color: #1a1a1a;
  font-size: 16px;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(to bottom, #f5f3ef 0%, #faf8f5 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-form-section > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  color: #4a4a4a;
}

.form-note {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  max-width: 700px;
  margin: 0 auto;
}

.form-note p {
  margin-bottom: 12px;
  color: #4a4a4a;
  font-size: 15px;
}

.form-redirect-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e0d8;
  font-style: italic;
}

.form-redirect-note a {
  color: #1B4B8C;
  text-decoration: underline;
}

/* Location Info */
.location-info {
  background: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.location-info h2 {
  text-align: center;
  margin-bottom: 32px;
}

.location-info p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 16px;
}

.location-info ul {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 24px;
}

.location-info ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #4a4a4a;
  font-size: 16px;
}

/* Team Contacts */
.team-contacts {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.contact-person {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 450px;
}

.contact-person h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.contact-person p {
  margin-bottom: 8px;
  color: #4a4a4a;
  font-size: 15px;
}

/* Legal Content */
.legal-hero {
  background: linear-gradient(to bottom, #f5f3ef 0%, #faf8f5 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e0d8;
}

.legal-hero h1 {
  font-size: 38px;
  margin-bottom: 12px;
}

.legal-hero p {
  color: #6a6a6a;
  font-size: 15px;
}

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

.legal-content .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
}

.legal-content h2 {
  font-size: 26px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

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

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

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
  background: linear-gradient(to bottom, #f5f3ef 0%, #faf8f5 100%);
}

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

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

.thank-you-hero p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto 16px;
}

.confirmation {
  color: #1B4B8C;
  font-weight: 600;
}

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

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

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

.steps-grid .step {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
}

.steps-grid .step h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1B4B8C;
}

.steps-grid .step p {
  font-size: 15px;
  color: #4a4a4a;
}

/* Resources */
.resources {
  background: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.resource-card {
  background: #f5f3ef;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e0d8;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.resource-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.resource-card p {
  flex-grow: 1;
  margin-bottom: 24px;
  color: #4a4a4a;
}

/* Contact Alternatives */
.contact-alternatives {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(to bottom, #f5f3ef 0%, #faf8f5 100%);
}

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

.contact-alternatives p {
  margin-bottom: 12px;
  color: #4a4a4a;
  font-size: 16px;
}

/* CTA Secondary */
.cta-secondary {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.cta-secondary h2 {
  margin-bottom: 32px;
}

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

/* Services Overview */
.services-overview {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.services-overview p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: #2c2c2c;
  color: #e0e0e0;
  padding: 60px 20px 24px;
  border-top: 3px solid #1B4B8C;
}

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

.footer-info {
  flex: 1 1 300px;
  max-width: 350px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.tagline {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
  font-style: italic;
}

.footer-info p {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 8px;
}

.footer-links {
  flex: 1 1 150px;
}

.footer-links h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 400;
}

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

.footer-links ul li a {
  color: #b0b0b0;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #FFB81C;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #808080;
  padding-top: 24px;
  border-top: 1px solid #404040;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #1B4B8C;
  padding: 24px 20px;
  z-index: 2000;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 0;
}

.cookie-consent-text a {
  color: #1B4B8C;
  text-decoration: underline;
}

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

.cookie-consent-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accept-all {
  background: #1B4B8C;
  color: #ffffff;
}

.accept-all:hover {
  background: #153a6e;
}

.reject-all {
  background: #e0e0e0;
  color: #2c2c2c;
}

.reject-all:hover {
  background: #d0d0d0;
}

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

.cookie-settings:hover {
  background: #f5f3ef;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2c2c2c;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1B4B8C;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

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

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

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

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #1B4B8C;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

.cookie-modal-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences {
  background: #1B4B8C;
  color: #ffffff;
}

.save-preferences:hover {
  background: #153a6e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 24px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .main-nav .nav-menu,
  .main-nav .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Sections */
  .hero {
    padding: 60px 20px;
  }
  
  .section {
    padding: 32px 20px;
  }
  
  /* Grids to Column Layout */
  .service-card,
  .discovery-card,
  .area,
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .step,
  .team-member,
  .principle,
  .contact-method {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .timeline-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-info,
  .footer-links {
    max-width: 100%;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent-buttons {
    width: 100%;
  }
  
  .cookie-consent-buttons button {
    flex: 1;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 17px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .service-card,
  .discovery-card,
  .testimonial-card,
  .area {
    padding: 24px;
  }
  
  .legal-content .content-wrapper {
    padding: 24px;
  }
  
  .stat-item strong,
  .impact-stats .stat strong {
    font-size: 36px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-section,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  * {
    box-shadow: none !important;
  }
}