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


html {
  width: 100%;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}

/* Header */
header {
  background-color: #0057b8;
  text-align: center;
  padding: 20px 0;
  color: white;
}

.main-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.subtitle {
  font-size: 1.2rem;
}

/* Hero Section */
.hero {
  text-align: center;
  background: linear-gradient(to right, #4e54c8, #8f94fb);
  color: white;
  padding: 100px 20px;
}

.hero-title {
  font-size: 3rem;
}

.hero-text {
  font-size: 1.2rem;
  margin: 20px 0 30px;
}

.cta-btn {
  background-color: #ff6347;
  color: white;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: #ff4500;
}

/* Services Section */
.services {
  padding: 50px 0;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.services-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.services .service {
  width: 30%;
  text-align: center;
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services .service img {
  margin-top: 10px;
  border-radius: 5px;
  max-width: 80%;
}

/* Impact Section */
.impact {
  padding: 50px 0;
  text-align: center;
}

.impact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.impact .stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.impact .stats div {
  text-align: center;
}

.impact .stats h3 {
  font-size: 2.2rem;
  color: #0057b8;
}

/* Contact Section */
.contact {
  background-color: #e9f1f9;
  padding: 50px 20px;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
}

.contact button {
  background-color: #0057b8;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
}

.contact button:hover {
  background-color: #003f8c;
}