:root {
  --charcoal: #0F0F0F;
  --electric-blue: #0066FF;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --mid-gray: #E0E0E0;
  --text-gray: #333333;
  
  --shadow-sm: 0 2px 4px rgba(0, 102, 255, 0.08), 0 1px 2px rgba(15, 15, 15, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 102, 255, 0.12), 0 2px 6px rgba(15, 15, 15, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 102, 255, 0.16), 0 4px 12px rgba(15, 15, 15, 0.12);
  --shadow-xl: 0 20px 48px rgba(0, 102, 255, 0.2), 0 8px 16px rgba(15, 15, 15, 0.16);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-gray);
  background: var(--white);
  overflow-x: hidden;
}

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

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.floating-nav {
  background: var(--white);
  margin: 1.5rem 2rem 0;
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 0.6s ease forwards 0.3s;
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.logo-link:hover {
  color: var(--electric-blue);
  transform: translateX(4px);
}

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

nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--electric-blue);
  transition: var(--transition);
}

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

.nav-links a:hover {
  color: var(--electric-blue);
}

.services-dropdown {
  position: relative;
}

.services-dropdown > a::before {
  content: '▾';
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1rem 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.services-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.875rem 1.5rem;
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--electric-blue);
  padding-left: 2rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 2rem;
  border-left: 2px solid var(--mid-gray);
}

.lang-btn {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-gray);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--light-gray);
  color: var(--electric-blue);
}

.lang-btn.active {
  background: var(--electric-blue);
  color: var(--white);
}

.lang-divider {
  color: var(--mid-gray);
  font-weight: 300;
}

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

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 1024px) {
  .floating-nav {
    margin: 1rem;
    padding: 1rem 1.5rem;
  }
  
  nav {
    gap: 2rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .floating-nav {
    margin: 1rem;
    padding: 1rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    overflow-y: auto;
  }
  
  nav.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .nav-links a {
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--mid-gray);
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    display: none;
  }
  
  .services-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .lang-switcher {
    border-left: none;
    border-top: 2px solid var(--mid-gray);
    padding: 1.5rem 0 0;
    margin-top: 1.5rem;
    width: 100%;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.1) rotate(5deg); opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: charReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--mid-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
}

.meta-icon {
  width: 48px;
  height: 48px;
  background: var(--electric-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  min-width: 180px;
  justify-content: center;
}

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

.btn-primary:hover {
  background: #0052CC;
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--light-gray);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }
  
  .hero-meta {
    gap: 1rem;
  }
  
  .meta-item {
    font-size: 0.875rem;
  }
  
  .meta-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-indent {
  margin: 0 2rem;
  background: var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 6rem 4rem;
  box-shadow: var(--shadow-md);
}

.section-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  background: var(--electric-blue);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.zigzag-features {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

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

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-visual {
  position: relative;
}

.feature-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.feature-image:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.feature-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.feature-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--electric-blue);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.feature-content h3 {
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}

.feature-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
}

.feature-list li::before {
  content: '→';
  color: var(--electric-blue);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .section {
    padding: 5rem 0;
  }
  
  .section-indent {
    margin: 0 1rem;
    padding: 4rem 2rem;
  }
  
  .feature-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .feature-row.reverse {
    direction: ltr;
  }
  
  .feature-image img {
    height: 300px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    top: -15px;
    right: -15px;
  }
  
  .zigzag-features {
    gap: 4rem;
  }
}

.accordion-services {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-item.active {
  box-shadow: var(--shadow-lg);
}

.accordion-header {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: var(--transition);
  background: var(--white);
}

.accordion-item.active .accordion-header {
  background: var(--light-gray);
}

.accordion-title-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.accordion-icon {
  width: 60px;
  height: 60px;
  background: var(--electric-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: scale(1.1);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.375rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.accordion-item.active .accordion-header h3 {
  color: var(--electric-blue);
}

.accordion-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--charcoal);
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-item.active .accordion-toggle {
  background: var(--electric-blue);
  color: var(--white);
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 800px;
}

.accordion-body {
  padding: 0 2rem 2rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-gray);
}

@media (max-width: 768px) {
  .accordion-header {
    padding: 1.5rem;
  }
  
  .accordion-title-group {
    gap: 1rem;
  }
  
  .accordion-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .accordion-header h3 {
    font-size: 1.125rem;
  }
  
  .accordion-toggle {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }
  
  .accordion-body {
    padding: 0 1.5rem 1.5rem;
  }
}

.independence-banner {
  background: var(--charcoal);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.independence-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(0, 102, 255, 0.05) 40px,
    rgba(0, 102, 255, 0.05) 80px
  );
}

