body {
    overflow-y: scroll;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    position: fixed;
    background-color: white;
    width: 100%;
    z-index: 2;
    height: 70px;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
nav img {
    height: 48px;
    margin-left: 200px;
    margin-right: auto;
}
nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0 200px 0 auto;
    padding: 0;
}
nav ul li {
    display: flex;
    align-items: center;
}
nav ul li a {
    text-decoration: none;
    font-size: 1.15rem;
    color: grey;
    font-weight: bold;
    transition: color 0.2s ease;
}
nav ul li a:hover {
    color: #00bfff;
}
.find-location {
    background: #27ae60;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 24px;
    font-weight: bold;
    text-decoration: none;
    margin-left: 2rem;
    transition: background 0.2s;
}
.find-location:hover {
    background: #219150;
}
.under-nav {
    background: linear-gradient(90deg, #009fe3 0%, #005baa 50%, #00bfff 100%);
    border-radius: 8px;
    padding: 4px;
    box-sizing: content-box;
    border-top-left-radius: 100vw 48px;
    border-top-right-radius: 100vw 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}
.section-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-center img {
    display: block;
}
.section-text {
    flex: 1;
    text-align: center;
}
.section-text h1 {
    font-size: 3em;
}
.section-text span {
    color: #0074D9;
}
.section-text p {
    color: grey;
}
.logos {
    text-align: center;
    font-size: 1.5rem;
}
.logos a {
    color: grey;
    text-decoration: none;
    margin: 0 10px;
}
.video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.video-section p {
    text-align: center;
}
.video-section img {
    width: 750px;
    height: auto;
    display: block;
    border-radius: 24px;
    margin-top: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.offer {
    color: #0074D9;
    text-align: center;
    margin-bottom: 0;
}
.offer-title {
    text-align: center;
    font-size: 3rem;
    margin-top: 0;
}
.program-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    height: 400.22px;
}
.program-section img {
    display: block;
    max-width: 500px;
    width: 100%;
    height: auto;
}
.program-content {
    max-width: 400px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.program-label {
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: bold;
}
.program-label span {
    font-weight: bold;
}
.program-content p {
    margin: 0;
    color: #fff;
}
.program-content button {
    background-color: darkturquoise;
    color: white;
    width: 150px;
    height: 50px;
    border: none;
    border-radius: 12px;
    font-size: 1em;
    font-weight: bold;
}

.image-row {
      display: flex;
      justify-content: center; 
      align-items: center;
      width: 100%;
    }

    .image-row img {
      width: 30%;   
      height: auto;
      margin: 0 5px;
      transition: transform 0.3s ease;
    }

    .image-row img.middle {
      width: 35%;   
    }