body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 2px solid #ddd;
}



.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 150px; /* Adjust the width as needed */
    height: auto; /* Maintains aspect ratio */
}

@media (max-width: 768px) {
    .logo img {
        width: 120px; /* Slightly smaller for mobile screens */
    }
}


.flag {
    position: absolute;
    right: 5px;
    top: 5px;
}

.flag img {
    height: 130px;
}


nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.contact {
    display: flex;
    align-items: center; /* Aligns items vertically within the row */
    justify-content: flex-end; /* Aligns the content to the right */
    margin-right: 280px; /* Keep this if needed */
    gap: 20px; /* Adds space between "Call Us" and the button */
}

.contact p {
    font-size: 16px; /* Adjust font size if needed */
    margin: 0; /* Remove default margin */
}

.contact p strong {
    color: #0044cc; /* Replace with the exact blue color code from your logo */
    font-weight: bold; /* Ensure it stands out */
}

.contact .donate-button {
    background: #000;
    color: #fff;
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px; /* Match font size for consistency */
}
@media (max-width: 768px) {
    .contact p strong {
        font-size: 14px; /* Adjust for mobile view */
    }
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    background: #f3f3f3;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 10px;
    }

    .logo {
        margin-bottom: 10px;
        text-align: center;
        flex: 1 100%;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
    }

    .contact {
        flex: 1 100%;
        text-align: center;
        margin: 10px 0;
    }
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    background: #f3f3f3;
}

.hero img {
    max-width: 50%;
    border-radius: 8px;
}

.hero-text {
    max-width: 50%;
    text-align: center;
}

.hero-text h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.hero-text p {
    margin-bottom: 10px;
    font-weight: bold;
}

.donate-today {
    margin: 10px;
    font-size: 18px; 
    padding: 15px 30px; 
    background-color: #0044cc;
    color: white; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.donate-today:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    background-color: #0033aa; /* Darker shade on hover */
}

@media (max-width: 768px) {
    .donate-today {
        font-size: 16px; /* Slightly smaller for mobile */
        padding: 10px 20px; /* Adjust padding */
    }
}

.disclaimer {
    font-size: 20px; /* Increase the font size */
    font-weight: bold; /* Make the text bold */
    color: #0044cc; /* Optional: Match the logo's blue color */
    text-align: center; /* Optional: Center-align the text */
    margin-top: 10px; /* Adjust spacing */
}

@media (max-width: 768px) {
    .disclaimer {
        font-size: 18px; /* Slightly smaller for mobile devices */
    }
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #f9f9f9;
    border-top: 2px solid #ddd;
}

.social-links a img {
    height: 20px;
    margin: 0 5px;
}

.main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f3f3f3; /* Light green background */
    padding: 20px;
}

