* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

@font-face {
font-family: 'BladeRunner';
src: url(font/BLADRMF_.TTF);
font-weight: normal;
font-style: normal;
}   
body {
    background-color: white;
}

.navbar {
    background-color: white;
    padding: 1rem 2rem;
    width: 100%;
    border-bottom: 1px solid #000000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    transform: scale(1.0);
}

/* Navigation Items */
.nav-items {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    font-weight: 500; /* Default weight */
    transition: color 0.2s ease, text-shadow 0.2s ease;
    background-color: transparent !important;
}

/* Prevent movement by setting a minimum width */
.nav-link span {
    display: inline-block;
    min-width: max-content; /* Ensures text width remains constant */
}

/* Only apply bold visually without affecting spacing */
.nav-link:hover span, 
.nav-link:hover .dropdown-icon { 
    color: #00008B;
    font-weight: 500; /* Keep same font-weight */
    text-shadow: 0.5px 0 0 #000, -0.5px 0 0 #000;
}

.dropdown-item {
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    font-weight: 500; /* Prevents shifting */
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.dropdown-item:hover {
    color: #00008B;
    font-weight: 500; /* No bolding to prevent shift */
    text-shadow: 0.5px 0 0 #000, -0.5px 0 0 #000;
}

.bold:hover {
color: #00008B;
    font-weight: 500; /* No bolding to prevent shift */
    text-shadow: 0.5px 0 0 #000, -0.5px 0 0 #000;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

/* Dropdown styling */
.resources-dropdown {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-icon {
    width: 25px;
    height: 25px;
    margin-left: -5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white !important;
    border: 1px solid #97b8e8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    flex-direction: column;
    min-width: 150px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;
}

.dropdown-item {
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    background-color: transparent !important;
}

.dropdown-item:hover {
    background-color: #97b8e8 !important;
}

.resources-dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.donate-btn {
    background-color: #232694 !important;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.donate-btn:hover {
    background-color: #151b60 !important;
}

.news-btn {
    background-color: #ff0000 !important;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.outreach-btn {
    background-color: #a2cda3 !important;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.outreach-btn:hover {
    background-color: #85b494 !important;
}

.news-btn:hover {
    background-color: #990000 !important;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 9999;
    position: relative;
}

/* Specifically target and force the hamburger bars to show */
.navbar .nav-container .hamburger-menu .bar1,
.navbar .nav-container .hamburger-menu .bar2,
.navbar .nav-container .hamburger-menu .bar3 {
    width: 30px;
    height: 3px;
    background-color: #333 !important;
    margin: 0;
    transition: 0.4s;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important; /* Force display with !important */
    }

    .nav-items {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* Start off-screen */
    height: 100vh !important;
    width: 250px !important;
    background-color: white !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 80px 30px 30px !important;
    transition: right 0.3s ease-in-out !important;
    z-index: 999 !important; /* High z-index to appear above other content */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1) !important;
}

    .nav-items.active {
        right: 0 !important; /* Force with !important */
display: flex !important;
    }

    .resources-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        box-shadow: none;
        border: none;
        background-color: transparent !important;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        transform: none;
        margin-top: 0.5rem;
    }

    .resources-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-icon {
        position: absolute;
        right: 0;
        transition: transform 0.3s ease;
    }

    .resources-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Transform hamburger to X when menu is open */
    .hamburger-menu.active .bar1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active .bar2 {
        opacity: 0;
    }

    .hamburger-menu.active .bar3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sponsors-section {
    background-color: white;
    margin-bottom: -100px;
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    margin-top: 40px;
    color: #333;
}

.sponsors-wrapper {
overflow: hidden;
white-space: nowrap;
position: relative;
width: 100%;
}

.sponsors-container {
display: flex;
gap: 32px;
width: max-content; /* Ensure enough space for scrolling */
animation: slide-scroll 120s linear infinite;
}
.sponsors-container:hover {
animation-play-state: paused;
}
.sponsor-item {
flex: 0 0 auto;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}

.sponsor-item img {
height: 100%;
width: auto;
object-fit: contain;
}

/* Keyframes for scrolling animation */
@keyframes slide-scroll {
from {
    transform: translateX(0);
}
to {
    transform: translateX(-50%); /* Moves only halfway since items are duplicated */
}
}

@media (max-width: 768px) {
    .sponsors-container {
display: flex;
gap: 32px;
animation: slide-scroll 60s linear infinite;
}
    .sponsors-section {
overflow: hidden;  /* Hide overflowing content */
width: 100%;  /* Full container width */
position: relative;
padding-bottom: 10px;
}

.logo-img {
    transform: scale(0.8); /* Decreases size to 80% */
}
}
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }


    .sub-teams {
background-color: white !important;
padding: 60px 20px;
}

