/* Variables and Base Styles */
:root {
  --primary-color: #f74a29;
  --secondary-color: #bf360c;
  --dark-color: #282828;
  --light-bg: #f8f9fa;
  --dark-bg: #1F0905;
  --border-color: #dadce0;
  --text-color: #3c4043;
  --text-light: #eaeaea;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: #fff;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  font-size: 1.15rem;
  margin: 0 auto;
}

/* Navigation */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.3s ease;
}

.main-nav.scrolled {
  padding: 0.5rem 0;
}

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

.logo {
  display: block;
  line-height: 0;
  transition: all 0.3s ease;
}

.logo img {
  height: 60px;
  width: auto;
  transition: height 0.3s ease;
}

.main-nav.scrolled .logo img {
  height: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

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

/* Hero Section */
.hero {
  background:linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.5)),  url('../images/hero-bg.webp');
  background-size: cover;
  background-position-y: 75%;
  color: var(--text-color);
  padding: 3rem 2rem;
  text-align: center;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(247, 74, 41, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(247, 74, 41, 0.4);
  background: #d93f1f;
}

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

/* Content Sections */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-section-dark {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.impact-section {
  background: var(--primary-color);
  padding: 2rem 2rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
  max-width: 100%;
}

.impact-section p{
  max-width: 900px;
}

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

.service-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  color: var(--dark-color);
  flex-direction: column;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-top: 1rem;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.two-column img {
  width: 100%;
  border-radius: 8px;
}

/* Footer */
.site-footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

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

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

.footer-section p {
  color: #aaa;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .two-column {
    grid-template-columns: 1fr;
  }
  
  .section-grid {
    grid-template-columns: 1fr;
  }
}

/* Legal/Policy Page Lists */
.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}
