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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-light: #ff6b6b;
  --light: #f8f9fa;
  --white: #ffffff;
  --text: #2d3436;
  --text-light: #636e72;
  --border: #dfe6e9;
  --shadow: rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
}

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

ul {
  list-style: none;
}

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

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

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  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-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

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

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

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

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 5px 10px var(--shadow);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

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

  .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(7px, -6px);
  }
}

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

/* Hero Section */
.hero {
  background: var(--gradient);
  color: var(--white);
  padding: 80px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
}

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

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-visual svg {
  max-width: 400px;
  width: 100%;
}

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

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

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

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

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

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

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

/* Sections */
section {
  padding: 60px 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(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

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

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

/* Feature Section */
.feature-section {
  background: var(--light);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-content {
  flex: 1;
  min-width: 300px;
}

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

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

.feature-list {
  margin-top: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.feature-list svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--accent);
}

.feature-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.feature-visual svg {
  max-width: 400px;
  width: 100%;
}

/* Stats Section */
.stats-section {
  background: var(--gradient);
  color: var(--white);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonial-section {
  background: var(--light);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow);
  flex: 1;
  min-width: 300px;
  max-width: 380px;
}

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

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}

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

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

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

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

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

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px var(--shadow);
  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;
  transition: background 0.3s ease;
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  fill: var(--accent);
}

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

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

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

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

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px var(--shadow);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
}

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

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}

.service-features {
  margin-bottom: 20px;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

/* Process Section */
.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* Values Section */
.values-section {
  background: var(--light);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 5px 15px var(--shadow);
}

.value-card svg {
  width: 50px;
  height: 50px;
  fill: var(--accent);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

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

/* CTA Section */
.cta-section {
  background: var(--gradient);
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-content p {
  margin-bottom: 30px;
  opacity: 0.9;
}

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

/* Contact Page */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-details {
  flex: 1;
  min-width: 300px;
}

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

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

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

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

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

.contact-map {
  flex: 1;
  min-width: 300px;
  background: var(--light);
  border-radius: 10px;
  padding: 30px;
}

/* Thank You Page */
.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

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

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

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

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

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

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

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

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

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

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

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

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

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

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  border: none;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background: var(--accent-light);
}

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

.cookie-btn-settings:hover {
  background: var(--light);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--text-light);
}

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

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

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

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

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

.modal-header h2 {
  font-size: 1.3rem;
  color: var(--primary);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 5px;
}

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

.modal-body {
  padding: 25px;
}

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

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

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

.cookie-option h3 {
  font-size: 1rem;
  color: var(--primary);
}

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

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

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

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

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

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

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

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

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

/* About Page */
.about-hero {
  background: var(--gradient);
  color: var(--white);
  padding: 80px 20px;
}

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

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border);
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow);
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

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

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

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

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

.team-avatar svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.team-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

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

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

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

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

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

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
  min-width: 280px;
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.benefit-text h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 5px;
}

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

/* Comparison Table */
.comparison-section {
  background: var(--light);
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: var(--gradient);
  color: var(--white);
}

.comparison-cell {
  flex: 1;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-cell:first-child {
  flex: 2;
  justify-content: flex-start;
}

.comparison-header .comparison-cell {
  font-weight: 600;
}

.comparison-cell svg {
  width: 20px;
  height: 20px;
}

.check-icon {
  fill: #27ae60;
}

.cross-icon {
  fill: #e74c3c;
}

/* Industry Section */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.industry-item {
  background: var(--white);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px var(--shadow);
  display: flex;
  align-items: center;
  gap: 15px;
}

.industry-item svg {
  width: 30px;
  height: 30px;
  fill: var(--accent);
}

.industry-item span {
  font-weight: 500;
  color: var(--primary);
}

/* Alternate Content */
.alt-section {
  background: var(--light);
}

.alt-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.alt-content.reverse {
  flex-direction: row-reverse;
}

.alt-text {
  flex: 1;
  min-width: 300px;
}

.alt-text h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

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

.alt-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.alt-visual svg {
  max-width: 350px;
  width: 100%;
}

/* Highlight Panel */
.highlight-panel {
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.highlight-text {
  flex: 2;
  min-width: 250px;
}

.highlight-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.highlight-text p {
  opacity: 0.9;
}

.highlight-action {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

/* Quote Section */
.quote-section {
  background: var(--light);
  padding: 80px 20px;
}

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

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
}

.quote-text::before,
.quote-text::after {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
}

.quote-text::before {
  top: -20px;
  left: -30px;
}

.quote-text::after {
  bottom: -40px;
  right: -30px;
}

.quote-author {
  color: var(--accent);
  font-weight: 600;
}

/* Working Hours */
.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 400px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.hours-day {
  font-weight: 500;
  color: var(--primary);
}

.hours-time {
  color: var(--text-light);
}

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

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

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

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

  .comparison-row {
    flex-direction: column;
  }

  .comparison-cell {
    justify-content: flex-start;
    padding: 10px 20px;
  }

  .comparison-cell:first-child {
    flex: 1;
    font-weight: 500;
    background: var(--light);
  }

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

  .quote-text::before,
  .quote-text::after {
    display: none;
  }
}
