:root {
  --color-primary: #2d5a4a;
  --color-secondary: #8fb3a5;
  --color-accent: #d4a574;
  --color-dark: #1a1a1a;
  --color-light: #f8f6f3;
  --color-white: #ffffff;
  --color-gray: #6b6b6b;
  --color-gray-light: #e8e5e1;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', Times, serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-dark);
}

h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
h2 { font-size: 1.8rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.4rem; margin-bottom: 1rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.8rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent);
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 400;
  letter-spacing: 1px;
}

.logo span {
  color: var(--color-accent);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-desktop a {
  color: var(--color-dark);
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--color-white);
  transform: translateX(-100%);
  transition: var(--transition);
  overflow-y: auto;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile ul {
  list-style: none;
  padding: 30px 20px;
}

.nav-mobile li {
  border-bottom: 1px solid var(--color-gray-light);
}

.nav-mobile a {
  display: block;
  padding: 18px 0;
  color: var(--color-dark);
  font-size: 1.1rem;
}

/* Main Content */
main {
  padding-top: 70px;
}

/* Hero Section */
.hero {
  padding: 60px 20px 80px;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  text-align: center;
}

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

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  color: var(--color-primary);
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
}

.hero-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background: #c49563;
  color: var(--color-white);
}

/* Sections */
.section {
  padding: 60px 20px;
}

.section-alt {
  background: var(--color-light);
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-header p {
  color: var(--color-gray);
}

/* Cards */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

.card-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 15px;
}

/* Service Cards */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card-header {
  background: var(--color-primary);
  padding: 25px;
  color: var(--color-white);
}

.service-card-header h3 {
  color: var(--color-white);
  margin-bottom: 0;
}

.service-card-body {
  padding: 25px;
}

.service-card-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--color-gray-light);
}

.service-card-price .amount {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.service-card-price .label {
  color: var(--color-gray);
  font-size: 0.9rem;
}

/* Feature Blocks */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--color-secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-content h3 {
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Alternating Content Blocks */
.content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0;
}

.content-block-text {
  order: 2;
}

.content-block-visual {
  order: 1;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.content-block-visual svg {
  width: 120px;
  height: 120px;
}

/* Statistics */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 140px;
  text-align: center;
  padding: 25px 15px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.section-dark .stat-number {
  color: var(--color-white);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-gray);
}

.section-dark .stat-label {
  color: var(--color-secondary);
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-secondary);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 20px;
  padding-top: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar svg {
  width: 25px;
  height: 25px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-gray);
}

/* Large Quote Section */
.quote-section {
  padding: 80px 20px;
  background: var(--color-primary);
  text-align: center;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto 20px;
  font-style: italic;
}

.quote-author {
  color: var(--color-secondary);
  font-size: 1rem;
}

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

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 25px 20px;
  color: var(--color-gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Process Steps */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.process-content h3 {
  margin-bottom: 8px;
}

.process-content p {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Industries */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.industry-tag {
  background: var(--color-white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  color: var(--color-dark);
  box-shadow: var(--shadow);
}

/* Trust Indicators */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-item svg {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
}

.trust-item span {
  font-size: 0.95rem;
  color: var(--color-dark);
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--color-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Highlighted Panel */
.highlight-panel {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--color-white);
}

.highlight-panel h3 {
  color: var(--color-white);
}

/* Comparison Section */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}

.comparison-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 500;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--color-light);
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.contact-details h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-details p {
  color: var(--color-gray);
  margin-bottom: 0;
}

.contact-details a {
  color: var(--color-primary);
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-item svg {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-accent);
}

.value-item h4 {
  margin-bottom: 5px;
}

.value-item p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-member {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--color-secondary);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 50px;
  height: 50px;
}

.team-member h3 {
  margin-bottom: 5px;
}

.team-role {
  color: var(--color-accent);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.team-member p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-secondary);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.timeline-item h4 {
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 15px;
  display: inline-block;
}

.footer-brand p {
  color: #999;
  font-size: 0.95rem;
}

.footer-nav h4 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #999;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.footer-legal a {
  color: #666;
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: var(--color-white);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition);
}

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

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.cookie-banner a {
  color: var(--color-accent);
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background: var(--color-secondary);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid #666;
}

.cookie-btn-decline:hover {
  border-color: var(--color-white);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.cookie-btn-settings:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 25px;
  border-bottom: 1px solid var(--color-gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
  padding: 5px;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: var(--color-dark);
}

.cookie-modal-body {
  padding: 25px;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-light);
}

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

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

.cookie-category h4 {
  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: var(--color-gray-light);
  border-radius: 26px;
  transition: var(--transition);
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-primary);
}

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

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

.cookie-category p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

.cookie-modal-footer {
  padding: 25px;
  border-top: 1px solid var(--color-gray-light);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-modal-footer .btn {
  flex: 1;
  min-width: 120px;
}

/* Page Header */
.page-header {
  padding: 60px 20px;
  background: var(--color-light);
  text-align: center;
}

.page-header h1 {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.page-header p {
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Legal Pages */
.legal-content {
  padding: 60px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 10px;
  color: var(--color-gray);
}

.legal-content p {
  color: var(--color-gray);
}

.legal-content strong {
  color: var(--color-dark);
}

.legal-meta {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--color-gray-light);
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* Thank You Page */
.thank-you {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}

.thank-you h1 {
  color: var(--color-primary);
}

.thank-you p {
  color: var(--color-gray);
  max-width: 500px;
  margin-bottom: 30px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Desktop Styles */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }

  .header-inner {
    padding: 20px 40px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: block;
  }

  .nav-mobile {
    display: none;
  }

  .hero {
    padding: 100px 40px 120px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-icon {
    width: 100px;
    height: 100px;
  }

  .section {
    padding: 100px 40px;
  }

  .container {
    padding: 0 40px;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 calc(50% - 15px);
  }

  .card-grid-3 .card {
    flex: 1 1 calc(33.333% - 20px);
  }

  .testimonial-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial-grid .testimonial {
    flex: 1 1 calc(50% - 15px);
  }

  .content-block {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .content-block-text {
    flex: 1;
    order: 1;
  }

  .content-block-visual {
    flex: 1;
    order: 2;
    min-height: 350px;
  }

  .content-block.reverse .content-block-text {
    order: 2;
  }

  .content-block.reverse .content-block-visual {
    order: 1;
  }

  .quote-text {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .process-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 calc(50% - 20px);
  }

  .team-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .team-member {
    flex: 1 1 calc(33.333% - 20px);
  }

  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-item {
    flex: 1 1 calc(50% - 15px);
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-item {
    flex: 1 1 calc(50% - 15px);
  }

  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-brand {
    flex: 2;
  }

  .footer-nav {
    flex: 1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner p {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .card-grid .card {
    flex: 1 1 calc(33.333% - 20px);
  }

  .testimonial-grid .testimonial {
    flex: 1 1 calc(33.333% - 20px);
  }

  .process-step {
    flex: 1 1 calc(25% - 25px);
  }

  .value-item {
    flex: 1 1 calc(33.333% - 15px);
  }
}
