/* === GLOBAL STYLES === */
:root {
  --primary: #4A7C59;
  --secondary: #F9F5EB;
  --accent: #F8D57E;
  --dark: #333333;
  --white: #FFFFFF;
  --light-gray: #f2f2f2;
  --medium-gray: #e0e0e0;
  --red: #E55934;
  --blue: #9AD4D6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(74, 124, 89, 0.3);
}

.btn-primary:hover {
  background-color: #3a6347;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(74, 124, 89, 0.4);
}

.btn-secondary {
  background-color: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 10px rgba(248, 213, 126, 0.3);
}

.btn-secondary:hover {
  background-color: #f0c85c;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(248, 213, 126, 0.4);
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background-color: var(--accent);
  margin: 0.5rem auto 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Animation classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* === HEADER STYLES === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header-transparent {
  background-color: transparent;
}

.header-solid {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2rem;
  position: relative;
}

.nav-link {
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url('images/hero.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.3) 0%, rgba(51, 51, 51, 0.3) 100%);
}

/* === PRICING SECTION === */
.pricing {
  background-color: var(--secondary);
  overflow: hidden;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-box {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary);
}

.pricing-box.featured::before {
  background-color: var(--accent);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.pricing-box.featured .pricing-title {
  color: var(--accent);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  margin-right: 0.5rem;
}

.pricing-box.featured {
  transform: scale(1.05);
}

.pricing-box.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

/* === HOW IT WORKS SECTION === */
.how-it-works {
  background-color: var(--white);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/how.png');
  background-repeat: repeat;
  opacity: 0.5;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 15%;
  width: 70%;
  height: 2px;
  background-color: var(--medium-gray);
  z-index: 1;
}

.step {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step:nth-child(1) {
  background-color: #E8F4EA;
}

.step:nth-child(2) {
  background-color: #FFF6E6;
}

.step:nth-child(3) {
  background-color: #E8F0F7;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 2rem;
  color: var(--primary);
}

.step:nth-child(2) .step-icon {
  color: var(--accent);
}

.step:nth-child(3) .step-icon {
  color: var(--blue);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step-description {
  opacity: 0.8;
}

/* === BENEFITS SECTION === */
.benefits {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/ben.png');
  background-repeat: repeat;
  opacity: 0.15;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.benefit {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.benefit:hover {
  transform: translateY(-10px);
}

.benefit:hover .benefit-icon {
  transform: rotate(5deg);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.benefit-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.benefit-description {
  opacity: 0.8;
}

/* === MENTOR SECTION === */
.mentor {
  background-color: var(--white);
}

.mentor-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.mentor-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
}

@media (min-width: 768px) {
  .mentor-content {
    flex-direction: row;
    align-items: stretch;
  }
}

.mentor-image {
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  background-color: var(--white);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.mentor-card:hover .mentor-image {
  transform: rotate(0);
}

@media (min-width: 768px) {
  .mentor-image {
    margin-bottom: 0;
    margin-right: 2rem;
  }
}

.mentor-info {
  flex: 1;
}

.mentor-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.mentor-role {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  opacity: 0.7;
}

.mentor-bio {
  line-height: 1.8;
}

/* === SUBSCRIPTION FORM === */
.subscribe {
  background: linear-gradient(135deg, var(--primary) 0%, #2A4B36 100%);
  color: var(--white);
  text-align: center;
}

.subscribe-content {
  max-width: 600px;
  margin: 0 auto;
}

.subscribe-title {
  color: var(--white);
}

.subscribe-description {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.subscribe-input {
  flex: 1;
  min-width: 250px;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}

.subscribe-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}

.subscribe-success {
  display: none;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.subscribe-success.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === CONTACT SECTION === */
.contact {
  background-color: var(--secondary);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  color: var(--primary);
}

.contact-info-text h4 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.contact-info-text p {
  opacity: 0.8;
}

.map-container {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* === FOOTER === */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 35px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-about {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.footer-description {
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.footer-nav {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.footer-nav-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav-item {
  margin-bottom: 0.5rem;
}

.footer-nav-link {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: #3a6347;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1280px) {
  .container {
    max-width: 960px;
  }
  
  .hero h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 720px;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .step {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .header-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background-color: var(--white);
    width: 250px;
    height: 100vh;
    padding: 4rem 1.5rem 2rem;
    transition: 0.5s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .hamburger {
    display: block;
    z-index: 1200;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .steps-container {
    justify-content: center;
  }
  
  .step {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-input {
    width: 100%;
  }
}

@media (max-width: 320px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* === COOKIE POLICY, PRIVACY POLICY, TERMS PAGES === */
.policy-page {
  padding: 120px 0 5rem;
}

.policy-content {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.policy-section p,
.policy-section ul {
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 1.5rem;
}

.policy-back {
  display: inline-block;
  margin-top: 2rem;
  color: var(--primary);
  font-weight: 600;
}

.policy-back:hover {
  text-decoration: underline;
}

/* === SUCCESS PAGE === */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.success-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}