        body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        pointer-events: none;
        background: linear-gradient(45deg, rgba(10, 10, 10, 0.9), rgba(30, 60, 90, 0.2), rgba(115, 194, 251, 0.05));
    }
    
    .main-content {
        padding-top: clamp(80px, 10vh, 150px);
        padding-bottom: clamp(40px, 5vh, 60px);
        padding-left: clamp(10px, 5vw, 40px);
        padding-right: clamp(10px, 5vw, 40px);
        margin: 0 auto;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    h1 {
        font-size: clamp(2rem, 6vw, 4rem);
        padding-bottom: clamp(20px, 4vw, 40px);
        padding: min(20px);
        text-align: center;

    }

    h2 {
        font-size: clamp(1.3rem, 3vw, 1.6rem);
        text-align: center;
        color: var(--accent-blue);
        text-transform: uppercase;
    }

    p,
    ul li {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }

    .services-section {
        margin: 0 auto;
        width: 100%;
        max-width: clamp(900px, 80vw, 1200px);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: clamp(20px, 4vh, 40px);
        box-sizing: border-box;
        text-align: center;
        min-height: 80vh;
    }


    .services-container {
        display: flex;
        flex-direction: row;
        gap: clamp(20px, 5vw, 40px);
    }

    .service {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        padding: clamp(20px, 5vw, 40px);
        border-radius: clamp(8px, 2vw, 12px);
        text-align: center;
        max-width: clamp(300px, 40vw, 400px);
        transition: all 0.4s ease-in-out;
        box-shadow: 0 0 clamp(10px, 2vw, 20px) rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .service:hover {
        transform: scale(1.05);
        box-shadow: 0 0 clamp(15px, 3vw, 30px) rgba(255, 255, 255, 0.3);
    }

    .service h2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        font-weight: bold;
        margin-bottom: clamp(10px, 2vw, 20px);
        text-transform: none;
                color: #fff;

    }

    .service p {
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
        color: var(--text-light);
    }

    .service img {
        width: 20%;
        max-width: 30%;
        height: auto;
        object-fit: cover;
        border-radius: clamp(8px, 2vw, 12px);
        margin-bottom: clamp(10px, 2vw, 20px);
        display: block;
        margin: 0 auto;
        margin-bottom: clamp(10px, 2vw, 20px);

    }

    .add-services {
        width: 80vw;
        max-width: clamp(900px, 80vw, 1200px);
        margin: 0 auto;
        /* padding: clamp(20px, 5vh, 40px); */
        box-sizing: border-box;
    }

    .add-services .individual-service {
        text-align: left;
        margin-bottom: clamp(40px, 6vh, 80px);
    }

    .add-services .individual-service>h2 {
        text-align: center;
    }

    .add-services .individual-service h3 {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        margin: clamp(10px, 2vh, 20px) 0;
    }

    .add-services .individual-service p,
    .add-services .individual-service ul {
        margin: clamp(10px, 2vh, 20px) 0;
        line-height: 1.6;
    }

    .add-services .individual-service ul li {
        list-style: none;
    }

    .add-services .fa-solid {
        color: #408d37;
        margin-right: 8px;
    }

    .subhead {
        padding-top: clamp(40px, 4vh, 60px);
    }

    .pricing {
        width: min(90%, 80vw);
        margin: 0 auto clamp(40px, 8vh, 80px);
        text-align: center;
        padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 40px);
        background: linear-gradient(145deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 20, 0.9));
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }

    .pricing h2 {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        color: var(--text-light);
        margin-bottom: 1rem;
    }

    .pricing p {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--text-light);
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto 3rem;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(280px, 1fr));
        gap: clamp(20px, 4vw, 30px);
        margin: 0 auto;
        justify-items: center;
    }

    .plan {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: clamp(20px, 4vw, 30px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 360px;
        width: 100%;
    }

    .plan:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }

    .plan h3 {
        font-size: clamp(1.4rem, 2.5vw, 1.6rem);
        color: var(--accent);
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 600;
    }

    .plan .price {
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 700;
        color: var(--text-light);
        margin: 0.5rem 0;
        text-align: center;
    }

    .plan .price span {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--text-light);
        opacity: 0.7;
    }

    .plan p {
        font-size: clamp(0.9rem, 2vw, 1rem);
        color: var(--text-light);
        opacity: 0.8;
        margin: 0.5rem 0 1rem;
        text-align: center;
    }

    .plan ul {
        list-style: none;
        margin: 1rem 0;
        padding: 0;
        flex-grow: 1;
    }

    .plan li {
        font-size: clamp(0.9rem, 2vw, 1rem);
        color: var(--text-light);
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
    }

    .plan li::before {
        content: '\f00c';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        color: var(--accent);
        font-size: 0.9rem;
    }

    .plan.featured {
        background: linear-gradient(145deg, rgba(115, 194, 251, 0.15), rgba(50, 50, 50, 0.1));
        border: 2px solid var(--accent);
        position: relative;
        overflow: hidden;
    }

    .plan.featured::before {
        content: 'Most Popular';
        position: absolute;
        top: 20px;
        right: -50px;
        background: var(--accent);
        color: #fff;
        padding: 5px 50px;
        transform: rotate(45deg);
        font-size: 0.9rem;
        font-weight: 600;
    }

    .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem; /* space between buttons */
    margin-top: 1rem; /* optional spacing from content above */
}

    .plan .btn {
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        align-self: center;
        margin-top: 1rem;
    }


    .center {
        text-align: center;
    }

    .call-to-action {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    padding: clamp(30px, 6vw, 60px);
    text-align: center;
    margin: clamp(40px, 8vh, 80px) auto;
    max-width: clamp(700px, 90vw, 1000px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.call-to-action h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    text-transform: none;
}

.call-to-action p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: var(--accent);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #5aa4ec; /* A slightly lighter blue for hover effect */
    transform: translateY(-3px);
}


    @media screen and (max-width: 768px) {
        .services-container {
            flex-direction: column;
        }

        .pricing-grid {
            grid-template-columns: 1fr;
        }

        .plan.featured::before {
            right: -40px;
            padding: 5px 40px;
        }

    }