.sub-teams {
padding: 50px 20px; /* Adds space inside the section */
border-radius: 10px; /* Optional: Rounded corners for a modern look */
text-align: center; /* Centers the title */
background-color: #80add8 !important; /* Your requested color */
}

.sub-teams-title {
text-align: center;
font-size: 32px;
margin-bottom: 50px;
max-width: 800px;
margin-left: auto;
margin-right: auto;

}

.teams-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.team-card {
    background-color: white;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 100%; /* Ensure all cards are the same height */
}

.team-card p {
    flex-grow: 1; /* Makes the paragraph take up extra space */
}

.team-icon {
width: 70px;
height: 50px;
margin-bottom: 15px;
}

.team-card h3 {
font-size: 24px;
margin-bottom: 10px;
}

.team-card p {
font-size: 16px;
line-height: 1.5;
color: #333;
margin-bottom: 20px;
}

.learn-more {
color: #000;
text-decoration: none;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 5px;
margin-top: auto; /* Pushes the button to the bottom */
}

.learn-more:hover {
text-decoration: underline;
}

@media (max-width: 768px) {
.teams-container {
    grid-template-columns: 1fr;
}

.sub-teams-title {
    font-size: 24px;
}

.team-card {
    padding: 20px;
}
}
.footer {
background-color: white;
padding: 60px 0 20px;
width: 100%;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 40px;
padding: 0 20px;
}

.footer-logo {
max-width: 150px;
}


.footer-logo-img {
width: 100px;
height: auto;
}

.footer-section h3 {
color: #000;
font-size: 18px;
margin-bottom: 20px;
font-weight: 600;
}

.footer-section ul {
list-style: none;
padding: 0;
}

.footer-section ul li {
margin-bottom: 12px;
}

.footer-section ul li a {
color: #333;
text-decoration: none;
font-size: 12px;
}

.footer-section ul li a:hover {
text-decoration: underline;
}

.subscribe-section {
grid-column: 5;
}

.subscribe-section p {
margin-bottom: 15px;
font-size: 14px;
}

.subscribe-form {
display: flex;
flex-direction: column;
gap: 10px;
}

.subscribe-input {
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
width: 100%;
}

.subscribe-button {
background-color: #232694;
color: white;
padding: 12px 24px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}

.subscribe-button:hover {
background-color: #151b60;
}

.privacy-notice {
font-size: 12px;
color: #666;
margin-top: 10px;
}

.footer-bottom {
margin-top: 60px;
padding-top: 20px;
border-top: 1px solid #ccc;
}

.footer-bottom-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.footer-bottom p {
font-size: 14px;
color: #666;
}

.footer-links {
display: flex;
gap: 20px;
}

.footer-links a {
color: #666;
text-decoration: none;
font-size: 14px;
}

.footer-links a:hover {
text-decoration: underline;
}

.social-icons {
display: flex;
gap: 15px;
}

.social-icons a {
display: flex;
align-items: center;
justify-content: center;
}

.social-icons img {
width: 24px;
height: 24px;
}

@media (max-width: 1024px) {
.footer-content {
    grid-template-columns: repeat(3, 1fr);
}

.subscribe-section {
    grid-column: auto;
}
}

@media (max-width: 768px) {
.footer-content {
    grid-template-columns: repeat(2, 1fr);
}


.footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-links {
    flex-direction: column;
    gap: 10px;
}
}

@media (max-width: 480px) {
.footer-content {
    grid-template-columns: 1fr;
}
}
.youth-development {
background-color: white;
padding: 80px 20px;
}
.youth-development5 {
background-color: white;
padding: 80px 20px;
margin-top: -130px;
}

.youth-development1 {
margin-top: 30px;
background-color: #80add8 !important; /* Your requested color */
padding: 15px;
margin-bottom: 0px;
}

.content-wrapper {
max-width: 1200px;
margin: 0 auto;
display: flex;
gap: 60px;
align-items: center;

}

