/* ---------- Base Styles ---------- */
:root {
  --primary: #3A86FF;
  --secondary: #8338EC;
  --accent: #FF006E;
  --complementary: #FFBE0B;
  --background: #0D1B2A;
  --text-primary: #E0E1DD;
  --text-secondary: #B2B2B2;
  --gradient-primary: linear-gradient(135deg, #3A86FF, #8338EC);
  --gradient-secondary: radial-gradient(circle, #FF006E, #8338EC);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
  --spacer: clamp(1rem, 5vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Figtree', sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--accent);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--primary);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--complementary);
}

p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

button, .btn {
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: var(--shadow);
}

button:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(58, 134, 255, 0.4);
}

section {
  padding: var(--spacer) 0;
}

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

/* ---------- Utilities ---------- */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.accent-text {
  color: var(--accent);
}

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

.complementary-text {
  color: var(--complementary);
}

.badge {
  display: inline-block;
  padding: 0.25em 0.6em;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 30px;
  background: var(--accent);
  color: var(--text-primary);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.divider {
  height: 4px;
  width: 60px;
  background: var(--gradient-primary);
  margin: 2rem 0;
  border-radius: 2px;
}

.divider.center {
  margin: 2rem auto;
}

/* ---------- Header & Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.nav-link a {
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/header-bg.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

.hero-circles {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-secondary);
  opacity: 0.1;
  filter: blur(60px);
}

.circle-1 {
  width: 30vw;
  height: 30vw;
  top: -10%;
  right: -5%;
}

.circle-2 {
  width: 20vw;
  height: 20vw;
  bottom: 20%;
  right: 15%;
}

.circle-3 {
  width: 15vw;
  height: 15vw;
  top: 30%;
  left: 5%;
  background: var(--gradient-primary);
}

/* ---------- Features Section ---------- */
.features {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.feature-title {
  margin-bottom: 1rem;
}

/* ---------- About Section ---------- */
.about {
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  max-width: 600px;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--complementary);
  margin-bottom: 0.5rem;
}

.stat-text {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ---------- Educational Approach Section ---------- */
.educational-approach {
  position: relative;
}

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

.approach-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition);
  text-align: center;
}

.approach-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
}

.approach-number {
  font-size: 4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  margin-bottom: 1.5rem;
}

.approach-title {
  margin-bottom: 1rem;
}

/* ---------- Articles Section ---------- */
.articles {
  position: relative;
}

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

.article-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-10px);
}

.article-image {
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.article-card:hover .article-image img {
  transform: scale(1.1);
}

.article-content {
  padding: 1.5rem;
}

.article-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.article-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.article-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
}

.read-more:hover {
  color: var(--accent);
  gap: 0.7rem;
}

.read-more i {
  font-size: 0.8rem;
  transition: var(--transition);
}

/* ---------- Contact Section ---------- */
.contact {
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--accent);
  width: 30px;
  text-align: center;
}

.form-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

input, textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-family: 'Figtree', sans-serif;
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(to top, rgba(13, 27, 42, 1), rgba(13, 27, 42, 0.8));
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

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

.footer-logo img {
  height: 40px;
}

.footer-about {
  max-width: 300px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

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

.footer-link {
  margin-bottom: 0.8rem;
}

.footer-link a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-link a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.subscribe-form {
  display: flex;
  margin-bottom: 1.5rem;
}

.subscribe-input {
  flex-grow: 1;
  padding: 0.8rem;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.subscribe-button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-button:hover {
  background: var(--secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-link:hover {
  color: var(--primary);
}

/* ---------- Cookie Consent ---------- */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background: rgba(22, 33, 62, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cookie-text {
  margin-bottom: 1.5rem;
}

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

.cookie-button {
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.accept-all {
  background: var(--gradient-primary);
  color: white;
  border: none;
}

.accept-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(58, 134, 255, 0.3);
}

.customize {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.customize:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.reject-all {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reject-all:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  background: rgba(22, 33, 62, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  max-height: 90vh;
  overflow-y: auto;
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.close-settings {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-settings:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.toggle-container {
  position: relative;
  width: 50px;
  height: 26px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.toggle-container.active {
  background: var(--accent);
}

.toggle-handle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  transition: var(--transition);
}

.toggle-container.active .toggle-handle {
  left: 27px;
}

.toggle-container.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.settings-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.settings-button {
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.save-preferences {
  background: var(--accent);
  color: white;
  border: none;
}

.save-preferences:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 0, 110, 0.3);
}

/* ---------- Privacy & Terms Pages ---------- */
.legal-page {
  padding: 120px 0 60px;
}

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

.legal-header {
  margin-bottom: 3rem;
  text-align: center;
}

.legal-date {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section-title {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.legal-list {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-list li {
  margin-bottom: 0.5rem;
}

/* ---------- Circular Focal Points ---------- */
.circular-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 4rem 0;
}

.focal-point {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.focal-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.1;
  z-index: -1;
}

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

.orbital-points {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  animation: orbit 30s linear infinite;
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.orbital-point {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.orbital-point:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.08);
}

.orbital-point:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orbital-point:nth-child(2) {
  top: 15%;
  right: 15%;
}

.orbital-point:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orbital-point:nth-child(4) {
  top: 15%;
  left: 15%;
}

.orbital-point:nth-child(5) {
  bottom: 15%;
  right: 15%;
}

.orbital-point:nth-child(6) {
  bottom: 15%;
  left: 15%;
}

.orbital-icon {
  font-size: 2rem;
  color: var(--accent);
}

/* ---------- Animations ---------- */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.float {
  animation: float 6s ease-in-out infinite;
}

.pulse {
  animation: pulse 4s ease-in-out infinite;
}

/* ---------- Media Queries ---------- */
@media (max-width: 991px) {
  .contact-container,
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .focal-point {
    width: 250px;
    height: 250px;
  }
  
  .orbital-points {
    width: 500px;
    height: 500px;
  }
  
  .orbital-point {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .circular-container {
    flex-direction: column;
  }
  
  .orbital-points {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    animation: none;
  }
  
  .orbital-point {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: 120px;
  }
  
  .orbital-point:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 576px) {
  .features-grid,
  .approach-grid,
  .articles-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-button {
    width: 100%;
  }
  
  .focal-point {
    width: 200px;
    height: 200px;
  }
}

/* Intl Tel Input Styles */
.iti {
  width: 100%;
}

/* Thanks Page Styles */
.thanks-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

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

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thanks-message {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.back-home {
  margin-top: 1rem;
}

/* 404 Page Styles */
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.not-found-code {
  font-size: 8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}

.not-found-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.not-found-message {
  max-width: 600px;
  margin-bottom: 2.5rem;
}