/*ways to give start css*/

    .header-ways {
            background-color: #ffffff;
            text-align: center;
            padding: 10px 0;
            font-size: 52px;
            font-weight: bold;
			color: #196284;
        }
       .main-ways {
            display: flex;
            flex-direction: row; 
            gap: 50px;
            background-color: #becb40;
        }
        
        .main-ways img {
            max-width: 40%; 
            height: auto; 
        }
        
        .content-ways {
            flex: 1; /* Allow the content to take available space */
            margin-right:20px;
        }
        
        .options-ways {
            display: flex;
            justify-content: flex-start; /* Align items to the left */
            gap: 20px; /* Space between options */
            flex-wrap: wrap; /* Allow wrapping if needed */
        }
        .content-ways h2 {
            color: #333;
            font-size: 40px;
        }
        .content-ways h3 {
            color: #333;
            font-size: 30px;
        }
        .content-ways p {
            color: #555;
            font-size: 17px;
            margin-bottom: 20px;
        }
        .options-ways {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding-bottom:20px;
        }
        .option-ways {
            text-align: center;
            background-color: #ffffff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            width: 150px;
            border: 2px solid black; /* Add a border with your desired color */

        }
        .option-ways img {
            width: 50px;
            height: 50px;
            margin-bottom: 10px;
        }
        .option-ways p {
            margin: 0;
            font-weight: bold;
        }
        .more-link {
            margin-top: 20px;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
/* Tablet Screens (768px to 1024px) */
@media (max-width: 1024px) {
    .main-ways {
        flex-direction: column; /* Stack items vertically */
        gap: 20px; /* Reduce gap */
    }
    
    .main-ways img {
        max-width: 80%; /* Make the image smaller */
        margin: 0 auto; /* Center the image */
    }
    
    .content-ways {
        margin-right: 0; /* Remove right margin */
        text-align: center; /* Center-align text */
    }
    
    .options-ways {
        justify-content: center; /* Center options */
    }
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .header-ways {
        font-size: 32px; /* Reduce header size */
        padding: 10px;
    }
    
    .main-ways img {
        max-width: 100%; /* Full width on smaller screens */
        height: auto;
    }
    
    .content-ways h2 {
        font-size: 24px; /* Reduce heading size */
    }
    
    .content-ways h3 {
        font-size: 20px; /* Reduce subheading size */
    }
    
    .content-ways p {
        font-size: 14px; /* Reduce paragraph font size */
    }
    
    .option-ways {
        width: 120px; /* Reduce option width */
        padding: 15px;
    }
    
    .option-ways img {
        width: 40px; /* Reduce icon size */
        height: 40px;
    }
    
    .more-link {
        font-size: 12px; /* Smaller font for the link */
    }
}


/*ways to give end css*/


 .mdp img {
            width: 95%; /* Set desired width */
            height: auto;
            display: block; /* Optional: centers image */
            margin: 0 auto; /* Optional: centers image */
        }

    .about-us {
        padding: 20px;
        background-color: #f3f3f3; /* Optional: Light background */
        text-align: left; /* Center-align text */
        max-width: 100%; /* Limit the width for readability */
        
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
    }

    .about-text h1 {
        font-size: 2rem; /* Adjust headline size */
        margin-bottom: 10px;
        color: #333; /* Dark text color */
    }

    .about-text p {
        font-size: 1rem; /* Adjust paragraph size */
        line-height: 1.6; /* Improve readability */
        color: #555; /* Slightly lighter text color */
    }
    
/*programs sub page */
.container {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  margin: 20px auto;
  background: #f3f3f3;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-section {
    flex: 1 1 300px;
    max-width: 40%;
    margin-top: 20px;
    margin-left: 20px;
}

.image-section img {
    max-width: 90%;
    border-radius: 8px;
    /*border: 1px solid #ccc;*/
}

.info-text {
  color: red;
  margin-top: 10px;
  font-size: 14px;
}

.content-section {
  flex: 2;
}

.content-section h2 {
  font-size: 1.5em;
  color: #333;
}

.content-section p {
  margin-bottom: 15px;
  color: #555;
}

.content-section ul {
  list-style: disc inside;
  margin-bottom: 15px;
  color: #555;
}

.diagram {
  width: 50%;
  margin: 20px 0;
  border: 1px solid #ddd;
}

.cost-info {
  font-weight: bold;
  color: #333;
}

.text-section {
      flex: 2 1 500px;
      background: #f3f3f3;
      padding: 20px;
      margin-top: 10px;
      /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
    }
    
    .text-section h3 {
      margin-top: 0;
      color: #333;
    }
    
    .text-section p {
      line-height: 1.6;
      color: #555;
    }
    
.right-part {
            /*margin: 0 20px;*/
            /*padding: 0 20px;*/
            margin-left: -500px;
            max-width: auto;
            margin-top: 100px;
        }
    
    .cost-box {
      background: #f9f9f9;
      padding: 15px;
      margin-top: 15px;
      border-left: 5px solid #007bff;
    }
/* New Doante Design Css Start*/

        .center-section {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .center-section p{
            font-weight: bold;
        }

        .flex-container-section {
            display: flex;
            gap: 20px;
        }

        .monthly-section {
            flex: 1;
        }

        .monthly-section .button-group-section {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .monthly-section .button-group-section button {
            flex: 1 0 calc(33.33% - 20px); /* Ensures three buttons per row */
            max-width: calc(33.33% - 20px); /* Limits button width */
            text-align: center;
        }

        .button-wrapper-section {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .session-label-section {
            font-size: 14px;
            color: #333;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .section-title-section {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #255b97;
        }

        .button-group-section {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .button-group-section .h2{
            color: #255b97;
            display: block;
            width: 100%; 
            margin-bottom: 10px; 
            word-wrap: break-word; 
        }
        .button-section {
            padding: 10px 20px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .button-section:hover {
            background-color: #f0f0f0;
        }

        .button-section.active {
            background-color: #f1c13b;
            font-weight: bold;
        }

        .monthly-options-section {
            margin-top: 20px;
        }

        .input-group-section {
            margin-top: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .input-section {
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 5px;
            width: 100px;
            text-align: center;
        }
        
/* New Doante Design Css end*/        

/*donate css end*/

        .container-donate {
            display: flex;
            gap: 20px;
            background: #fff;
            padding: 20px;
        }
        
        .form-container-donate {
            flex: 3;
        }
        
        .container-donate h2 {
            color: #333;
            text-align: center;
            margin-bottom: 20px;
        }

        .sidebar-donate {
            flex: 1;
            margin-top: 0;
            background-color: #f8f8f8;
            padding: 15px;
            border-left: 4px solid #d32f2f;
        }

        /* Styling for the form group rows */
        .form-group-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        /* Ensuring each field takes up half the width */
        .form-group {
            flex: 0 0 48%; 
        }
        
        /* Label and Input styling */
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #555;
        }
        
        .form-group input, 
        .form-group select {
            width: 90%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .checkbox-group {
            margin-top: 10px;
        }

        .checkbox-group label {
            display: block;
            color: #555;
        }

        
        .sidebar-donate img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .sidebar-donate p {
            color: #666;
            line-height: 1.5;
            font-size: 14px;
        }    
        
      #gift-amounts button {
        flex: 1;
        margin: 5px;
        padding: 10px;
        border: 1px solid #ccc;
        background: #f1f1f1;
        cursor: pointer;
        border-radius: 5px;
    }

    #gift-amounts button.active {
        background: #d32f2f;
        color: white;
    }
        
    .onetime-p{
        text-align: center;
        font-weight: bold;
    }
        
    .payment-tabs {
    display: flex;
    margin-bottom: 20px;
    gap: 5px; /* Adds 5px gap between buttons */
}

.payment-tabs button {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f1f1f1;
    cursor: pointer;
    font-size: 16px;
    color: #333; /* Default text color */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.payment-tabs button.active {
    background-color: #c00; /* Active button color */
    color: #fff;
    border-color: #fff;
}

/* Assign unique colors to the buttons */
.payment-tabs button[data-tab="stripe"] {
    background-color: #4cb050; 
    color: white;
}

.payment-tabs button[data-tab="stripe"] a {
    text-decoration: none; 
    color: inherit;        
}

.payment-tabs button[data-tab="bank-account"] {
    background-color: #07f; 
    color: white;
}

.payment-tabs button[data-tab="bank-wire"] {
    background-color: #f44236;
    color: white;
}

/*.payment-tabs button:hover {*/
/*    background-color: #333; */
/*    color: white;*/
/*}*/
        
/*media query */

@media (min-width: 768px) {
    .container-donate {
        flex-direction: row;
    }
}

.form-container-donate {
    flex: 3;
    width: 100%;
}

.sidebar-donate {
    flex: 1;
    margin-top: 0;
    background-color: #f8f8f8;
    padding: 15px;
    border-left: 4px solid #d32f2f;
    text-align: center;
}

#gift-amounts {
    flex-wrap: wrap;
}

#gift-amounts button {
    width: 100%;
    margin-bottom: 10px;
}

@media (min-width: 600px) {
    #gift-amounts button {
        width: 48%;
        margin-bottom: 0;
    }
}

.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.sidebar-donate img {
    max-width: 100%;
    margin-bottom: 15px;
}

.sidebar-donate h1,
.sidebar-donate h3,
.sidebar-donate p {
    margin: 5px 0;
}

/* Payment Form */
.payment-form {
    width: 100%;
    margin-top: 20px;
    padding: 0px;
    background: #fff;
}

.payment-form .h2{
    text-align: start;
}

.payment-form .p{
   color: #255b97;
   font-weight: Bold;
}


.payment-tabs {
    flex-wrap: wrap;
}

.payment-tabs button {
    flex: 1;
    margin-bottom: 10px;
}

.payment-container {
    display: flex;
    gap: 15px; 
    flex-wrap: wrap; 
}

.payment-group {
    flex: 1; 
    min-width: 150px; 
}

.payment-group label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.payment-group .payment-input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.payment-group .payment-input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.payment-submit {
    display: inline-block;
    background-color: #d32f2f; 
    color: #fff; 
    text-align: center; 
    text-decoration: none; 
    padding: 10px 20px; 
    font-size: 16px;
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%; 
    margin-top: 15px; 
}

.payment-submit:hover {
    background-color: #b71c1c;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.payment-submit:active {
    background-color: #9a0007; 
    box-shadow: none; 
}

.note{
    text-align: center;
}

.payment-tab-content {
    margin-top: 20px;
}


/* POP up Css Start */

.popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        justify-content: center;
        align-items: center;
    }

    .popup-content {
        background-color: white;
        padding: 40px 20px 20px; 
        border-radius: 10px;
        width: 50%;
        max-height: 80%;
        overflow-y: auto; 
        position: relative; 
    }

    .close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 30px;
        cursor: pointer;
        z-index: 10; 
    }
    
    .popup-content  img {
        max-width: 100%; 
        height: auto; 
        display: block; 
        margin: 20px auto; 
    }
    
    

