:root {
  --primary-green: #2d5f3f;
  --primary-light: #4a8f63;
  --accent-orange: #e67e22;
  --text-dark: #2c3e50;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

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

body {
  font-family: 'Georgia', serif;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* Header Styles */
.top-bar {
  background: var(--primary-green);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.top-bar a:hover {
  text-decoration: underline;
}

header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-green);
  text-decoration: none;
  font-family: 'Palatino', serif;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary-green);
}

.donate-btn {
  background: var(--accent-orange);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.donate-btn:hover {
  background: #d35400;
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(45, 95, 63, 0.7), rgba(45, 95, 63, 0.7)), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.demo/2000/svg" viewBox="0 0 1200 600"><rect fill="%234a8f63" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  font-family: 'Palatino', serif;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}

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

.btn-primary:hover {
  background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-secondary {
  background: white;
  color: var(--primary-green);
  border: 2px solid white;
}

.btn-secondary:hover {
  background: transparent;
  color: white;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Styles */
section {
  padding: 80px 20px;
}

.section-title {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--primary-green);
  font-family: 'Palatino', serif;
  text-align: center;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Styles */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: white;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-green);
}

.card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.card a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.card a:hover {
  color: var(--primary-light);
}

/* Stats Section */
.stats-section {
  background: var(--primary-green);
  color: white;
  text-align: center;
}

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

.stat-item {
  padding: 30px;
}

.stat-number {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
  color: var(--accent-orange);
}

.stat-label {
  font-size: 18px;
  line-height: 1.5;
}

/* Background Section */
.bg-light {
  background: var(--bg-light);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--accent-orange);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #999;
  font-size: 14px;
}

/* Content Page Styles */
.page-header {
  background: var(--primary-green);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-family: 'Palatino', serif;
}

.page-header p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-green);
}

.content-wrapper h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-green);
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.9;
  color: var(--text-light);
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 20px;
  margin-left: 40px;
  color: var(--text-light);
}

.content-wrapper li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* Info Box */
.info-box {
  background: #e8f5e9;
  border-left: 4px solid var(--primary-green);
  padding: 25px;
  margin: 30px 0;
  border-radius: 4px;
}

.info-box h4 {
  color: var(--primary-green);
  margin-bottom: 10px;
  font-size: 20px;
}

.warning-box {
  background: #fff3cd;
  border-left: 4px solid var(--accent-orange);
  padding: 25px;
  margin: 30px 0;
  border-radius: 4px;
}

.warning-box h4 {
  color: var(--accent-orange);
  margin-bottom: 10px;
  font-size: 20px;
}

/* Forms */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Button */
.btn-submit {
  background: var(--primary-green);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--primary-light);
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  
  nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Verbose content styling for digital exclusion demonstration */
.verbose-text {
  line-height: 2;
  text-align: justify;
}

.bureaucratic {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
}

.dense-paragraph {
  margin-bottom: 15px;
}
