:root {
  --navy-dark: #0F2B5B;
  --gold-premium: #C9A347;
  --silver-sharp: #B0BEC5;
  --white-crisp: #FFFFFF;
  --black-deep: #000000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--navy-dark);
  color: #E8E8E8;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white-crisp);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 4.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.1;
  margin-bottom: 2rem;
}

h2 {
  font-size: 3.2rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2rem;
}

h3 {
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #D0D0D0;
  margin-bottom: 1.5rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(15, 43, 91, 0.98);
  border-bottom: 2px solid var(--gold-premium);
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(10px);
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

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

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

.nav-links a {
  color: var(--white-crisp);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold-premium);
}

main {
  margin-top: 80px;
}

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

.section {
  padding: 170px 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0A1A35 100%);
}

.section-darker {
  background: linear-gradient(135deg, #050F23 0%, #000000 100%);
}

.hero {
  padding: 200px 0 170px;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 43, 91, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--gold-premium);
  letter-spacing: 0.08em;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  align-items: center;
}

.grid-item {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.grid-item:nth-child(1) { animation-delay: 0.12s; }
.grid-item:nth-child(2) { animation-delay: 0.24s; }
.grid-item:nth-child(3) { animation-delay: 0.36s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-premium {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  padding: 3rem;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  overflow: hidden;
}

.card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-premium);
  transition: height 0.5s ease;
}

.card-premium:hover {
  border-color: var(--gold-premium);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(201, 163, 71, 0.3);
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 2rem;
  transition: transform 0.5s ease;
}

.card-premium:hover .card-image {
  transform: scale(1.08);
}

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

.two-column-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.two-column-text {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.full-width-section {
  width: 100%;
  padding: 170px 2rem;
  text-align: center;
  background: linear-gradient(135deg, #050F23 0%, var(--navy-dark) 100%);
}

.full-width-section h2 {
  margin-bottom: 3rem;
  color: var(--gold-premium);
}

.content-box {
  background: rgba(201, 163, 71, 0.1);
  border-left: 4px solid var(--gold-premium);
  padding: 2rem;
  margin: 2rem 0;
}

.content-box p {
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
}

table thead {
  background-color: rgba(201, 163, 71, 0.2);
  border-bottom: 2px solid var(--gold-premium);
}

table th {
  color: var(--gold-premium);
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

table td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(201, 163, 71, 0.2);
  color: #D0D0D0;
}

table tr:hover {
  background-color: rgba(201, 163, 71, 0.05);
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: var(--gold-premium);
  color: var(--navy-dark);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.cta-button:hover {
  background-color: var(--white-crisp);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 163, 71, 0.4);
}

footer {
  background-color: #000000;
  border-top: 2px solid var(--gold-premium);
  padding: 170px 2rem 3rem;
  margin-top: 170px;
}

.footer-content {
  max-width: 1780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--gold-premium);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

.footer-section a {
  color: #D0D0D0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold-premium);
}

.footer-contact {
  color: #D0D0D0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-contact strong {
  color: var(--gold-premium);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 163, 71, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.educational-notice {
  background: rgba(201, 163, 71, 0.15);
  border: 1px solid var(--gold-premium);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
  border-radius: 2px;
}

.educational-notice h3 {
  color: var(--gold-premium);
  margin-bottom: 1rem;
}

.educational-notice p {
  margin: 0;
  font-size: 1.05rem;
}

.accordion {
  margin: 2rem 0;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--gold-premium);
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  color: var(--white-crisp);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.accordion-header:hover {
  background: rgba(201, 163, 71, 0.15);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 2rem;
}

.accordion-content.active {
  max-height: 1000px;
  padding: 0 2rem 1.5rem 2rem;
}

.accordion-toggle {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold-premium);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(201, 163, 71, 0.3);
  color: var(--white-crisp);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-premium);
  background-color: rgba(255, 255, 255, 0.12);
}

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

.form-disclaimer {
  background: rgba(201, 163, 71, 0.12);
  border-left: 3px solid var(--gold-premium);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #D0D0D0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 43, 91, 0.98);
  border-top: 2px solid var(--gold-premium);
  padding: 2rem;
  z-index: 9999;
  backdrop-filter: blur(10px);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.hidden {
  display: none;
}

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

.cookie-text {
  flex: 1;
  color: #D0D0D0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text p {
  margin: 0;
}

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

.cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--gold-premium);
  color: var(--navy-dark);
}

.cookie-btn-accept:hover {
  background-color: var(--white-crisp);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--gold-premium);
  border: 1px solid var(--gold-premium);
}

.cookie-btn-reject:hover {
  background-color: rgba(201, 163, 71, 0.15);
}

.cookie-btn-learn {
  background-color: transparent;
  color: #D0D0D0;
  border: 1px solid #D0D0D0;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    letter-spacing: 0.06em;
  }

  h2 {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .section {
    padding: 100px 0;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: 150px 0 100px;
  }

  .container-elite {
    padding: 0 1.5rem;
  }

  footer {
    padding: 100px 1.5rem 2rem;
  }

  .footer-content {
    gap: 2rem;
  }

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

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

  .cookie-btn {
    width: 100%;
  }
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.link-subtle {
  color: var(--gold-premium);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.link-subtle:hover {
  border-bottom-color: var(--gold-premium);
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--gold-premium);
  margin: 1rem auto;
}
