/* Root Variables */
:root {
  --primary: #fcd34d;
  --primary-dark: #f59e0b;
  --dark: #2c3e50;
  --light-bg: #fef8f0;
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Georgia", serif;
  color: var(--dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--dark);
  font-size: 1.25rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

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

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #ffe680 100%);
  padding: 4rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA Button */
.cta-button {
  background-color: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.cta-button:hover {
  background-color: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--white);
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-card-alt {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.feature-card-alt .feature-content {
  direction: ltr;
}

.feature-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-content h2 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.feature-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #ffe680 100%);
}

.benefits h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
}

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

.benefit-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: #bec3cb;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-section .cta-button {
  background-color: var(--primary);
  color: var(--dark);
}

.cta-section .cta-button:hover {
  background-color: #ffe680;
}

/* Privacy Policy Page */
.privacy-header {
  background: linear-gradient(135deg, var(--primary) 0%, #ffe680 100%);
  padding: 3rem 0;
  color: var(--dark);
}

.privacy-header h1 {
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--text-light);
  font-size: 0.95rem;
}

.privacy-content {
  padding: 4rem 0;
  background-color: var(--white);
}

.privacy-body {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-body h2 {
  margin-top: 2rem;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.privacy-body h3 {
  margin-top: 1.5rem;
  color: var(--dark);
}

.privacy-body ul {
  margin: 1rem 0 1rem 2rem;
}

.privacy-body li {
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.contact-info {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-section p {
  color: #bec3cb;
  margin-bottom: 0.5rem;
}

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

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

.footer-section a {
  color: #bec3cb;
}

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

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card-alt {
    direction: ltr;
  }

  .nav-links {
    gap: 1rem;
  }

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

  .privacy-body {
    font-size: 0.95rem;
  }
}

/* FAQ Styles */
.faq-intro {
  margin-bottom: 2rem;
}

.faq-container {
  margin-bottom: 3rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-item.active {
  border: 2px solid var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--light-bg);
}

.faq-question span:first-child {
  flex: 1;
  margin-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-dark);
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background-color: var(--light-bg);
}

.faq-answer p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-top: 1rem;
}

.faq-answer a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--primary);
}

.contact-section {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: var(--radius);
  margin-top: 3rem;
  text-align: center;
}

.contact-section h2 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-section > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

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

  h2 {
    font-size: 1.25rem;
  }

  .navbar .container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}
