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

:root {
  --primary: #1E3A5F;
  --accent: #7C4DFF;
  --secondary: #E0E0E0;
  --gold: #C9A96E;
  --text-light: #F5F5F5;
  --text-dark: #1a1a1a;
  --border: #333;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary);
  color: var(--text-light);
  line-height: 1.9;
  font-weight: 400;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--primary);
  border-bottom: 1px solid var(--accent);
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.1);
}

.navbar-container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  text-shadow: 0 0 20px rgba(124, 77, 255, 0.8);
}

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

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(124, 77, 255, 0.6);
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

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

h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), #9575ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.9;
  color: var(--secondary);
}

.hero {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary), #0f1f3a);
  border-bottom: 2px solid var(--accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 2rem auto;
  border-radius: 0.5rem;
  box-shadow: 0 0 40px rgba(124, 77, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-image:hover {
  box-shadow: 0 0 60px rgba(124, 77, 255, 0.5);
  transform: scale(1.02);
}

.section {
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}

.section:nth-child(even) {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.5), rgba(15, 31, 58, 0.5));
}

.section-content {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.section-text {
  flex: 1;
}

.section-image {
  flex: 1;
  max-width: 500px;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0 40px rgba(124, 77, 255, 0.2);
  transition: all 0.3s ease;
}

.section-image img:hover {
  box-shadow: 0 0 60px rgba(124, 77, 255, 0.4);
  transform: translateY(-5px);
}

.term {
  color: var(--accent);
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 0.25rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

.cta-button:hover {
  background: transparent;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(124, 77, 255, 0.8);
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.4);
}

.faq-item {
  background: rgba(124, 77, 255, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent);
  border-radius: 0.25rem;
}

.faq-item h4 {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin: 0;
}

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

.blog-card {
  background: rgba(124, 77, 255, 0.08);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  background: rgba(124, 77, 255, 0.15);
  box-shadow: 0 0 30px rgba(124, 77, 255, 0.3);
  transform: translateY(-5px);
}

.blog-card h3 {
  margin-bottom: 0.5rem;
}

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.blog-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-card a:hover {
  text-shadow: 0 0 10px rgba(124, 77, 255, 0.8);
}

.disclaimer {
  background: rgba(201, 169, 110, 0.1);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  border-radius: 0.25rem;
}

.disclaimer h4 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.disclaimer p {
  font-size: 0.9rem;
  margin: 0;
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-light);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(124, 77, 255, 0.1);
  border: 1px solid var(--accent);
  color: var(--text-light);
  font-family: inherit;
  border-radius: 0.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.5);
  border-color: #9575ff;
}

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

.submit-btn {
  background: var(--accent);
  color: var(--text-light);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #9575ff;
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.5);
}

footer {
  background: #0f1f3a;
  border-top: 1px solid var(--accent);
  padding: 3rem 2rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

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

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(124, 77, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  color: var(--secondary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  border-top: 2px solid var(--accent);
  padding: 1.5rem 2rem;
  box-shadow: 0 -5px 30px rgba(124, 77, 255, 0.2);
  z-index: 999;
  max-width: 100%;
}

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

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

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--accent);
  color: var(--text-light);
}

.cookie-accept:hover {
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.5);
}

.cookie-reject {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--accent);
}

.cookie-reject:hover {
  color: var(--accent);
}

.cookie-learn {
  background: transparent;
  color: var(--accent);
  text-decoration: underline;
}

.cookie-learn:hover {
  text-shadow: 0 0 10px rgba(124, 77, 255, 0.6);
}

.thank-you-section {
  text-align: center;
  padding: 6rem 2rem;
}

.thank-you-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .nav-links {
    gap: 1rem;
  }

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

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

  .section-image {
    max-width: 100%;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}