/* Responsive Adjustments */
@media (min-width: 768px) {
    .container-donate {
        flex-direction: row;
        align-items: flex-start;
    }

    .form-container-donate,
    .sidebar-donate {
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .form-container-donate,
    .sidebar-donate {
        margin: 0;
    }

    #gift-amounts button {
        margin: 5px;
    }
}


/*donate css end*/
/*programs css start*/
    
    .grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            /*max-width: 1200px;*/
            margin-left: 20px;
            margin-right:20px;
        }

        .card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: left;
            position: relative;
        }

        .icon {
            font-size: 40px;
            color: #007bff;
            position: absolute;
            top: 20px;
            left: 20px;
        }

        .header {
            font-size: 20px;
            font-weight: bold;
            margin: 0;
            margin-left: 70px;
            /* Offset for icon */
        }

        .sub-header {
            color: gray;
            font-size: 14px;
            margin: 10px 0 20px 70px;
            /* Offset for icon */
        }

        .content-card {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .badge {
            display: inline-block;
            background-color: #e7f3fe;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            justify-content: center;
            position: relative;
            left: 120px;
            margin-bottom: 30px;
            margin-left: 30px;
        }

        .rating {
            margin-left: 25%;
            margin-bottom: 20px;
            max-width: 225px;
            height: 55px;
            border-radius: 5px;
            text-align: center;
            background-color: #e7f3fe;

        }

        .footer-card {
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 20px;
            text-align: left;
        }

        .buttons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            font-size: 14px;
            padding: 10px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            font-weight: bold;
            flex: 1;
        }

        .donate {
            background-color: #dc3545;
            color: white;
            margin: 0 5px;
        }

        .favorite {
            background-color: #f0f0f0;
            color: gray;
            margin-left: 5px;
        }
        .match{
            text-align: center;
            font-weight: bold;
        }
        
