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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background-color: #ffffff;
}

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

.section {
  padding: 40px 0;
  background: #ffffff;
}

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

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(234, 179, 8, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.section-icon:hover {
  background: rgba(234, 179, 8, 0.2);
  transform: scale(1.05);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.in-hero {
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

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

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

.nav-brand h1 {
  color: #eab308;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

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

.nav-link {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #eab308;
  background-color: rgba(234, 179, 8, 0.1);
  font-weight: 600;
}

.nav-link.active {
  color: #eab308;
  background-color: rgba(234, 179, 8, 0.15);
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: #eab308;
  border-radius: 1px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #0f172a;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: url(images/avance-hero.jpg) center/cover no-repeat;
  padding: 220px 0 140px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ffffff;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  background-color: #eab308;
  color: #ffffff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background-color: #d97706;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(234, 179, 8, 0.1);
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  transition: all 0.3s ease;
}

.block-icon:hover {
  background: rgba(234, 179, 8, 0.2);
  transform: scale(1.1);
}

.feature-card h3 {
  color: #eab308;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Steps Container */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  background-color: #eab308;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  margin-bottom: 1rem;
  color: #0f172a;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.skill-card {
  background: white;
  border: 1px solid #f1f5f9;
  padding: 2.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.skill-card:hover {
  border-color: #eab308;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(234, 179, 8, 0.12);
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #eab308, #fbbf24);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #eab308, #fbbf24);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.2);
}

.skill-card h3 {
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.skill-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Control Features */
.control-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.control-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.control-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(234, 179, 8, 0.12);
  border-color: #eab308;
}

.control-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #eab308, #fbbf24);
}

.control-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #eab308, #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.control-card h3 {
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.control-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background-color: #ffffff;
  border: 2px solid #f3f4f6;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-card.featured {
  border-color: #eab308;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.price {
  font-size: 2.5rem;
  color: #eab308;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.pricing-btn {
  background-color: #eab308;
  color: #ffffff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.pricing-btn:hover {
  background-color: #d97706;
}

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

.testimonial-card {
  background-color: #f3f4f6;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.testimonial-author {
  margin-top: 1rem;
}

.testimonial-author strong {
  color: #eab308;
  display: block;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(234, 179, 8, 0.15);
  border-color: #eab308;
}

.team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eab308, #fbbf24);
  margin: 0 auto 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.2);
  transition: all 0.3s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(234, 179, 8, 0.3);
}

.team-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  z-index: 1;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}

.team-card h3 {
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.team-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.team-card .team-role {
  color: #eab308;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Registration Form */
.registration-form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: #f3f4f6;
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

.submit-btn {
  background-color: #eab308;
  color: #ffffff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #d97706;
}

.submit-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #eab308;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
  margin: 0;
  color: #0f172a;
  line-height: 1.6;
}

/* Contact */
.contact-info {
  text-align: center;
  margin-top: 1rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: #eab308;
  margin-bottom: 1rem;
}

.contact-item a {
  color: #0f172a;
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-item a:hover {
  color: #eab308;
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 0 20px;
}

.footer-section h3 {
  color: #eab308;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #eab308;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

/* Methods Section Styles */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.method-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.method-icon {
  margin-bottom: 1rem;
}

.method-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.method-card p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Gallery Section Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-content {
  padding: 1.5rem;
}

.gallery-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.gallery-content p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Resources Section Styles */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resource-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.resource-icon {
  margin-bottom: 1rem;
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.resource-card p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.resource-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.resource-btn:hover {
  background: #d97706;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 800px;
  width: calc(100% - 40px);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
}

@media (max-width: 840px) {
  .cookie-popup {
    max-width: calc(100% - 40px);
    right: 20px;
    left: 20px;
  }
}

.cookie-popup.show {
  display: block;
  transform: translateX(0);
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-link {
  color: #eab308;
  text-decoration: none;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-accept {
  background-color: #eab308;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

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

/* Section Titles */
.section h2 {
  font-size: 2.5rem;
  margin: 0;
  color: #1f2937;
  text-align: center;
}

.section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 1006px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
  }

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

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

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

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }

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

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .features-grid,
  .steps-container,
  .skills-grid,
  .control-features,
  .pricing-grid,
  .testimonials-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

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

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-accept {
    width: 100%;
  }

  .navbar {
    padding: 1rem;
  }

  .container {
    padding: 0 15px;
  }

  /* FAQ responsive */
  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .faq-item.active .faq-answer {
    padding: 1rem;
  }

  /* New sections responsive styles */
  .methods-grid,
  .gallery-grid,
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .method-card,
  .resource-card {
    padding: 1.5rem;
  }

  .gallery-item img {
    height: 180px;
  }

  .gallery-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .feature-card,
  .skill-card,
  .control-card,
  .pricing-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .registration-form {
    padding: 1.5rem;
    margin: 1rem auto;
  }
}

/* Enhanced styles for service pages */
.policy-content,
.terms-content,
.cookie-content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  line-height: 1.8;
}

.policy-content h1,
.terms-content h1,
.cookie-content-page h1 {
  color: #eab308;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.5rem;
  position: relative;
}

.policy-content h1::before,
.terms-content h1::before,
.cookie-content-page h1::before {
  content: "🛡️";
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.terms-content h1::before {
  content: "📋";
}

.cookie-content-page h1::before {
  content: "🍪";
}

.policy-content h2,
.terms-content h2,
.cookie-content-page h2 {
  color: #0f172a;
  margin: 3rem 0 1.5rem;
  font-size: 1.6rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-left: 4px solid #eab308;
  border-radius: 8px;
  position: relative;
}

.policy-content h2::before,
.terms-content h2::before,
.cookie-content-page h2::before {
  content: "▶";
  color: #eab308;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.policy-content h3,
.terms-content h3,
.cookie-content-page h3 {
  color: #eab308;
  margin: 2rem 0 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.policy-content h3::before,
.terms-content h3::before,
.cookie-content-page h3::before {
  content: "🔸";
  margin-right: 0.5rem;
}

.content-section {
  background: #ffffff;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.highlight-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #eab308;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
}

.highlight-box::before {
  content: "⚠️";
  position: absolute;
  top: -10px;
  left: 20px;
  background: #ffffff;
  padding: 0 10px;
  font-size: 1.2rem;
}

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

.info-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #eab308;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.info-card h4::before {
  content: "📌";
  margin-right: 0.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #eab308 0%, #d97706 100%);
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(234, 179, 8, 0.3);
}

.back-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(234, 179, 8, 0.4);
}

.back-link::before {
  content: "🏠";
  margin-right: 0.5rem;
}

.policy-content li,
.terms-content li,
.cookie-content-page li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.policy-content li::before,
.terms-content li::before,
.cookie-content-page li::before {
  content: "✓";
  color: #eab308;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-info {
  color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  margin: 1rem 0;
  text-align: center;
}

.contact-info h3 {
  color: #eab308;
  margin-bottom: 1rem;
}

.contact-info h3::before {
  content: "📞";
}

.last-updated {
  background: #e2e8f0;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
  font-style: italic;
  color: #64748b;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
  background: linear-gradient(135deg, #eab308 0%, #d97706 100%);
  color: #ffffff;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.cookie-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-table tr:nth-child(even) {
  background: #f8fafc;
}

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

.cookie-type-section {
  background: #ffffff;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #eab308;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
