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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.875rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #6b7280;
}

a {
  color: #77bfa3;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1d4ed8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background-color: #77bfa3;
  color: white;
  border-color: #77bfa3;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  color: white;
}

.btn-secondary {
  background-color: #6b7280;
  color: white;
  border-color: #6b7280;
}

.btn-secondary:hover {
  background-color: #4b5563;
  border-color: #4b5563;
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: #77bfa3;
  border-color: #77bfa3;
}

.btn-outline:hover {
  background-color: #77bfa3;
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111827;
  color: white;
  z-index: 1000;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-text h3 {
  color: white;
  margin-bottom: 8px;
}

.cookie-text p {
  color: #d1d5db;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 8px 16px;
  font-size: 0.875rem;
}

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

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

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

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

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #374151;
}

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

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

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

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

.cookie-category-header h4 {
  margin: 0;
}

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #e5e7eb;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  padding: 1rem 0;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 500;
  color: #374151;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #77bfa3;
}

.nav-contact .phone {
  font-weight: 600;
  color: #77bfa3;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: #111827;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #6b7280;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  text-align: center;
}

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

.section:nth-child(even) {
  background-color: #f9fafb;
}

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

.section-icon {
  margin: 0 auto 20px;
  display: block;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
}

/* Company Info */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.company-item {
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.company-item h3 {
  color: #77bfa3;
  margin-bottom: 1rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit-item h3 {
  margin-bottom: 1rem;
  color: #111827;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-item {
  background-color: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #77bfa3;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  color: #77bfa3;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  color: #77bfa3;
}

.service-link:hover {
  color: #1d4ed8;
}
.newsteller__section {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
  background: linear-gradient(135deg, #77bfa3 0%, #1d4ed8 100%) !important;
}
.newsteller__section form{
  width: 50%;
  margin: 0 auto;
}

/* Achievements */
.achievements {
  background: linear-gradient(135deg, #77bfa3 0%, #1d4ed8 100%) !important;
  color: white;
}

.achievements .section-header h2,
.achievements .section-header p {
  color: white;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.achievement-item {
  text-align: center;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.achievement-label {
  font-size: 1.125rem;
  color: #e5e7eb;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-item {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #77bfa3;
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: #4b5563;
  margin: 0;
}

.testimonial-author strong {
  color: #111827;
  display: block;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 30px;
  color: #111827;
}

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

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: #111827;
}

.contact-item a {
  color: #77bfa3;
  font-weight: 500;
}

.contact-forms {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Forms */
.contact-form,
.newsletter-form {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.contact-form h3,
.newsletter-form h3 {
  margin-bottom: 20px;
  color: #111827;
}

.newsletter-form p {
  margin-bottom: 20px;
  color: #6b7280;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #77bfa3;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

.checkbox-group label a {
  color: #77bfa3;
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #111827;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-brand strong {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 8px;
  display: block;
}

.footer-brand p {
  color: #d1d5db;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

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

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

.footer-column ul li a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 30px;
  text-align: center;
  color: #9ca3af;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-bottom a {
  color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .nav .container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .company-grid,
  .benefits-grid,
  .services-grid,
  .achievements-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* About Page Styles */
.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.mission-text h3 {
  color: #77bfa3;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.mission-text h3:first-child {
  margin-top: 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.principle-item {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.principle-item:hover {
  border-color: #77bfa3;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.principle-icon {
  margin-bottom: 20px;
}

.principle-item h3 {
  color: #111827;
  margin-bottom: 1rem;
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #77bfa3;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6b7280;
  font-size: 0.875rem;
}

.team-description h3 {
  color: #77bfa3;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.team-description h3:first-child {
  margin-top: 0;
}

/* Services Page Styles */
.service-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #77bfa3;
  transform: translateY(-2px);
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #77bfa3;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: #6b7280;
  font-size: 0.875rem;
}

.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detailed {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-detailed:hover {
  border-color: #77bfa3;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 1px solid #e5e7eb;
}

.service-main-icon {
  flex-shrink: 0;
}

.service-title {
  flex: 1;
  margin-left: 20px;
}

.service-title h3 {
  margin: 0 0 8px 0;
  color: #111827;
  font-size: 1.5rem;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
}

.rating-text {
  color: #6b7280;
  font-size: 0.875rem;
}

.service-price {
  text-align: right;
  flex-shrink: 0;
}

.price-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: #77bfa3;
}

.price-note {
  font-size: 0.75rem;
  color: #6b7280;
}

.service-content {
  padding: 30px;
}

.service-description {
  margin-bottom: 30px;
}

.service-description p {
  font-size: 1.125rem;
  color: #4b5563;
}

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

.service-features h4 {
  color: #111827;
  margin-bottom: 15px;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #4b5563;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.service-advantages h4 {
  color: #111827;
  margin-bottom: 20px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #374151;
}

/* Pricing Table */
.pricing-table {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.pricing-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px 30px;
  background-color: #f9fafb;
  font-weight: 600;
  color: #111827;
  border-bottom: 2px solid #e5e7eb;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 25px 30px;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
}

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

.pricing-row.additional-services {
  background-color: #f0fdf4;
}

.pricing-service strong {
  display: block;
  margin-bottom: 4px;
  color: #111827;
}

.pricing-service span {
  color: #6b7280;
  font-size: 0.875rem;
}

.pricing-cost {
  text-align: center;
}

.price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #77bfa3;
  margin-bottom: 4px;
}

.payment-options {
  font-size: 0.75rem;
  color: #6b7280;
}

.pricing-duration {
  text-align: center;
  color: #4b5563;
  font-weight: 500;
}

.pricing-rating {
  text-align: center;
}

.pricing-rating .stars {
  display: block;
  margin-bottom: 4px;
}

.pricing-rating span {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.review-item {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #10b981;
}

.review-service {
  background-color: #ecfdf5;
  color: #065f46;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.review-rating .stars {
  color: #fbbf24;
}

.review-rating span {
  color: #6b7280;
  font-size: 0.875rem;
}

.review-content {
  margin-bottom: 20px;
}

.review-content p {
  font-style: italic;
  color: #4b5563;
  margin: 0;
}

.review-author strong {
  color: #111827;
  display: block;
  margin-bottom: 4px;
}

.review-author span {
  color: #6b7280;
  font-size: 0.875rem;
}

/* CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #77bfa3 0%, #1d4ed8 100%);
  color: white;
}

.contact-cta .section-header h2,
.contact-cta h2 {
  color: white;
}

.contact-cta .section-header p,
.contact-cta p {
  color: #e5e7eb;
}

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

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Active Navigation State */
.nav-menu a.active {
  color: #77bfa3;
  font-weight: 600;
}

@media (max-width: 768px) {
  .team-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .service-title {
    margin-left: 0;
  }

  .pricing-header,
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .pricing-service {
    order: 1;
  }

  .pricing-cost {
    order: 2;
  }

  .pricing-duration {
    order: 3;
  }

  .pricing-rating {
    order: 4;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }
    .newsteller__section form {
      width: 100%;
    }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .contact-forms {
    gap: 30px;
  }

  .contact-form,
  .newsletter-form {
    padding: 20px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .principle-item {
    padding: 20px;
  }

  .team-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-content {
    padding: 20px;
  }

  .service-header {
    padding: 20px;
  }
}

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

.legal-header {
  text-align: center;
  margin-bottom: 60px;
}

.legal-header h1 {
  color: #111827;
  margin-bottom: 1rem;
}

.legal-updated {
  color: #6b7280;
  font-style: italic;
  margin: 0;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-text h2 {
  color: #77bfa3;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

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

.legal-text h3 {
  color: #374151;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-text p {
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.legal-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.contact-info {
  background-color: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #77bfa3;
}

.contact-info a {
  color: #77bfa3;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}

/* Cookie Table Styles */
.cookie-table {
  margin: 20px 0;
  overflow-x: auto;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
  background-color: #f3f4f6;
  color: #374151;
  font-weight: 600;
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid #e5e7eb;
}

.cookie-table td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
}

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

.cookie-table tr:hover {
  background-color: #f9fafb;
}

/* Cookie Controls */
.cookie-controls {
  margin: 30px 0;
  text-align: center;
}

#open-cookie-settings {
  background-color: #77bfa3;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#open-cookie-settings:hover {
  background-color: #1d4ed8;
}

/* Thanks Page Styles */
.thanks-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 0;
}

.thanks-icon {
  margin-bottom: 30px;
}

.thanks-content h1 {
  color: #10b981;
  margin-bottom: 1.5rem;
}

.thanks-content p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Additional Info Section */
.additional-info {
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.info-item {
  text-align: center;
}

.info-item svg {
  margin-bottom: 20px;
}

.info-item h4 {
  color: #111827;
  margin-bottom: 1rem;
}

.info-item p {
  color: #6b7280;
  margin: 0;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 40px 0;
  }

  .legal-header {
    margin-bottom: 40px;
  }

  .legal-text {
    padding: 0 20px;
  }

  .legal-text h2 {
    margin-top: 2rem;
  }

  .legal-text h3 {
    margin-top: 1.5rem;
  }

  .cookie-table {
    font-size: 0.875rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px;
  }

  .thanks-content {
    padding: 60px 20px;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: center;
  }
}