.content-wrapper1 {
max-width: 1200px;
margin: 0 auto;
display: flex;
gap: 60px;
align-items: center;
margin-top: 100px;
}

.text-content {
flex: 1;
}

h2 {
font-size: 40px;
line-height: 1.2;
margin-bottom: 24px;
color: #000;
}

.description {
font-size: 18px;
line-height: 1.6;
color: #333;
margin-bottom: 32px;
}

.benefits-list {
list-style: none;
padding: 0;
display: flex;
flex-direction: column;
gap: 20px;
}

.benefits-list li {
display: flex;
align-items: center;
gap: 12px;
font-size: 16px;
color: #333;
}

.list-icon {
width: 24px;
height: 24px;
flex-shrink: 0;
}

.image-container-no {
flex: 1;
max-width: 600px;
border-radius: 10px;
}
.image-container-long {
flex: 1;
max-width: 600px;
height: 400px;
overflow: hidden;
position: relative;
border-radius: 10px;
}

.image-container-long img {
width: 100%;
height: 150%;
object-fit: cover; /* Ensures the image covers the container */}

.team-image {
width: 100%;
height: auto;
border-radius: 8px;
object-fit: cover;
}

@media (max-width: 1024px) {
.content-wrapper {
    gap: 40px;
}
.content-wrapper1 {
    gap: 40px;
}

h2 {
    font-size: 32px;
}
}

@media (max-width: 768px) {
.content-wrapper {
    flex-direction: column;
}

.content-wrapper1 {
    flex-direction: column;
}

.benefits-list {
    align-items: flex-start;
    text-align: left;
}

.text-content {
    text-align: center;
}

.benefits-list li {
    justify-content: center;
    font-size: 20px;
}

.image-container {
    order: -1;
}
}

@media (max-width: 480px) {
.youth-development {
    padding: 40px 20px;
}

h2 {
    font-size: 28px;
}

.description {
    font-size: 16px;
}

.benefits-list li {
    font-size: 15px;
}
.team-image {
    display: none;
}
}



