* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f7fa;
    color: #222;
    line-height: 1.6;
}

header {
    background: #ffffff;
    padding: 16px 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo {
    height: 50px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a {
    text-decoration: none;
    font-family: 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #7e7d8a;
}
nav a:hover {
    color: #32a0e9;
}
.find-btn {
    background: #00d76b;
    padding: 8px 16px;
    border-radius: 6px;
    color: #fff !important;
}

.hero {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.hero-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 350px;
    width: 40%;
    height: auto;
    z-index: 1;
}
.hero .green-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.intro {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}
.intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.intro h1 span {
    color: #1a73e8;
}
.intro p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: #444;
}
.green-btn {
    padding: 12px 24px;
    background: #00d76b;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}
.green-btn:hover {
    background: #00b25a;
}
.programs {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.programs.reverse {
    flex-direction: row-reverse;
}
.programs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.programs .content,
.programs .program-img {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 500px;
}

.program-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.programs h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.programs p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    color: #fff;
}

.programs .btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.programs .btns a {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

.programs .btns .green-btn {
    background: #00d76b;
    color: #fff;
}

.programs .btns .blue-btn {
    background: #1a73e8;
    color: #fff;
}

.programs .btns .green-btn:hover {
    background: #00b25a;
}

.programs .btns .blue-btn:hover {
    background: #155bb5;
}

.blue {
    background-image: url("Images/Create-Bg.webp");
}
.blue::before {
    background: rgba(26, 115, 232, 0.85);
    opacity: 75%;
}

.purple {
    background-image: url("Images/JR-Bg.webp");
}
.purple::before {
    background: rgba(103, 58, 183, 0.85);
    opacity: 75%;
}

.teal {
    background-image: url("Images/CAMP-BG.webp");
}
.teal::before {
    background: rgba(0, 150, 136, 0.85);
    opacity: 75%;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.impact-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.impact-section {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.impact-bg {
  width: 100vw; 
  max-height: none;
  display: block;
  object-fit: cover;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw; 
  margin-right: -50vw;
}

.thumb-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  max-width: 500px;
}

.thumb {
  width: 100%;
  height: auto;
  display: block;
}

.impact-thumb {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: auto;
  z-index: 2;
}