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

:root {
  --color-primary: #1a1a2e;
  --color-secondary: #e94560;
  --color-accent: #16213e;
  --color-light: #f8f9fa;
  --color-dark: #0f0f23;
  --color-text: #2d2d44;
  --color-text-light: #6c6c8a;
  --color-white: #ffffff;
  --color-border: #e1e1e8;
  --color-success: #28a745;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
}

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

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

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

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

/* Header */
.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

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

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

.nav {
  display: none;
}

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

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

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

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

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

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

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.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);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-link {
  display: block;
  color: var(--color-text);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: 60px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 600px;
}

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

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Cards */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  flex: 1 1 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

.card-icon svg {
  width: 100%;
  height: 100%;
}

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

.card p {
  color: var(--color-text-light);
}

/* Service Cards */
.service-card {
  flex: 1 1 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
}

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

.service-card p {
  color: var(--color-text-light);
  margin-bottom: 15px;
}

.service-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-secondary);
}

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

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

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

.stat-label {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.testimonial {
  flex: 1 1 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--color-secondary);
  opacity: 0.2;
  position: absolute;
  top: 15px;
  left: 25px;
}

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

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

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

.testimonial-info h4 {
  color: var(--color-primary);
  font-size: 1rem;
}

.testimonial-info span {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

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

.faq-answer {
  display: none;
  padding: 0 25px 20px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

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

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

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

.step-content h3 {
  color: var(--color-primary);
  margin-bottom: 8px;
}

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

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.feature-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

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

.feature-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Alternating Content */
.content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.content-block:last-child {
  margin-bottom: 0;
}

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

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

.content-visual {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-visual svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  flex: 1 1 100%;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 25px;
}

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

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

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

.contact-details p {
  color: var(--color-text-light);
}

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

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
}

.footer-logo svg {
  width: 35px;
  height: 35px;
}

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

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

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

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

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-secondary);
}

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

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

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

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

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

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

.cookie-btn-reject {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

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

.cookie-modal-header h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

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

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

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}

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

.cookie-option-info h4 {
  color: var(--color-primary);
  margin-bottom: 5px;
  font-size: 1rem;
}

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

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

.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: var(--color-border);
  border-radius: 26px;
  transition: var(--transition);
}

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

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

.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-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

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

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

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

/* Legal Pages */
.legal-content {
  padding: 50px 0;
}

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

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

.legal-content p {
  color: var(--color-text);
  margin-bottom: 15px;
  line-height: 1.8;
}

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

.legal-content li {
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  padding: 80px 0;
}

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

.thank-you-icon svg {
  width: 100%;
  height: 100%;
}

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

.thank-you-content p {
  color: var(--color-text-light);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.value-item {
  flex: 1 1 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 35px;
  height: 35px;
}

.value-item h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.value-item p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.team-member {
  flex: 1 1 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
}

.team-member h3 {
  color: var(--color-primary);
  margin-bottom: 5px;
}

.team-member .role {
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

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

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ff6b81 100%);
  color: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
}

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

.highlight-box p {
  opacity: 0.95;
  margin-bottom: 25px;
}

/* Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Milestones */
.milestones-list {
  position: relative;
  padding-left: 30px;
}

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

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

.milestone-item:last-child {
  padding-bottom: 0;
}

.milestone-dot {
  position: absolute;
  left: -26px;
  top: 5px;
  width: 18px;
  height: 18px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.milestone-year {
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 5px;
}

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

.milestone-item p {
  color: var(--color-text-light);
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.benefit-check {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background-color: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-check svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

.benefit-item span {
  color: var(--color-text);
  font-weight: 500;
}

/* Industry insights */
.insight-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 25px;
}

.insight-card:last-child {
  margin-bottom: 0;
}

.insight-card h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.insight-card h3 svg {
  width: 24px;
  height: 24px;
}

.insight-card p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Media Queries */
@media (min-width: 576px) {
  .card {
    flex: 1 1 calc(50% - 15px);
  }

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

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

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

  .team-member {
    flex: 1 1 calc(50% - 15px);
  }

  .footer-col {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 0;
  }

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

  .section {
    padding: 80px 0;
  }

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

  .nav {
    display: block;
  }

  .mobile-toggle {
    display: none;
  }

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

  .content-block:nth-child(even) {
    flex-direction: row-reverse;
  }

  .content-text,
  .content-visual {
    flex: 1;
  }

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

  .cookie-content {
    flex-direction: row;
    align-items: center;
  }

  .cookie-text {
    flex: 1;
  }

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

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

@media (min-width: 992px) {
  .hero h1 {
    font-size: 3.2rem;
  }

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

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

  .value-item {
    flex: 1 1 calc(25% - 20px);
  }

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

  .footer-col {
    flex: 1 1 calc(25% - 30px);
  }

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