/* Global styles */
:root {
  --bg-color: #0b0f14;
  --accent-yellow: #ffd500;
  --accent-blue: #00c2c7;
  --text-primary: #ffffff;
  --text-secondary: #d9d9d9;
  --button-gradient: linear-gradient(to right, #ffd500, #ff7f11);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

section[id] {
  scroll-margin-top: 40px;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-yellow);
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-yellow);
}

section {
  padding: 80px 0;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

.text-center {
  text-align: center;
}

/* Header */
header {
  background-color: rgba(11, 15, 20, 0.9);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo span {
  color: var(--accent-yellow);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-primary);
  font-weight: 500;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
}

.hamburger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 20, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 30px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-gradient);
  color: var(--bg-color);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bg-color);
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Benefits Section */
.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

.benefits h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
}

.benefit-item h3 {
  margin-bottom: 15px;
  color: var(--accent-yellow);
}

/* Services Section */
.services h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  color: var(--accent-blue);
  margin-bottom: 15px;
}

/* Comparison Section */
.comparison h2 {
  text-align: center;
  margin-bottom: 50px;
}

.comparison h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-yellow);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

/* Reviews Section */
.reviews h2 {
  text-align: center;
  margin-bottom: 50px;
}

.reviews h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  position: relative;
}

.review-text {
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author strong {
  color: var(--accent-blue);
}

/* Form Section */
.form-section {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(
    to bottom right,
    rgba(255, 213, 0, 0.05),
    rgba(0, 194, 199, 0.05)
  );
}

.form-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.form-section h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 4px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

/* FAQ Section */
.faq h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item details {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  margin: 0;
  font-size: 1.2rem;
  padding-right: 30px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
  content: "−";
  transform: translateY(-50%);
}

.faq-content {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.02);
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--accent-yellow);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--text-secondary);
}

.footer-column ul li a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-yellow);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: rgba(11, 15, 20, 0.95);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-popup p {
  margin-bottom: 15px;
}

.cookie-popup button {
  background: var(--button-gradient);
  color: var(--bg-color);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}
option {
  background-color: #202727;
}

/* Thank You Page */
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 10rem auto 6rem;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Policy Pages */
.policy-content {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.policy-content h1 {
  text-align: center;
  margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(11, 15, 20, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav ul {
    flex-direction: column;
    padding: 0 20px 20px;
  }

  nav ul li {
    margin: 15px 0 0;
  }

  .menu-toggle:checked ~ nav {
    max-height: 300px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero {
    height: auto;
    min-height: 100vh;
  }

  .form-section {
    padding: 30px 20px;
  }
}
