* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header styles */
header {
  background-color: #bf74d1;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header .logo img {
  width: 70px;
}

.hamburger-menu {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Navigation Styles */
nav {
  display: flex;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f7a800;
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
  .hamburger-menu {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }

  nav ul li {
    margin: 10px 0;
  }

  nav.active ul {
    display: flex;
  }
}

/* Hero Section */
#hero {
  background-image: url('images/Hero Image.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  height: 100vh;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-heading {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-icon {
  font-size: 100px;
  color: #f7a800;
  margin: 30px 0;
}

.hero-description {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  #hero {
    background-attachment: scroll;
    padding: 60px 15px;
    height: auto;
  }

  .hero-heading {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .hero-icon {
    font-size: 60px;
    margin: 20px 0;
  }

  .hero-description {
    font-size: 1.2rem;
    max-width: 90%;
  }
}

/* Section Styling */
section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
}

#about, #what-is-small-support, #services, #principles, #mission {
  background-color: #f4f4f4;
  border-bottom: 1px solid #ddd;
}

#about, #services {
  background-color: #e3f2fd;
}

#what-is-small-support, #principles {
  background-color: #f1f8e9;
}

#mission {
  background-color: #0862ac;
  color: #f1f8e9;
}

/* Image Styling for Sections */
.section-image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.section-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid black;
}

/* Service and Principle Cards */
.service-card, .principle {
  display: inline-block;
  width: 30%;
  margin: 10px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  max-width: 100%;
}

.service-card:hover, .principle:hover {
  transform: scale(1.05);
}

.icon {
  font-size: 40px;
  color: #0288d1;
  margin-bottom: 15px;
}

/* Service Image Styling */
.service-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #0288d1;
  margin-top: 15px;
}

/* Footer Styling */
footer {
  background-color: #bf74d1;
  color: white;
  text-align: center;
  padding: 20px;
}

footer .social a {
  margin: 0 10px;
  font-size: 30px;
  color: white;
}

footer .social a:hover {
  color: #f7a800;
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
  section {
    padding: 40px 15px;
  }

  section h2 {
    font-size: 2rem;
  }

  .service-card, .principle {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.2rem;
  }

  .hero-icon {
    font-size: 80px;
  }
}