/* VARIANT 2: style.css */
:root {
  --primary-color: #064E3B;
  --secondary-color: #047857;
  --accent-color: #F59E0B;
  --light-color: #FEF3C7;
  --bg-color: #ECFDF5;
  --text-color: #064E3B;
  --font-heading: 'Oswald', sans-serif;
  --font-text: 'Inter', sans-serif;
}

body {
  font-family: var(--font-text);
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-custom {
  background-color: #ffffff;
  border-bottom: 3px solid var(--accent-color);
}

.footer-custom {
  background-color: var(--primary-color);
}

.btn {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
}

.btn:hover {
  background-color: #D97706;
  transform: translateY(-2px);
}

#menu-toggle:checked ~ .mobile-menu {
  display: flex !important;
}

.hero-section {
  background-image: linear-gradient(rgba(6, 78, 59, 0.85), rgba(6, 78, 59, 0.85)), url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.pricing-card {
  background: #ffffff;
  border-top: 5px solid var(--secondary-color);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.highlight-plan {
  border-top: 5px solid var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
}

.form-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #A7F3D0;
  border-radius: 0.5rem;
  margin-bottom: 1.2rem;
  background-color: #F8FAFC;
}