.hero-container {
        display: flex;
        min-height: 100vh;
        background: white;
        padding: 2rem;
        margin-top: 0px;
    }

    .left-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        margin-top: -193px;
    }

    .right-section {
flex: 1.5;
display: flex;
justify-content: center; /* Centers the columns */
gap: 2rem; /* Space between the two columns */
padding: 1rem;
}

    h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        color: #000;
        font-family: 'BladeRunner' !important;
        text-transform: lowercase !important;
        color: #1a237e;
    }

    p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #333;
        margin-bottom: 2rem;
        max-width: 600px;
    }

    .buttons {
        display: flex;
        gap: 1rem;
    }

  .buttonss {
        display: flex;
        gap: 1rem;
    }
    .image-grid {
        width: 100%;
        height: 100%;
        width: 319.25px;
        height: 340px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .short {
        width: 100%;
        height: 100%;
        width: 319px;
        height: 212px;
        object-fit: cover;
        object-position: center 70%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .short1 {
        width: 100%;
        height: 100%;
        width: 319px;
        height: 212px;
        object-fit: cover;
        object-position: center 60%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .lengthy {
        width: 319px;
        height: 360px;
        object-fit: cover;
        object-position: center 75%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .lengthy1 {
        width: 319px;
        height: 360px;
        object-fit: cover;
        object-position: top;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .image-column {
display: flex;
flex-direction: column;
gap: 1rem; /* Space between images */
}
    .image-container {
width: 100%; /* Adjust based on your preference */
display: flex;
justify-content: center; /* Centers image */
}
.image-grid {
width: 100%; /* Makes images responsive to column width */
max-width: 350px; /* Adjust max width if needed */
height: auto;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mobile-image, .mobile-image2 {
display: none;
}

@media (max-width: 820px) {
    .mobile-image, .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin-left: 60px;
        border-radius: 10px;
    }

    .mobile-image {
        margin-top: 20px;
        margin-bottom: -403px;
    }

    .mobile-image2 {
        margin-top: -390px;
        margin-bottom: 50px;
    }
}

@media (max-width: 1024px) {
    .right-section {
        display: none;
    }

    .mobile-image, .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin-left: 60px;
        border-radius: 10px;
    }

    .mobile-image {
        margin-top: 10px;
        margin-bottom: -486px;
    }

    .mobile-image2 {
        margin-top: -475px;
        margin-bottom: 50px;
    }
}
/* Show mobile images only on smaller screens */
@media (max-width: 900px) {
.mobile-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    margin-bottom: -55%;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: -280px;
}

.mobile-image2 {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    margin-top: -50px;
    margin-bottom: 50px;
    border-radius: 10px;
}
.right-section {
    display: none;
}
}


    @media (max-width: 768px) {
        .container {
            flex-direction: column;
            padding: 1rem;
        }

        .left-section {
            padding: 1rem;
            margin-top: 200px;
        }

        h1 {
            font-size: 2.5rem;
        }
    }

    .btn {
        padding: 12px 24px;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-learn {
        background-color: #97b8e8;
        color: #000;
        padding: 12px 24px;
    }
    .btn-learn:hover {
        background-color: #7a9fd9;
    }

    .btn-donate {
        background-color: #1a237e;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.2s ease;
    }
   
    .btn-donate:hover {
        background-color: #151b60;
    }
@media (max-width: 768px) {

}

.video-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%; /* Ensures it takes full width */
}
.clickable-area {
display: inline-block;
text-decoration: none;
color: inherit; /* Keeps text color the same */
}

.clickable-area img,
.clickable-area h3 {
cursor: pointer; /* Makes it clear that it's clickable */
}
.video-container {
position: relative;
width: 100%;
max-width: 760px; /* Ensures it doesn't exceed the original size */
margin: auto;
}

.video-container iframe {
width: 100%; /* Makes it responsive */
height: auto;
aspect-ratio: 16 / 9; /* Maintains proper aspect ratio */
}

.footertext {
font-size: 16px;
}

/* Adjust for smaller screens */
@media (max-width: 600px) {
.video-container iframe {
    width: 90%; /* Shrinks the video */
    height: auto;
}
}

/* Mobile styles */
@media (max-width: 768px) {
.hero-container {
    display: block;
    justify-items: center;
    text-align: center;
}

.left-section {
    padding: 1rem;
    margin-top: 250px;
}



.buttons {
display: flex;
justify-content: center; /* Centers the button group */
align-items: center; /* Aligns them vertically */
gap: 15px; /* Adds space between buttons */
margin-top: 20px; /* Spacing from the text above */
flex-wrap: wrap; /* Allows wrapping if necessary on smaller screens */
}
.buttonss {
display: flex;
justify-content: center; /* Centers the button group */
align-items: center; /* Aligns them vertically */
gap: 15px; /* Adds space between buttons */
margin-top: 20px; /* Spacing from the text above */
flex-wrap: wrap; /* Allows wrapping if necessary on smaller screens */
}
}

@media (max-width: 768px) {
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -380px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    
}

@media (max-width: 440px) {
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: 0px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
}

@media (max-width: 430px) {
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: 0px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
}


@media (max-width: 412px) {
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: 0px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
}

@media (max-width: 402px) {
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: 0px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
}

@media (max-width: 393px) {
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: 0px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
}

@media (max-width: 390px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 389px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 388px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 387px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 386px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 385px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 384px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 383px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 382px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 381px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 380px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 379px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 378px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 377px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 376px) {
    .buttons {
    margin-left: -24px;
    }
    
    .mobile-image2 {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        margin-top: -28px;
        margin-bottom: 50px;
        border-radius: 10px;
    }
    }
@media (max-width: 375px) {
.buttons {
margin-left: -24px;
}

.mobile-image2 {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    margin-top: -28px;
    margin-bottom: 50px;
    border-radius: 10px;
}
}

.seo {
font-size: normal;
font-weight: normal;
}


.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex; /* Show by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.popup-content a {
  color: #007BFF;
  text-decoration: none;
}

.popup-content a:hover {
  text-decoration: underline;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #000;
}

.btn-orange {
    background-color: #d24412 !important;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
    margin-top: -100px;
    margin-bottom: 100px;
}
.btn-FLL {
    background-color: #232694 !important;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
    margin-top: -100px;
    margin-bottom: 100px;
}
@media (max-width: 768px) {
.buttonss {
display: flex;
justify-content: center; /* Centers the button group */
align-items: center; /* Aligns them vertically */
gap: 15px; /* Adds space between buttons */
margin-top: 100px; /* Spacing from the text above */
flex-wrap: wrap; /* Allows wrapping if necessary on smaller screens */
}
}