/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #ffffff;
}

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

/* Header */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #2d3748;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border-radius: 8px;
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #48bb78;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 4rem 0;
}

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

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.hero-icon {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border-radius: 20px;
  position: relative;
}

.hero-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #48bb78;
  color: white;
}

.btn-primary:hover {
  background: #38a169;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #edf2f7;
  color: #2d3748;
}

.btn-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

/* Sections */
.guides,
.benefits,
.reviews {
  padding: 4rem 0;
}

.guides h2,
.benefits h2,
.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 3rem;
}

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

.guide-card,
.benefit-item,
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.guide-card:hover,
.benefit-item:hover,
.review-card:hover {
  transform: translateY(-5px);
}

.guide-icon,
.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.energy-icon {
  background: linear-gradient(135deg, #fbb6ce, #f687b3);
}

.balance-icon {
  background: linear-gradient(135deg, #90cdf4, #63b3ed);
}

.lifestyle-icon {
  background: linear-gradient(135deg, #a78bfa, #9f7aea);
}

.natural-icon {
  background: linear-gradient(135deg, #68d391, #48bb78);
}

.convenient-icon {
  background: linear-gradient(135deg, #fbd38d, #f6ad55);
}

.wellness-icon {
  background: linear-gradient(135deg, #81e6d9, #4fd1c7);
}

.guide-card h3,
.benefit-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.guide-card p,
.benefit-item p {
  color: #4a5568;
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: #f7fafc;
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
}

/* Reviews */
.stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-card p {
  color: #4a5568;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviewer strong {
  color: #2d3748;
  font-weight: 600;
}

.reviewer span {
  color: #718096;
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section {
  padding: 4rem 0;
  background: #f7fafc;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.form-wrapper p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #48bb78;
}

/* Footer */
.footer {
  background: #2d3748;
  color: white;
  padding: 3rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-weight: 700;
  font-size: 1.5rem;
}

.slogan {
  color: #a0aec0;
  font-style: italic;
}

.footer h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #48bb78;
}

/* Page Specific Styles */
.page-header {
  background: #f7fafc;
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: #4a5568;
}

/* Blog Styles */
.blog-content {
  padding: 4rem 0;
}

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

.article-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-card .article-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.article-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.article-card p {
  color: #4a5568;
  margin-bottom: 1.5rem;
}

/* Article Page */
.article-page {
  padding: 4rem 0;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.article-intro {
  font-size: 1.25rem;
  color: #4a5568;
}

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

.article-content section {
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.article-content p {
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.article-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.article-content li {
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.article-cta {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.article-cta p {
  color: #4a5568;
  margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.contact-form-wrapper p {
  color: #4a5568;
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #4a5568;
}

.expertise-box {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 8px;
}

.expertise-box h4 {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 1rem;
}

.expertise-box ul {
  list-style: none;
}

.expertise-box li {
  color: #4a5568;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.expertise-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #48bb78;
  font-weight: bold;
}

/* Thank You Page */
.thank-you-section {
  padding: 4rem 0;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: #48bb78;
  border-radius: 50%;
  margin: 0 auto 2rem;
  position: relative;
}

.success-icon::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.thank-you-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: #4a5568;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.next-steps {
  margin: 3rem 0;
}

.next-steps h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 2rem;
}

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

.step {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #48bb78;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.step p {
  color: #4a5568;
  font-size: 0.9rem;
}

.while-you-wait {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.while-you-wait h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.while-you-wait p {
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
  padding: 4rem 0;
}

.legal-page h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.last-updated {
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

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

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.back-to-contact {
  text-align: center;
  margin-top: 3rem;
}

/* Reviews Section */
.reviews-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

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

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .article-header h1 {
    font-size: 2rem;
  }

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