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

:root {
  --primary: #1a3a5c;
  --secondary: #2d6a9f;
  --accent: #4a9fd4;
  --dark: #0f2439;
  --light: #f8fafc;
  --gray: #6b7c8a;
  --gray-light: #e2e8f0;
  --white: #ffffff;
  --success: #22c55e;
  --warning: #f59e0b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

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

/* Header & Navigation */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
}

.logo svg {
  width: 40px;
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

/* Hero Section */
.hero {
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.hero-stat {
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
}

.hero-stat span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--light);
  transform: translateY(-2px);
}

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

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

/* Section Styles */
section {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

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

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

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

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

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

/* Service Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 380px;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

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

.service-card .price {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 20px;
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.feature-item.reverse {
  flex-direction: column;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.feature-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--dark);
}

.feature-content li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual svg {
  width: 100%;
  max-width: 350px;
  height: auto;
}

/* Statistics */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 50px 20px;
  background: var(--primary);
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.stat-item strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-item span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 340px;
  max-width: 400px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--gray-light);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: var(--dark);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info strong {
  display: block;
  color: var(--primary);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

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

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

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

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

.faq-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

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

.faq-question:hover {
  background: var(--light);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

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

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

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  flex: 1 1 200px;
  max-width: 250px;
}

.trust-item svg {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.trust-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

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

.industry-tag {
  background: var(--light);
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}

.industry-tag:hover {
  background: var(--gray-light);
}

.industry-tag svg {
  width: 24px;
  height: 24px;
}

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

.value-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.value-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

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

/* Timeline / Milestones */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gray-light);
}

.timeline-item {
  display: flex;
  gap: 30px;
  position: relative;
}

.timeline-marker {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

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

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

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

/* Contact Page */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.contact-info {
  flex: 1 1 350px;
  max-width: 500px;
}

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 25px;
}

.contact-block {
  margin-bottom: 30px;
}

.contact-block h4 {
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-block h4 svg {
  width: 22px;
  height: 22px;
}

.contact-block p {
  color: var(--gray);
  padding-left: 32px;
}

.contact-map {
  flex: 1 1 350px;
  max-width: 500px;
  background: var(--light);
  border-radius: 12px;
  padding: 30px;
}

.contact-map h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.directions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.directions-list li {
  display: flex;
  gap: 12px;
  color: var(--dark);
}

.directions-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--secondary);
}

/* Page Header */
.page-header {
  padding: 140px 20px 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h2 {
  color: var(--primary);
  margin: 40px 0 15px;
  font-size: 1.5rem;
}

.legal-content h3 {
  color: var(--primary);
  margin: 30px 0 12px;
  font-size: 1.2rem;
}

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

.legal-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-content li {
  color: var(--gray);
  margin-bottom: 8px;
  list-style: disc;
}

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

.thank-you-content svg {
  width: 100px;
  height: 100px;
  color: var(--success);
  margin-bottom: 30px;
}

.thank-you-content h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

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

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

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

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

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: block;
}

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

.cookie-banner p {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

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

.btn-accept:hover {
  background: #1ea34d;
}

.btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-preferences {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-preferences:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

.cookie-modal-header h3 {
  color: var(--primary);
}

.cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: var(--gray);
}

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

.cookie-modal-close svg {
  width: 24px;
  height: 24px;
}

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

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

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

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

.cookie-option h4 {
  color: var(--primary);
}

.cookie-option p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gray-light);
  border-radius: 26px;
  transition: background 0.3s;
}

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

.toggle-switch input:checked + .toggle-slider {
  background: var(--secondary);
}

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

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

.cookie-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

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

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

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

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--primary);
}

/* Quote Block */
.quote-block {
  background: var(--light);
  padding: 60px 40px;
  border-left: 5px solid var(--secondary);
  margin: 40px 0;
}

.quote-block blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 20px;
}

.quote-block cite {
  color: var(--gray);
  font-style: normal;
}

/* Panel Highlight */
.highlight-panel {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 50px;
  border-radius: 16px;
  margin: 40px 0;
}

.highlight-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.highlight-panel p {
  opacity: 0.95;
}

/* Responsive */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }

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

  .hero-text {
    flex: 1;
    max-width: 550px;
  }

  .feature-item {
    flex-direction: row;
  }

  .feature-item.reverse {
    flex-direction: row-reverse;
  }

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

  .process-steps {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  section {
    padding: 60px 20px;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .page-header {
    padding: 120px 20px 50px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .stat-item strong {
    font-size: 2.2rem;
  }

  .footer-grid {
    gap: 30px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .hero-stat strong {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

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

  .testimonial-card {
    padding: 25px;
  }

  .cookie-modal-content {
    max-height: 80vh;
  }
}