.independence-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.independence-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.independence-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--mid-gray);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.team-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

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

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

.team-info {
  padding: 2rem;
}

.team-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.team-role {
  color: var(--electric-blue);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-bio {
  color: var(--text-gray);
  line-height: 1.7;
}

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

.topics-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.topic-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--electric-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.topic-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.topic-icon {
  width: 70px;
  height: 70px;
  background: var(--electric-blue);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.topic-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.topic-card p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.topic-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.topic-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
}

.topic-list li::before {
  content: '✓';
  color: var(--electric-blue);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .topic-card {
    padding: 2rem;
  }
}

.guides-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.guides-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.guide-nav {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 140px;
}

.guide-nav h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.guide-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.guide-links a {
  padding: 1rem;
  border-radius: var(--radius-md);
  color: var(--text-gray);
  font-weight: 600;
  transition: var(--transition);
  display: block;
}

.guide-links a:hover,
.guide-links a.active {
  background: var(--light-gray);
  color: var(--electric-blue);
  padding-left: 1.5rem;
}

.guide-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.guide-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.guide-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.guide-section h4 {
  margin: 2rem 0 1rem;
  color: var(--electric-blue);
}

.guide-section p {
  line-height: 1.8;
  color: var(--text-gray);
}

.guide-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.guide-section li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-left: 1rem;
}

.guide-section li::before {
  content: '▸';
  color: var(--electric-blue);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .guides-layout {
    grid-template-columns: 1fr;
  }
  
  .guide-nav {
    position: static;
  }
  
  .guide-section {
    padding: 2rem;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--electric-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-content h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item-content p {
  color: var(--mid-gray);
  margin: 0;
  font-size: 0.95rem;
}

.contact-item-content a {
  color: var(--mid-gray);
  transition: var(--transition);
}

.contact-item-content a:hover {
  color: var(--electric-blue);
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.contact-form-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

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

.iti {
  width: 100%;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-gray);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--electric-blue);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 1.25rem;
  background: var(--electric-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  background: #0052CC;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 2rem;
  }
}

.thanks-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--electric-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-lg);
}

.thanks-content h1 {
  margin-bottom: 1.5rem;
}

.thanks-content p {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-date {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin: 3rem 0 1.5rem;
  color: var(--charcoal);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--electric-blue);
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.legal-content ul {
  list-style: none;
  margin: 1.5rem 0;
}

.legal-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.legal-content li::before {
  content: '•';
  color: var(--electric-blue);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a {
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--electric-blue);
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--mid-gray);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--electric-blue);
  padding-left: 0.5rem;
}

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

.footer-copyright {
  color: var(--mid-gray);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-legal a {
  color: var(--mid-gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--electric-blue);
}

@media (max-width: 968px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  transform: translateY(150%);
  transition: var(--transition);
}

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

.cookie-banner h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.cookie-banner p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Sora', sans-serif;
}

.cookie-accept {
  background: var(--electric-blue);
  color: var(--white);
}

.cookie-accept:hover {
  background: #0052CC;
}

.cookie-reject {
  background: var(--light-gray);
  color: var(--charcoal);
}

.cookie-reject:hover {
  background: var(--mid-gray);
}

.cookie-customize {
  background: transparent;
  color: var(--electric-blue);
  border: 2px solid var(--electric-blue);
}

.cookie-customize:hover {
  background: var(--electric-blue);
  color: var(--white);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--electric-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: #0052CC;
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 640px) {
  .scroll-to-top {
    bottom: 5rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }
}