/* CSS Variables for easy color customization */
:root {
  --primary-color: #2d7a2d;
  --primary-dark: #1e5a1e;
  --accent-color: #4a9a4a;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  --background-white: #ffffff;
  --background-light: #f8f9fa;
  --background-section: #f5f7f5;
  --border-color: #e0e0e0;
  --border-light: #f0f0f0;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* 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: var(--text-primary);
  background-color: var(--background-white);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

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

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-menu a {
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Buttons */
.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--background-white);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  color: var(--background-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
  background-color: var(--primary-color);
  color: var(--background-white);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--background-section) 0%, var(--background-light) 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero-content h1 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
section {
  padding: 3rem 0;
}

.page-header {
  background-color: var(--background-section);
  text-align: center;
  padding: 3rem 0;
}

.page-header h1 {
  color: var(--text-primary);
}

/* Grid Layouts */
.steps,
.product-grid,
.benefits-grid,
.testimonial-grid,
.info-grid,
.values-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-grid,
.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.step,
.product-card,
.benefit,
.testimonial,
.info-item,
.value-item,
.product-detailed {
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.step:hover,
.product-card:hover,
.benefit:hover,
.info-item:hover,
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--background-white);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-link,
.product-link {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

.product-features {
  list-style: none;
  margin: 1rem 0;
}

.product-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Testimonials */
.stars {
  color: var(--warning-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-weight: 600;
  color: var(--text-primary);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

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

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

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 122, 45, 0.1);
}

.submit-button {
  background-color: var(--primary-color);
  color: var(--background-white);
  padding: 15px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Order Steps */
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.order-step {
  text-align: center;
  padding: 2rem;
}

.order-step h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

.thank-you-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.order-summary {
  background-color: var(--background-section);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  text-align: left;
}

.order-summary h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.next-steps .steps {
  text-align: left;
}

.contact-info {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

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

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

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

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.last-updated {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background-color: var(--text-primary);
  color: var(--background-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info h3 {
  color: var(--background-white);
  margin-bottom: 1rem;
}

.footer-info p {
  color: #cccccc;
  margin-bottom: 0.5rem;
}

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

.footer-links a {
  color: #cccccc;
  transition: var(--transition);
}

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

.footer-disclaimer {
  border-top: 1px solid #555555;
  padding-top: 2rem;
  text-align: center;
}

.footer-disclaimer p {
  color: #aaaaaa;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

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

  .nav-menu {
    gap: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 2rem 0;
  }

  section {
    padding: 2rem 0;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

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

  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

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

  .hero-content p {
    font-size: 1rem;
  }

  .steps,
  .product-grid,
  .benefits-grid,
  .testimonial-grid,
  .info-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .step,
  .product-card,
  .benefit,
  .testimonial,
  .info-item,
  .value-item,
  .product-detailed {
    padding: 1.5rem;
  }
}
