/* 
 * Regulaciones Petroleras Mx - Estilos principales
 * Tema: Marco regulatorio de la industria petrolera en México
 * Diseño: Glassmorphism con layout Broken-grid
 */

/*---------------------------------
  Variables Globales
----------------------------------*/
:root {
  /* Colores principales */
  --color-dark-blue: #1a2c42;
  --color-petroleum: #0d4b6a;
  --color-gold: #c6a45d;
  
  /* Colores secundarios */
  --color-dark-green: #1e3c35;
  --color-orange: #e67e22;
  
  /* Colores de fondo */
  --color-black: #121212;
  --color-dark-gray: #1e1e1e;
  --color-mid-gray: #2d2d2d;
  
  /* Acentos */
  --color-mexican-red: #bd2031;
  --color-mexican-green: #006341;
  
  /* Efectos Glassmorphism */
  --glass-white: rgba(255, 255, 255, 0.1);
  --glass-black: rgba(0, 0, 0, 0.6);
  --glass-blue: rgba(13, 75, 106, 0.5);
  
  /* Tipografía */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Bordes y sombras */
  --border-radius: 12px;
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --glass-border: 1px solid rgba(255, 255, 255, 0.18);
  
  /* Animación */
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: var(--color-black);
  background-image: 
    radial-gradient(circle at 30% 10%, rgba(13, 75, 106, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(30, 60, 53, 0.2) 0%, transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0.5em 0;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 0.8em;
}

h2 {
  font-size: 2.5rem;
  color: var(--color-gold);
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.2em;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

a:hover {
  color: #d8b87d;
  text-decoration: underline;
}

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

ul {
  padding-left: 1.5em;
}

/* Contenedor principal */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

/*---------------------------------
  Efectos Glassmorphism
----------------------------------*/
.glass-card {
  background: var(--glass-black);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: var(--glass-border);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.glass-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.glass-header:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-gold);
  margin: 1rem auto;
}

.glass-header h2 {
  margin-bottom: 0.3rem;
}

.glass-header p {
  color: #aaa;
  font-size: 1.1rem;
}

/*---------------------------------
  Header y Navegación
----------------------------------*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
  background-color: inherit;
  box-shadow: none;
  display: flex;
  justify-content: end;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo-container img {
  height: 50px;
  width: auto;
}

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

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 1.2rem;
}

.nav-links li a {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-gold);
  transition: width var(--transition-speed) ease;
}

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

.nav-links li.active a {
  color: var(--color-gold);
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}

.mobile-menu {
  display: none;
  background: var(--color-dark-gray);
  padding: 1rem;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-links li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links li a {
  color: #fff;
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav-links li.active a {
  color: var(--color-gold);
}

/*---------------------------------
  Hero Section
----------------------------------*/
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  margin-bottom: 4rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ddd;
}

.hero-btn {
  background-color: var(--color-gold);
  color: var(--color-dark-blue);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-speed) ease;
  border: 2px solid var(--color-gold);
}

.hero-btn:hover {
  background-color: transparent;
  color: var(--color-gold);
  text-decoration: none;
}

/*---------------------------------
  Main Content Sections
----------------------------------*/
.main-content {
  padding: 2rem 0 4rem;
}

/* Page Banners */
.page-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 1.3rem;
  color: #ddd;
}

/* Page Title (for legal pages) */
.page-title {
  text-align: center;
  padding: 4rem 0 2rem;
}

.page-title h1 {
  margin-bottom: 0.5rem;
}

.page-title p {
  color: #aaa;
}

/*---------------------------------
  Broken Grid Layout
----------------------------------*/
.broken-grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.broken-grid .col {
  position: relative;
}

.broken-grid-reverse {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin-bottom: 4rem;
}

.iti {
  width: 100%;
}

@media (min-width: 768px) {
  .broken-grid .col:first-child {
    transform: translateY(-30px);
  }
  
  .broken-grid .col:last-child {
    transform: translateY(30px);
  }
  
  .broken-grid-reverse .col:first-child {
    transform: translateY(30px);
  }
  
  .broken-grid-reverse .col:last-child {
    transform: translateY(-30px);
  }
}

/*---------------------------------
  Intro Section
----------------------------------*/
.intro-section {
  padding: 2rem 0 4rem;
}

