/* Modern design with orange/gold gradient theme */
:root {
  --primary: #FF8C00;
  --secondary: #FFD700;
  --dark: #381E00;
  --light: #FFFFFF;
  --text: #333333;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1);
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background-color: #FEFAF5;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 40px;
  margin-right: 10px;
}

.brand-name {
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-items {
  display: flex;
  list-style: none;
}

.nav-items li {
  margin: 0 15px;
}

.nav-items a {
  color: var(--text);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

.nav-items a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-items a:hover::after {
  width: 100%;
}

.menu-button {
  display: none;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: var(--gradient);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background-color: #FEFAF5;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(255, 215, 0, 0.05));
  border-radius: 50%;
  z-index: 0;
}

.hero-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
  max-width: 90%;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual svg {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 10px 20px rgba(255, 140, 0, 0.1));
}

/* Button Styles */
.button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.button-primary {
  color: white;
  background: var(--gradient);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.15);
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.25);
}

.button-outline {
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  margin-left: 15px;
}

.button-outline:hover {
  color: white;
  background: var(--gradient);
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: #FFF;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: #FFF;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background-color: #FEFAF5;
  position: relative;
  overflow: hidden;
}

.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 60%;
  height: 70%;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(255, 215, 0, 0.05));
  border-radius: 50%;
  z-index: 0;
}

.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.process-step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  margin: 20px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.step-icon {
  margin: 20px auto;
  width: 60px;
  height: 60px;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.button-light {
  background: white;
  color: var(--primary);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  position: relative;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 0 20px 20px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-gap: 40px;
}

.footer-about {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column-reverse;
  }
  
  .hero-content {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-description {
    max-width: 100%;
  }
  
  .menu-button {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .main-nav.active {
    height: auto;
    padding: 20px 0;
  }
  
  .nav-items {
    flex-direction: column;
    text-align: center;
  }
  
  .nav-items li {
    margin: 15px 0;
  }
  
  .button-outline {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-description {
    max-width: 100%;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
