/* Reset */
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  background: #fdfaf0;
  color: #333;
}

/* Headings: Maglite */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Maglite', serif;
  color: #065D75;
  text-transform: uppercase;
}

/* Body text: Montserrat */
body, p, li, a, span, small {
  font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3 {
  color: #065d75;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
}
a {
  text-decoration: none;
}

/* Announcement */
.announcement {
  background: #065d75;
  color: #fff;
  text-align: center;
  padding: 1px;
  font-weight: 500;
}

/* Hero */

.hero-sub {
  font-size: 1rem;
  color: #C2A66E;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero {
  text-align: center;
  padding: 0px 20px;
  background: #f9f5e3;
}
.hero h1 {
  font-size: 2rem;
  margin: 20px 0;
  color: #065d75;
}

.hero-bonus {
  font-size: 1rem;
  color: #333;
  margin-top: 15px;
  line-height: 1.6;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: #C2A66E;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  margin: 20px 0;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #043d4d;
}
.small {
  font-size: 0.9rem;
  color: #666;
}

/* Lead Magnet */
.leadmagnet-grid {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 30px;
  align-items: center;
}
.leadmagnet-img img {
  width: 100%;
  border-radius: 8px;
}
.leadmagnet-content ul {
  list-style: none;
  padding: 0;
}
.leadmagnet-content li {
  margin: 10px 0;
}
.leadmagnet-content i {
  color: #c2a66e;
  margin-right: 8px;
}

/* Community */
.community {
  background: #065d75;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.community h2 {
  color: #fff;
}
.logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.logos img {
  max-height: 60px;
}

/* Audience */
.audience ul {
  list-style: none;
  padding: 0;
}
.audience li {
  margin: 10px 0;
}
.audience i {
  color: #c2a66e;
  margin-right: 8px;
}

/* Reasons */
.reasons {
  background: #f9f5e3;
}
.reason-list {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 20px;
  text-align: center;
}
.reason {
  flex: 1 1 30%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
.reason i {
  font-size: 2rem;
  color: #c2a66e;
  margin-bottom: 10px;
}

/* What You Get */
.what-grid {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
  background: #fff; /* card background */
  border: 2px solid #C2A66E; /* branding border - gold */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* soft shadow */
  padding: 25px;
}

.what-text {
  flex: 1 1 60%;
}

.what-text h3 {
  color: #065D75;
  margin-bottom: 10px;
}

.what-img {
  flex: 1 1 40%;
  text-align: center;
}

.what-img img {
  width: 100%;
  border-radius: 8px;
}

/* Highlight text */
.highlight-text {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin: 20px 0;
  color: #065D75;
}

/* Centered CTA */
.cta-center {
  text-align: center;
  margin: 20px 0;
}

/* Centered note */
.note-center {
  text-align: center;
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
}


/* About Eva */
/* Section Title */
.about-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #065D75;
}

/* Grid Layout */
.about-grid {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 30px;
  align-items: center;
}

.about-text {
  flex: 1 1 60%;
  text-align: left; /* ensure text is left-aligned */
}

.about-img {
  flex: 1 1 40%;
  text-align: right;
}

.about-img img {
  max-width: 100%;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
  .about-img {
    text-align: center;
  }
}


/* Expertise */
.expertise {
  background: #f9f5e3;
  padding: 50px 0;
}
.expertise-grid {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 20px;
  justify-content: space-between;
  text-align: center;
}
.exp {
  flex: 1 1 22%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
.exp i {
  font-size: 2rem;
  color: #c2a66e;
}

/* Final Lead Magnet */
.final-lead .leadmagnet-grid {
  margin-top: 30px;
}

/* Footer */
.footer {
  text-align: center;
  background: #065d75;
  color: #fff;
  padding: 30px 20px;
}
.footer a {
  color: #fff;
  margin: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .leadmagnet-grid,
  .what-grid,
  .about-grid {
    flex-direction: column;
  }
  .reason-list,
  .expertise-grid {
    flex-direction: column;
  }
}
