/* ===== Global Styles ===== */
:root {
  --primary: #000000; /* Primary green */
  --secondary: #388e3c; /* Darker green */
  --accent: #7cb342; /* Light green */
  --dark: #263238; /* Dark text */
  --light: #f5f7fa; /* Light background */
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Neue Montreal", sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

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

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

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets//images/background1.jpg") center/cover;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* ===== Content Sections ===== */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
}

/* ===== Features Grid ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.feature-card p {
  font-size: 1.1rem;
}

/* ===== Image + Text Section ===== */
.content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.content-text,
.content-image {
  flex: 1;
}

.content-text h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.content-text p {
  font-size: 1.1rem;
}
.content-text ul {
  font-size: 1.1rem;
}

/* ===== CTA Section ===== */
.cta {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  border-radius: 8px;
  margin: 40px 0;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}
.cta p {
  font-size: 1.1rem;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .section {
    padding: 60px 0;
  }
  .content-block {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .feature-card {
    padding: 20px;
  }
}