.intro-content {
  padding: 2.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-list li i {
  color: var(--color-gold);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.parallax-container {
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

/*---------------------------------
  Normativa Section
----------------------------------*/
.normativa-section {
  padding: 4rem 0;
}

.normativa-content {
  padding: 2.5rem;
}

.regulation-list {
  margin-top: 2rem;
}

.regulation-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.regulation-item i {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.regulation-item h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #fff;
}

.normativa-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/*---------------------------------
  Reguladores Section
----------------------------------*/
.reguladores-section {
  padding: 4rem 0;
}

.reguladores-content h3 {
  margin-bottom: 1.5rem;
}

.entity-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-speed) ease, background var(--transition-speed) ease;
}

.entity-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.entity-card h4 {
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.entity-card h4 i {
  margin-right: 0.8rem;
}

.map-container {
  position: relative;
}

.mexico-map-overlay {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.mexico-map-overlay img {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
}

.map-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 1.5rem;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.map-overlay-text h4 {
  margin-top: 0;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.map-overlay-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.map-overlay-text ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.map-overlay-text ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/*---------------------------------
  Licencias Section
----------------------------------*/
.licencias-section {
  padding: 4rem 0;
}

.licencias-content h3 {
  margin-bottom: 1.5rem;
}

.accordion-container {
  margin-top: 2rem;
}

.accordion {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-speed) ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.1);
}

.accordion-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.accordion-header i {
  color: var(--color-gold);
  transition: transform var(--transition-speed) ease;
}

.accordion.active .accordion-header i {
  transform: rotate(45deg);
}

.accordion-content {
  background: rgba(0, 0, 0, 0.3);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.accordion.active .accordion-content {
  padding: 1.5rem;
  max-height: 500px;
}

.licencias-image-container img {
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/*---------------------------------
  Actualizaciones Section
----------------------------------*/
.actualizaciones-section {
  padding: 4rem 0;
}

.carousel {
  margin-bottom: 3rem;
}

.carousel-cell {
  width: 350px;
  margin-right: 25px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.update-card {
  display: flex;
  height: 100%;
}

.update-date {
  background: var(--color-petroleum);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  text-align: center;
}

.update-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.update-date .month,
.update-date .year {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.update-content {
  padding: 1.5rem;
  flex: 1;
}

.update-content h3 {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

/*---------------------------------
  Beneficios Section
----------------------------------*/
.beneficios-section {
  padding: 4rem 0;
}

.beneficios-content h3 {
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  margin-bottom: 2rem;
}

.benefit-icon {
  background: var(--color-dark-blue);
  color: var(--color-gold);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.beneficios-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/*---------------------------------
  Contacto Section
----------------------------------*/
.contacto-section {
  padding: 4rem 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.input-field {
  margin-bottom: 1.5rem;
}

.input-field input,
.input-field textarea {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  border-radius: 4px 4px 0 0;
  padding: 0 1rem !important;
}

.input-field input:focus,
.input-field textarea:focus {
  border-bottom: 1px solid var(--color-gold) !important;
  box-shadow: 0 1px 0 0 var(--color-gold) !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
}

.input-field label {
  color: #aaa !important;
}

.input-field input:focus + label,
.input-field textarea:focus + label {
  color: var(--color-gold) !important;
}

.input-field .prefix {
  color: var(--color-gold);
}

.input-field .prefix.active {
  color: var(--color-gold);
}

.form-privacy {
  margin-bottom: 2rem;
}

.form-privacy [type="checkbox"]+span:not(.lever) {
  color: #aaa;
}

.form-privacy a {
  color: var(--color-gold);
  text-decoration: underline;
}

.form-submit-btn {
  background-color: var(--color-gold);
  color: var(--color-dark-blue);
  padding: 0 2rem;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
}

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

/*---------------------------------
  Historia Section (Panorama)
----------------------------------*/
.historia-section {
  padding: 4rem 0;
}

.timeline {
  position: relative;
  margin: 2rem 0;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--color-gold);
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 2.5rem;
}

.timeline-dot {
  position: absolute;
  left: 1px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-gold);
  z-index: 1;
}

.timeline-date {
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.timeline-content h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.historia-image {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
}

.historia-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.image-caption p {
  margin: 0;
  font-style: italic;
  font-size: 0.9rem;
}

.historia-stats {
  padding: 1.5rem;
}

.historia-stats h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.stats-list {
  list-style: none;
  padding: 0;
}

.stats-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-right: 0.5rem;
}

/*---------------------------------
  Estructura Section (Panorama)
----------------------------------*/
.estructura-section {
  padding: 4rem 0;
}

.level-container {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.level-header {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
}

.level-header h4 {
  margin: 0;
  color: #fff;
}

.level-header i {
  margin-right: 1rem;
  font-size: 1.2rem;
}

.level-header.policy {
  background: var(--color-petroleum);
}

.level-header.regulatory {
  background: var(--color-dark-green);
}

.level-header.operational {
  background: var(--color-mexican-red);
}

.level-content {
  padding: 1.5rem;
}

.level-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.level-content ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.level-content ul li:last-child {
  border-bottom: none;
}

.estructura-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/*---------------------------------
  Leyes Section (Panorama)
----------------------------------*/
.leyes-section {
  padding: 4rem 0;
}

.leyes-tabs {
  margin-bottom: 0;
  overflow: visible;
}

.tabs {
  background: transparent;
  display: flex;
  flex-wrap: wrap;
}

.tabs .tab a {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-speed) ease;
  padding: 0 20px;
  border-radius: 8px 8px 0 0;
}

.tabs .tab a:hover,
.tabs .tab a.active {
  color: var(--color-gold);
  background: rgba(198, 164, 93, 0.1);
}

.tabs .indicator {
  background-color: var(--color-gold);
}

.tab-content {
  display: none;
  margin-top: -1px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.tab-content.active {
  display: block;
}

.tab-inner {
  padding: 2rem;
}

.law-article {
  display: flex;
  margin-bottom: 2rem;
}

.article-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-right: 1.5rem;
  line-height: 1;
  min-width: 60px;
  text-align: center;
}

.article-content p {
  margin-bottom: 1rem;
}

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

.aspect-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform var(--transition-speed) ease;
}

.aspect-item:hover {
  transform: translateY(-5px);
}

.aspect-item i {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.aspect-item h5 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: #fff;
}

.fiscal-elements {
  margin-top: 2rem;
}

.fiscal-item {
  display: flex;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
}

.fiscal-icon {
  width: 50px;
  height: 50px;
  background: var(--color-petroleum);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.fiscal-content h5 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.environmental-laws {
  margin-top: 2rem;
}

.env-law-item {
  margin-bottom: 2rem;
}

.env-law-item h4 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.env-law-item h4 i {
  margin-right: 0.8rem;
}

.env-law-powers {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.env-law-powers h5 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.env-note {
  background: rgba(198, 164, 93, 0.1);
  border-left: 3px solid var(--color-gold);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 8px 8px 0;
}

/*---------------------------------
  Tendencias Section (Panorama)
----------------------------------*/
.tendencias-section {
  padding: 4rem 0;
}

.challenges-container {
  margin-top: 1.5rem;
}

.challenge-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.challenge-icon {
  width: 50px;
  height: 50px;
  background: var(--color-dark-blue);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.challenge-content h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.tendencias-image {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.tendencias-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.tendencias-trends {
  padding: 2rem;
}

.tendencias-trends h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.trend-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.trend-icon {
  width: 40px;
  height: 40px;
  background: var(--color-petroleum);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.trend-content h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/*---------------------------------
  Comparativo Section (Panorama)
----------------------------------*/
.comparativo-section {
  padding: 4rem 0;
}

.comparativo-intro {
  margin-bottom: 2rem;
}

.comparison-table-container {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th {
  background: var(--color-petroleum);
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-weight: 500;
}

.comparison-table th:first-child {
  border-top-left-radius: 8px;
}

.comparison-table th:last-child {
  border-top-right-radius: 8px;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.comparison-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-analysis {
  margin-top: 2rem;
}

.comparison-analysis h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.analysis-points {
  list-style: none;
  padding: 0;
}

.analysis-points li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.analysis-points li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

/*---------------------------------
  Licenciamiento Section (Enfoques)
----------------------------------*/
.licenciamiento-section {
  padding: 4rem 0;
}

.process-flow {
  margin-top: 2rem;
}

.process-step {
  display: flex;
  margin-bottom: 2rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  color: var(--color-dark-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h4 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.technical-requirements {
  margin-bottom: 2rem;
}

.technical-requirements h4 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
  text-align: center;
}

.req-container {
  display: grid;
  gap: 1.5rem;
}

.req-item {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 8px;
  transition: transform var(--transition-speed) ease;
}

.req-item:hover {
  transform: translateY(-5px);
}

.req-icon {
  width: 40px;
  height: 40px;
  background: var(--color-petroleum);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.req-content h5 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-graphic {
  padding: 2rem;
}

.timeline-graphic h4 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
  text-align: center;
}

.timeline-bars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-bar {
  display: flex;
  align-items: center;
}

.timeline-label {
  min-width: 120px;
  margin-right: 1rem;
  font-weight: 500;
}

.timeline-duration {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  height: 30px;
  border-radius: 15px;
  overflow: hidden;
}

.duration-bar {
  height: 100%;
  background: linear-gradient(to right, var(--color-petroleum), var(--color-gold));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark-blue);
}

/*---------------------------------
  Estandares Section (Enfoques)
----------------------------------*/
.estandares-section {
  padding: 4rem 0;
}

.standards-categories {
  margin-top: 2rem;
}

.standard-category {
  margin-bottom: 2.5rem;
}

.standard-category h4 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.standard-category h4 i {
  margin-right: 0.8rem;
}

.standards-list {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
}

.standard-item {
  margin-bottom: 1.2rem;
}

.standard-item:last-child {
  margin-bottom: 0;
}

.standard-code {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.standards-notes {
  background: rgba(198, 164, 93, 0.1);
  border-left: 3px solid var(--color-gold);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 8px 8px 0;
}

/*---------------------------------
  Supervision Section (Enfoques)
----------------------------------*/
.supervision-section {
  padding: 4rem 0;
}

.control-mechanisms {
  margin-top: 1.5rem;
}

.control-item {
  display: flex;
  margin-bottom: 2rem;
}

.control-icon {
  width: 50px;
  height: 50px;
  background: var(--color-dark-blue);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.control-content h4 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.tool-card {
  margin-bottom: 2rem;
}

.tool-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tool-header i {
  font-size: 2rem;
  color: var(--color-gold);
  margin-right: 1rem;
}

.tool-header h4 {
  margin: 0;
}

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

.tool-features li {
  margin-bottom: 1rem;
}

.feature-name {
  color: var(--color-gold);
  font-weight: 500;
}

.compliance-chart h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.sanctions-list {
  margin-top: 1.5rem;
}

.sanction-item {
  display: flex;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.sanction-level {
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-align: center;
}

.sanction-level.minor {
  background: var(--color-dark-green);
}

.sanction-level.moderate {
  background: var(--color-gold);
  color: var(--color-dark-blue);
}

.sanction-level.severe {
  background: var(--color-orange);
}

.sanction-level.critical {
  background: var(--color-mexican-red);
}

.sanction-content {
  padding: 1.5rem;
}

/*---------------------------------
  Practicas Section (Enfoques)
----------------------------------*/
.practicas-section {
  padding: 4rem 0;
}

.practice-card {
  display: flex;
  height: 100%;
  padding: 1.5rem;
}

.practice-icon {
  width: 60px;
  height: 60px;
  background: var(--color-petroleum);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.practice-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.practice-origin {
  margin-top: 1rem;
  font-style: italic;
  color: #aaa;
}

.practice-origin span {
  color: var(--color-gold);
  font-weight: 500;
}

/*---------------------------------
  Desafios Section (Enfoques)
----------------------------------*/
.desafios-section {
  padding: 4rem 0;
}

.challenge-solution-item {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.challenge-solution-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.challenge-solution-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.challenge-solution-header i {
  color: var(--color-gold);
  transition: transform var(--transition-speed) ease;
}

.challenge-solution-item.active .challenge-solution-header i {
  transform: rotate(45deg);
}

.challenge-solution-content {
  display: none;
  padding: 0 1.5rem;
}

.challenge-solution-item.active .challenge-solution-content {
  display: block;
  padding: 1.5rem;
}

.challenge-part {
  margin-bottom: 1.5rem;
}

.challenge-part h5 {
  color: var(--color-mexican-red);
  margin-bottom: 0.8rem;
}

.solution-part h5 {
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.challenge-part h5 i,
.solution-part h5 i {
  margin-right: 0.8rem;
}

/*---------------------------------
  Casos Section (Enfoques)
----------------------------------*/
.casos-section {
  padding: 4rem 0;
}

.casos-container {
  padding: 0;
  overflow: hidden;
}

.tabs-container {
  padding: 0;
}

.case-tabs {
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-tabs .tab a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-speed) ease;
  padding: 0 20px;
}

.case-tabs .tab a:hover,
.case-tabs .tab a.active {
  color: var(--color-gold);
  background: rgba(198, 164, 93, 0.1);
}

.case-tabs .indicator {
  background-color: var(--color-gold);
}

.case-content {
  display: none;
  padding: 2rem;
}

.case-content.active {
  display: block;
}

.case-header {
  margin-bottom: 2rem;
}

.case-header h3 {
  color: var(--color-gold);
}

.case-details {
  margin-top: 2rem;
}

.case-feature {
  margin-bottom: 2rem;
}

.case-feature h4 {
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.case-feature ul {
  list-style: none;
  padding: 0;
}

.case-feature ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.case-feature ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/*---------------------------------
  Contact Page Styles
----------------------------------*/
.contact-banner {
  height: 300px;
  background: linear-gradient(to right, var(--color-petroleum), var(--color-dark-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 4rem;
}

.contact-banner-content h1 {
  margin-bottom: 0.5rem;
}

.contact-info-section {
  padding-bottom: 4rem;
}

.contact-details h2 {
  margin-bottom: 1.5rem;
}

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

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

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-petroleum);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-text h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.contact-hours {
  font-style: italic;
  color: #aaa;
  margin-top: 0.3rem;
}

.response-time {
  background: rgba(198, 164, 93, 0.1);
  border-left: 3px solid var(--color-gold);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.response-time h3 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.response-time h3 i {
  margin-right: 0.8rem;
  color: var(--color-gold);
}

.map-container h2 {
  margin-bottom: 1.5rem;
}

.map-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.directions h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.transport-options {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.transport-options li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.transport-options li i {
  color: var(--color-gold);
  margin-right: 0.8rem;
}

.contact-form-section {
  padding: 4rem 0;
}

.select-wrapper input.select-dropdown {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.select-wrapper .caret {
  fill: var(--color-gold);
}

.dropdown-content li > a, .dropdown-content li > span {
  color: var(--color-dark-blue);
}

.faq-section {
  padding: 4rem 0;
}

.faq-container {
  padding: 0;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.3rem;
}

.faq-question i {
  color: var(--color-gold);
  transition: transform var(--transition-speed) ease;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

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

/*---------------------------------
  Thanks Page Styles
----------------------------------*/
.thanks-section {
  padding: 4rem 0;
}

.thanks-container {
  text-align: center;
  padding: 3rem;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--color-gold);
  margin-bottom: 2rem;
}

.thanks-message {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.thanks-details {
  margin-bottom: 3rem;
}

.thanks-details h2 {
  margin-bottom: 2rem;
}

.next-steps {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.next-steps li {
  display: flex;
  margin-bottom: 2rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  color: var(--color-dark-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  text-align: left;
}

.step-content p {
  text-align: left;
}

.thanks-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 1rem 0;
}

.contact-phone i {
  margin-right: 0.8rem;
}

.return-btn {
  background-color: var(--color-gold);
  color: var(--color-dark-blue);
  padding: 0 2rem;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
}

.return-btn:hover {
  background-color: #d8b87d;
}

.additional-content-section {
  padding: 4rem 0;
}

.related-content {
  text-align: center;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-icon {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.related-content h3 {
  margin-bottom: 1rem;
}

.related-content p {
  margin-bottom: 1.5rem;
}

.related-link {
  margin-top: auto;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.related-link i {
  margin-left: 0.5rem;
  transition: transform var(--transition-speed) ease;
}

.related-link:hover i {
  transform: translateX(5px);
}

/*---------------------------------
  Policy Pages Styles
----------------------------------*/
.policy-toc {
  position: sticky;
  top: 100px;
}

.policy-toc h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.toc-list {
  list-style: none;
  padding: 0;
}

.toc-list li {
  margin-bottom: 0.8rem;
}

.toc-list li a {
  color: #fff;
  transition: color var(--transition-speed) ease;
}

.toc-list li a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

.policy-content section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.policy-content h2 {
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(198, 164, 93, 0.3);
  padding-bottom: 0.8rem;
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.definitions-list {
  list-style: none;
  padding: 0;
}

.definitions-list li {
  margin-bottom: 1rem;
}

.data-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.data-category {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
}

.data-category h3 {
  display: flex;
  align-items: center;
  margin-top: 0;
  color: var(--color-gold);
}

.data-category h3 i {
  margin-right: 0.8rem;
}

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

.legal-basis {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
}

.legal-basis h3 {
  margin-top: 0;
  color: var(--color-gold);
}

.retention-periods {
  margin-top: 1.5rem;
}

.retention-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.retention-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

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

.right-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.right-item h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  color: var(--color-gold);
}

.right-item h3 i {
  margin-right: 0.8rem;
}

.sharing-cases {
  margin-top: 1.5rem;
}

.sharing-case {
  margin-bottom: 2rem;
}

.sharing-case h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.security-measures {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.security-measures li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.security-measures li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--color-gold);
}

.contact-details {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
}

.terms-subsection {
  margin-bottom: 2rem;
}

.terms-subsection h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.browser-settings {
  margin-top: 1.5rem;
}

.browser-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.browser-links li a {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  transition: all var(--transition-speed) ease;
}

.browser-links li a:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform: translateY(-3px);
}

.browser-links li a i {
  font-size: 1.5rem;
  margin-right: 0.8rem;
}

.opt-out-tools {
  margin-top: 2rem;
}

.impact-table {
  margin: 1.5rem 0;
}

.impact-table table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.impact-table th {
  background: var(--color-petroleum);
  color: #fff;
  padding: 1rem;
}

.impact-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.management-option {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
}

.management-option h3 {
  margin-top: 0;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.cookie-management-button {
  text-align: center;
  margin: 2rem 0;
}

.cookie-settings-btn {
  background-color: var(--color-gold);
  color: var(--color-dark-blue);
  padding: 0 2rem;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
}

.cookie-settings-btn:hover {
  background-color: #d8b87d;
}

.cookie-illustration {
  margin: 2rem 0;
}

.cookie-flow {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.flow-step {
  text-align: center;
  margin: 1rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--color-petroleum);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.flow-arrow {
  color: var(--color-gold);
  font-size: 1.5rem;
}

.cookie-types {
  margin-top: 2rem;
}

.cookie-type {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.type-header {
  background: var(--color-petroleum);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
}

.type-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 1rem;
}

.type-header h3 {
  margin: 0;
  color: #fff;
}

.type-content {
  padding: 1.5rem;
}

.cookie-examples {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.cookie-examples h4 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--color-gold);
}

.third-party-cookies {
  margin-top: 1.5rem;
}

.third-party {
  margin-bottom: 2rem;
}

.third-party h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

/*---------------------------------
  Cookie Consent Banner
----------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark-gray);
  padding: 1.5rem;
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-gold);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cookie-btn {
  background-color: var(--color-gold);
  color: var(--color-dark-blue);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

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

.cookie-btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

.cookie-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cookie-modal-content {
  background: var(--color-dark-gray);
  margin: 10% auto;
  padding: 2rem;
  border: var(--glass-border);
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  color: #aaa;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--transition-speed) ease;
}

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

.cookie-options {
  margin: 2rem 0;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-right: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

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

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--color-gold);
}

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

.cookie-option-text h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.cookie-actions {
  text-align: center;
}

/*---------------------------------
  Footer
----------------------------------*/
.site-footer {
  background: var(--color-dark-gray);
  padding: 4rem 0 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-desc {
  color: #aaa;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links li a {
  color: #fff;
  transition: color var(--transition-speed) ease;
}

.footer-links li a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
  margin-top: 3rem;
}

.copyright {
  color: #aaa;
  margin: 0;
}

.contact-info {
  color: #aaa;
  text-align: right;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: var(--color-gold);
  margin-right: 0.5rem;
}

/*---------------------------------
  Animations
----------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*---------------------------------
  Media Queries
----------------------------------*/
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .comparison-table-container {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 1rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    height: 60vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .broken-grid .col,
  .broken-grid-reverse .col {
    transform: none !important;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn,
  .cookie-btn-outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .contact-info {
    text-align: left;
    margin-top: 1.5rem;
  }
  
  .map-container {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1.1rem;
  }
  
  .glass-card {
    padding: 1.5rem;
  }
  
  .carousel-cell {
    width: 85%;
  }
  
  .cookie-modal-content {
    margin: 20% auto;
    padding: 1.5rem;
  }
}