:root {
  --primary-color: #139900;
  --primary-dark: #0f7300;
  --primary-light: #1ab300;
  --accent: #139900;
  --background: #ffffff;
  --text: #333333;
  --gray: #666666;
  --light: #f7f8fc;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

header {
  background: var(--light);
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  text-decoration: none;
  color: var(--primary-color);
}

.navbar-brand:hover {
  text-decoration: none;
  color: var(--primary-dark);
}

.nav-link {
  color: var(--gray) !important;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.hero-section {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-section .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Feature Dividers */
.feature-divider {
  width: 120px;
  height: 2px;
  margin: 0 0 1rem 0;
  border-radius: 2px;
}

.feature-divider.green {
  background: linear-gradient(90deg, #139900, transparent);
}

.feature-divider.teal {
  background: linear-gradient(90deg, #0d7a5f, transparent);
}

.feature-divider.lime {
  background: linear-gradient(90deg, #7cb342, transparent);
}

.feature-divider.emerald {
  background: linear-gradient(90deg, #2e7d32, transparent);
}

.feature-divider.mint {
  background: linear-gradient(90deg, #4caf50, transparent);
}

.feature-divider.forest {
  background: linear-gradient(90deg, #1b5e20, transparent);
}

.feature-divider.olive {
  background: linear-gradient(90deg, #689f38, transparent);
}

.feature-divider.sage {
  background: linear-gradient(90deg, #558b2f, transparent);
}

.feature-divider.jade {
  background: linear-gradient(90deg, #388e3c, transparent);
}

/* Section Dividers */
.section-divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  justify-content: center;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 3px;
  margin: 0 1rem;
}

.section-divider.green::before,
.section-divider.green::after {
  background: linear-gradient(90deg, transparent, #139900, transparent);
}

.section-divider.teal::before,
.section-divider.teal::after {
  background: linear-gradient(90deg, transparent, #0d7a5f, transparent);
}

.section-divider.lime::before,
.section-divider.lime::after {
  background: linear-gradient(90deg, transparent, #7cb342, transparent);
}

.section-divider-icon {
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: var(--primary-color);
}

.section-divider.green .section-divider-icon {
  color: #139900;
}

.section-divider.teal .section-divider-icon {
  color: #0d7a5f;
}

.section-divider.lime .section-divider-icon {
  color: #7cb342;
}

/* App Store Button Styling */
.app-store-button {
  display: inline-block;
  margin-top: 1rem;
  transition: transform 0.2s ease;
}

.app-store-button:hover {
  transform: scale(1.05);
}

.app-store-button img {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.app-screenshot {
  max-width: 350px;
}

.app-placeholder {
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Features Section */
#features h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#features p {
  color: var(--gray);
}

/* Benefits Section */
#benefits h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#benefits p {
  color: var(--gray);
}

/* Footer */
.site-footer {
  background: #2c3e50;
}

.site-footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #139900;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .nav-link {
    padding: 0.5rem 0;
  }
}

