:root {
  --primary-color: #004225;
  --secondary-color: #0b2b1f;
  --accent-color: #c5a059;
  --accent-hover: #b08d4a;
  --text-color: #333333;
  --bg-color: #f5f5f0;
  --white: #ffffff;
  --light-gray: #e0e0e0;
  --error: #d32f2f;
  --font-heading: "Georgia", serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container-width: 1200px;
  --section-padding: 80px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
}

.text-center {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--accent-hover);
  color: var(--text-color);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-gold {
  background-color: var(--accent-color);
  color: var(--white);
}

.btn-submit {
  background-color: var(--primary-color);
  color: var(--white);
  width: 100%;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: var(--secondary-color);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: 80px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-weight: 500;
  color: var(--secondary-color);
}

.desktop-nav a:hover {
  color: var(--accent-color);
}

.nav-btn {
  padding: 8px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.burger span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-link {
  font-size: 2rem;
  color: var(--white);
  font-family: var(--font-heading);
}

.section {
  padding: var(--section-padding);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  margin-top: 80px;
  overflow: hidden;
  background-image: url("./images/close-up-business-plan-with-people-working-background.jpg");
  background-position: top center;
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--accent-color);
  top: 0;
}

.text-wrapper strong {
  color: var(--accent-color);
}

.text-wrapper a.email {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-block img,
.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bg-light {
  background-color: var(--white);
}

.bg-dark {
  background-color: var(--secondary-color);
  color: var(--white);
}

.bg-dark h2,
.bg-dark h4 {
  color: var(--accent-color);
}

.bg-accent {
  background-color: #ebebe6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cta-mini {
  margin-top: 20px;
}

.card {
  background: var(--bg-color);
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  border: 1px solid var(--light-gray);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-icon {
  color: var(--accent-color);
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  border-left: 2px solid var(--accent-color);
  padding-left: 20px;
}

.feature-box p {
  color: var(--light-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.blog-post {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.post-img {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.post-content {
  padding: 30px;
}

.read-more {
  color: var(--accent-color);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.faq-wrapper {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 15px;
}

.faq-question {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question {
  color: var(--accent-color);
}

.contact-section {
  background-color: var(--secondary-color);
  padding: 100px 0;
}

.contact-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-desc {
  margin-bottom: 30px;
  color: #666;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-top: 5px;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.4;
}
.text-privacy {
  text-decoration: underline;
}

.error-msg {
  color: var(--error);
  font-size: 0.8rem;
  display: block;
  margin-top: 5px;
  height: 15px;
}

.footer {
  background-color: #1a1a1a;
  color: #888;
  padding: 60px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-logo {
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--light-gray);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  padding: 30px 20px;
  transition: bottom 0.5s ease;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-content h3 {
  margin-bottom: 5px;
}

.vision-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  @media (max-width: 600px) {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  background: var(--white);
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-num {
  display: block;
  font-size: 3rem;
  color: var(--accent-color);
  font-weight: bold;
  font-family: var(--font-heading);
}

@media (max-width: 1024px) {
  .grid-2,
  .split-content,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .checkbox-group label {
    white-space: normal; /* Allow wrapping on mobile */
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