.bank{
    margin-left: 20px;
}

.bank h1{
    color:#105d9a;
    text-align:center;
    font-size:30px;
}

.bank img{
    max-width:80%;
}

/* For tablets and small laptops */
@media screen and (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .icon {
        font-size: 35px;
    }
    
    .header {
        font-size: 18px;
    }
    
    .sub-header, .content-card, .footer-card {
        font-size: 13px;
    }
}

/* For mobile devices */
@media screen and (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .icon {
        font-size: 30px;
    }

    .header {
        font-size: 16px;
        margin-left: 60px;
    }

    .sub-header {
        font-size: 12px;
        margin-left: 60px;
    }

    .content-card, .footer-card {
        font-size: 12px;
    }

   .badge {
        margin-left: -30px;
        margin-right: auto;
        display: inline-block; /* Keep it text-width */
        text-align: center;
    }

    .rating {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
}

/*programs css end*/
    
/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text h2 {
        font-size: 16px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .donate-today {
        font-size: 16px;
        padding: 10px 20px;
    }

    .disclaimer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        width: 95%; /* Extra padding for very small screens */
    }

    .hero-text h1 {
        font-size: 20px;
    }

    .hero-text h2 {
        font-size: 14px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .donate-today {
        font-size: 14px;
        padding: 8px 16px;
    }

    .disclaimer {
        font-size: 12px;
    }
}


    
/* Basic styling for the overall layout */
.ourmission {
    text-align: center;
    margin-bottom: 20px;
}

.ourmission h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

/* Styling for the content area */

.content-our-mission {
    text-align: center;
    margin: 20px auto;

}
/* Image Section */
        .image-our-mission {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .image-our-mission img {
            width: 100%;
            max-width: 300px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }


/* Text section styling */
.textourmission {
    flex: 2; /* Makes the text section slightly larger */
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    padding-left: 20px; /* Adds space between the images and text */
}

.textourmission p {
    margin-bottom: 15px;
}



/* Responsive Design */
@media screen and (max-width: 768px) {
    .content-our-mission {
        flex-direction: column;
        margin: 0 5%;
    }

    .textourmission {
        padding-right: 0;
    }

    .image img {
        max-width: 100%;
    }
}

.mdp {
    text-align: center;
    margin-top: 20px;
}

.mdp img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.highlighted-text {
    font-size: 1.5em;
    color: #0044cc !important; 
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .hero img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 16px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack the sections vertically */
        padding: 10px;
    }

    .image-section {
        flex: 1 1 300px;
        max-width: 40%;
        margin-right: 20px;
    }

    .image-section img {
        width: 100%;
        border-radius: 8px;
    }

    .content-section {
        font-size: 1rem; /* Adjust font size */
    }

    .content-section h2 {
        font-size: 1.5rem; /* Reduce heading size on mobile */
    }

    .content-section h3 {
        font-size: 1.2rem; /* Reduce subheading size */
    }

    .content-section p {
        font-size: 0.95rem; /* Adjust text size for readability */
    }

    .cost-info {
        font-size: 0.9rem; /* Make cost info text smaller */
    }
}

@media (max-width: 480px) {
    .content-section h2 {
        font-size: 1.2rem; /* Further reduce heading size for very small screens */
    }

    .content-section p {
        font-size: 0.85rem; /* Adjust paragraph text size for very small screens */
    }

    .diagram {
        width: 90%; /* Make diagram smaller for mobile */
        max-width: 350px; /* Limit diagram size */
    }

    .cost-info {
        font-size: 0.8rem; /* Further adjust cost text size */
    }
}

.button-section.onetime {
    background-color: #f1c13b;
    font-weight: bold;
}

/* Full-page loader styles */
#fullPageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* Animation for the spinner */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}