* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    padding-top: 50px;
    cursor: default;
    position: relative;
}

body {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
} 

/* Max Width 320px */

/* Navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 9999;
}

.desktop-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    z-index: 9999;
}

.brand img {
    width: 180px;
    height: auto;
}

.nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    z-index: 1000;
    transition: transform 0.3s ease;
    padding: 0 2rem;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
}

.nav-links.active {
    transform: translateX(0);
}

.no-scroll {
    overflow: hidden;
}

.nav-links > * {
    margin: 0.5rem 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    position: relative;
    padding: 0.8rem 0;
    font-weight: 500;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    letter-spacing: 0.5px;
}

.nav-links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

.nav-links .cta-button {
    margin-top: 2rem;
    padding: 1rem 3rem 1rem 1.5rem;
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
}

.nav-links .cta-button::after {
    content: "";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.mobile-cta {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 250px;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center;
    z-index: 1001;
}

.mobile-cta a {
    display: block;
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-cta a::after {
    content: "";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.desktop-cta {
    display: none;
    cursor: pointer;
}

.mobile-cta a::after, .desktop-cta a::after {
    content: "";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.172 11l-5.364-5.364 1.414-1.414L20 12l-7.778 7.778-1.414-1.414L16.172 13H4v-2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.mobile-cta a:hover, .desktop-cta a:hover {
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mobile-cta a:hover::after, .desktop-cta a:hover::after {
    transform: translate(3px, -50%);
}  

.desktop-nav-links {
    display: flex;
    justify-content: center !important; /* Override any other justify-content */
    align-items: center;
    gap: 1.5rem;
    flex: 1;  /* This will help take up available space */
}

/* Adjust desktop navbar container to accommodate centered nav */
.desktop-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative; /* Add this */
}

/* Position brand and CTA absolutely to maintain nav centering */
.desktop-navbar .brand {
    position: absolute;
    left: 0;
}

.desktop-navbar .desktop-cta {
    position: absolute;
    right: 0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: transform 0.3s ease-in-out,
                opacity 0.2s ease-in-out;
    transform-origin: center;
}

/* Hamburger to X animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -6px);
}

.nav-links::-webkit-scrollbar {
    width: 5px;
    display: block;
}

.nav-links::-webkit-scrollbar-track {
    background: transparent;
}

.nav-links::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

/* Hero Section */

.hero {
    width: 100%;
    height: max-content;
    margin-top: 0;
}

.hero-container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 100%;
}

.hero-container .left {
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-container .left h1 {
    font-size: 1.5rem;
    color: #2B2D24;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.hero-container .left h1 span {
    color: #38B6FF;
}

.hero-container .left p {
    font-size: 1rem;
    color: #8D99AE;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.hero-container .left button {
    background: #38B6FF;
    color: white;
    border: none;
    padding: 1rem 2rem;
    margin: 1rem 0;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
}

.hero-container .right {
    width: 100%;
    height: 250px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.right-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 182, 255, 0.1) 0%, rgba(109, 213, 250, 0.1) 100%);
    border-top-left-radius: 500px;
    z-index: -1;
    transform-origin: center;
}

.hero-container .right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0;
    padding: 0;
    z-index: -1;
}

/* Projects Section */

#projects {
    width: 100%;
    height: max-content;
    padding: 2rem 1rem;
}

.projects-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
    align-items: center;
}

#projects p {
    font-size: 1rem;
    color: #8D99AE;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
}

.projects-container img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

/* About Section */
#about, #publishers-content-1, #publishers-content-2, #publishers-content-3, #publishers-content-4, #advertisers-content-1 {
    width: 100%;
    padding: 2rem 1rem;
    background-color: #FFFFFF;
}

.about-container, .publishers-content-1-container, .advertisers-content-1-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-content, .publishers-content-1-content, .advertisers-content-1-content {
    text-align: center;
}

.about-content h2, .publishers-content-1-content h2, .advertisers-content-1-content h2 {
    color: #38B6FF;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.about-content h1, .publishers-content-1-content h1, .advertisers-content-1-content h1 {
    font-size: 1.8rem;
    color: #2B2D24;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-content h1 span, .publishers-content-1-content h1 span, .advertisers-content-1-content h1 span {
    color: #38B6FF;
}

.about-content p, .publishers-content-1-content p, .advertisers-content-1-content p {
    color: #8D99AE;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-image, .publishers-content-1-image, .advertisers-content-1-image {
    width: 100%;
    max-width: 600px;
}

.about-image img, .publishers-content-1-image img, .advertisers-content-1-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #38B6FF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.learn-more span {
    transition: transform 0.3s ease;
}

.learn-more:hover span {
    transform: rotate(45deg);
}

/* Services Section */

#services, #advertisers-services {
    padding: 2rem 1rem;
    width: 100%;
    height: max-content;
    background-color: #ECF5FF;
}

.services-content {
    position: relative;
    z-index: 2;
}

.services-container, .advertisers-services-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-content h1, .advertisers-services-content h1 {    
    text-align: center;
    font-size: 1.8rem;
    color: #2B2D24;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-content h1 span, .advertisers-services-content h1 span {
    color: #38B6FF;
}

.services-grid, .advertisers-services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    width: 100%;
}

.service-card, .advertisers-service-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before, .advertisers-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover, .advertisers-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(56, 182, 255, 0.15);
}

.service-card:hover::before, .advertisers-service-card:hover::before {
    transform: scaleX(1);
}

.icon-container, .advertisers-icon-container {
    width: 60px;
    height: 60px;
    background: #ECF5FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .icon-container, .advertisers-service-card:hover .advertisers-icon-container {
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
}

.icon-container i, .advertisers-icon-container i {
    font-size: 28px;
    color: #38B6FF;
    transition: all 0.3s ease;
}

.service-card:hover .icon-container i, .advertisers-service-card:hover .advertisers-icon-container i {
    color: #FFFFFF;
    transform: scale(1.1);
}

.service-card h3, .advertisers-service-card h3 {
    font-size: 1.4rem;
    color: #2B2D24;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p, .advertisers-service-card p {
    color: #8D99AE;
    line-height: 1.6;
    font-size: 1rem;
}

/* Add/update these styles */
.container {
    width: 100%;
    padding: 0 1rem;
}

.mobile-navbar .container,
.desktop-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.desktop-navbar {
    display: none;
}

@media (min-width: 1024px) {
    .mobile-navbar {
        display: none;
    }

    .desktop-navbar {
        display: flex;
    }
}

/* Steps Section */
#steps, #testimonials, #verticals, #sub-cta {
    padding: 4rem 1rem;
    background: #FFFFFF;
}

.steps-container, .testimonials-container, .verticals-container, .sub-cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-header, .testimonials-header, .verticals-header, .sub-cta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-header .subtitle, .testimonials-header .subtitle, .verticals-header .subtitle, .sub-cta-header .subtitle {
    color: #38B6FF;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
    letter-spacing: 2px;
}

.steps-header h1, .testimonials-header h1, .verticals-header h1, .sub-cta-header h1 {
    font-size: 1.8rem;
    color: #2B2D24;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.steps-header h1 .highlight, .testimonials-header h1 .highlight, .verticals-header h1 .highlight, .sub-cta-header h1 .highlight {
    color: #38B6FF;
}

.steps-header p, .testimonials-header p, .verticals-header p, .sub-cta-header p {
    color: #8D99AE;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1rem;
}

.flow-line {
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        #38B6FF 0%,
        #38B6FF 50%,
        #ECF5FF 50%,
        #ECF5FF 100%
    );
    background-size: 20px 2px;
    animation: flowAnimationHorizontal 1s linear infinite;
    z-index: 1;
    transform: rotate(90deg);
}

@keyframes flowAnimationHorizontal {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 0;
    }
}

.steps-flow {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #ECF5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
}

.step-icon i {
    font-size: 32px;
    color: #38B6FF;
    transition: all 0.3s ease;
}

.step-item h3 {
    font-size: 1.4rem;
    color: #2B2D24;
    margin-bottom: 1rem;
}

.step-item p {
    color: #8D99AE;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Horizontal Flow Line (Desktop) */
.flow-line {
    position: absolute;
    top: 110%;  /* Changed from top: 40px */
    left: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        #38B6FF 0%,
        #38B6FF 50%,
        #ECF5FF 50%,
        #ECF5FF 100%
    );
    background-size: 20px 2px;
    transform: translate(-50%, -50%) rotate(90deg);  /* Added transform */
}


@keyframes flowAnimationHorizontal {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 0;
    }
}

/* Vertical Flow Line (Mobile) */
@keyframes flowAnimationVertical {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 20px;
    }
}

/* Testimonials Section */
.testimonials-container {
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.testimonialSwiper {
    width: 100%;
    padding: 30px 20px;
    padding-bottom: 60px;
}

.swiper-slide {
    width: 400px;
    opacity: 0.4;
    transition: all 0.5s ease;
    height: auto;
    transform: scale(0.9);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(56, 182, 255, 0.15);
}

.testimonial-card:hover {
    border-color: rgba(56, 182, 255, 0.3);
}

.testimonial-content {
    position: relative;
    padding-top: 2rem;
    flex-grow: 1;
}

.quote {
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    color: #38B6FF;
    font-size: 4rem;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote {
    transform: scale(1.1) rotate(-10deg);
    opacity: 0.2;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2B2D24;
    margin: 1rem 0 2rem;
    position: relative;
    z-index: 1;
}

.client-info {
    border-top: 1px solid rgba(56, 182, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: auto;
    position: relative;
}

.client-info::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #38B6FF, transparent);
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-info::before {
    width: 100px;
}

.client-details h4 {
    color: #2B2D24;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-details span {
    color: #8D99AE;
    font-size: 0.9rem;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(56, 182, 255, 0.1);
    border-radius: 20px;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: #38B6FF;
    background: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(56, 182, 255, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #38B6FF;
    color: #FFFFFF;
    transform: scale(1.1);
}

.swiper-pagination {
    position: absolute;
    bottom: 0 !important;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(56, 182, 255, 0.2);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #38B6FF;
    transform: scale(1.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .swiper-slide {
        width: 300px;
    }

    .testimonial-card {
        padding: 2rem;
        min-height: 250px;
    }

    .testimonial-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .quote {
        font-size: 3rem;
    }

    .testimonialSwiper {
        padding-bottom: 50px;
    }

    .swiper-pagination {
        bottom: 0 !important;
        margin-bottom: 0.5rem;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 5px !important;
    }
}

@media (min-width: 1024px) {
    .testimonialSwiper {
        padding-bottom: 70px;
    }

    .swiper-pagination {
        margin-bottom: 1.5rem;
    }
}

/* Swiper Custom Styles */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ECF5FF;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #38B6FF;
    transform: scale(1.4);
}

/* CTA Section */
#cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #ECF5FF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-container h1 {
    font-size: 3rem;
    color: #2B2D24;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.cta-container h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.cta-container h1 span {
    color: #38B6FF;
    display: block;
    margin-top: 0.5rem;
    position: relative;
}

.cta-container p {
    font-size: 1.3rem;
    color: #8D99AE;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button-section {
    background: linear-gradient(to bottom, #38B6FF, #6DD5FA);
    color: white;
    border: none;
    padding: 1.4rem 3.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 10px 20px rgba(56, 182, 255, 0.2);
}

.cta-button-section:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(56, 182, 255, 0.3);
}

/* Decorative elements */
.cta-shape {
    position: absolute;
    z-index: 1;
}

.cta-shape-1 {
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 182, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.cta-shape-2 {
    bottom: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(109, 213, 250, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite 1s;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(56, 182, 255, 0.2);
    border-radius: 50%;
    z-index: 1; 
}

@keyframes shimmer {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
    100% { transform: scale(1); opacity: 0.1; }
}

/* Footer */

#footer {
    padding: 2rem 1rem;
    background-color: #ECF5FF;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-brand img {
    width: 180px;
    height: auto;
}

.footer-brand p {
    font-size: 0.7rem;
    color: #8D99AE;
    max-width: 700px;
    line-height: 1.6;
    text-align: center;
}

.footer-brand .social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    color: #38B6FF;
    text-decoration: none;
    background: #FFFFFF;
    padding: 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quick-links h3 {
    font-size: 1.2rem;
    color: #2B2D24;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: #8D99AE;
    text-decoration: none;
}

.newsletter {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.newsletter h3 {
    font-size: 1.2rem;
    color: #2B2D24;
    font-weight: 600;
}

.newsletter-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.8rem;
    border-radius: 8px;
    border: 1px solid #8D99AE;
    background: #FFFFFF;
}

.newsletter-form input::placeholder {
    color: #8D99AE;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.8rem;
    border-radius: 8px;
    border: none;
    background: #38B6FF;
    color: #FFFFFF;
    font-weight: 400;
    cursor: pointer;
}

.footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: #8D99AE;
}

.footer-bottom a {
    color: #38B6FF;
    text-decoration: none;
}

/* desktop nav links */
.desktop-nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    transition: width 0.3s ease;
}

.desktop-nav-links a.active::after {
    width: 100%;
}

/* About Page Styles */
#about-hero {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #ECF5FF 0%, #FFFFFF 100%);
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.subtitle {
    color: #38B6FF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
}

.about-hero-content h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2B2D24;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #38B6FF;
}

.about-hero-content p {
    font-size: 0.8rem;
    color: #8D99AE;
    line-height: 1.6;
}

#about-story {
    padding: 4rem 2rem;
}

.about-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-page-image {
    flex: 1;
}

.rounded-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-page-content {
    flex: 1;
}

.about-page-content h2 {
    font-size: 1.8rem;
    color: #2B2D24;
    margin-bottom: 1.5rem;
}

.about-page-content p:not(.lead) {
    font-size: 0.8rem;
    color: #8D99AE;
    line-height: 1.6;
}

.lead {
    font-size: 0.8rem;
    color: #38B6FF;
    margin-bottom: 1rem;
    font-weight: 500;
}

.key-features {
    margin-top: 2rem;
}

.key-features span {
    font-size: 0.8rem;
    color: #2B2D24;
    line-height: 1.6;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature i {
    color: #38B6FF;
    font-size: 1.5rem;
}

#about-stats {
    padding: 4rem 2rem;
    background: #ECF5FF;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    color: #38B6FF;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2B2D24;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.8rem;
    color: #8D99AE;
    line-height: 1.6;
}

#about-values {
    padding: 4rem 2rem;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.values-container h2 {
    font-size: 1.8rem;
    color: #2B2D24;
    margin-bottom: 3rem;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card i {
    font-size: 1.8rem;
    color: #38B6FF;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.2rem;
    color: #2B2D24;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    font-size: 0.8rem;
    color: #8D99AE;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(56, 182, 255, 0.1);
}

#about-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ECF5FF 0%, #FFFFFF 100%);
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-cta-container h2 {
    font-size: 1.8rem;
    color: #2B2D24;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-cta-container p {
    font-size: 0.8rem;
    color: #8D99AE;
    margin-bottom: 2rem;
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 182, 255, 0.2);
}

/* Contact Page Styles */
#contact-hero {
    padding: 2rem;
    background: linear-gradient(135deg, #ECF5FF 0%, #FFFFFF 100%);
    text-align: center;
}

.contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-container .subtitle {
    font-size: 1rem;
    color: #38B6FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-hero-container h1 {
    font-size: 1.8rem;
    color: #2B2D24;
    margin: 1rem 0;
    line-height: 1.2;
    font-weight: 600;
}

.contact-hero-container p {
    font-size: 0.8rem;
    color: #8D99AE;
}

#contact-form {
    padding: 2rem 1rem;
    background: #FFFFFF;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    background: #FFFFFF;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 1rem;
}

.contact-info {
    padding: 1rem;
    background: linear-gradient(135deg, #38B6FF 0%, #6DD5FA 100%);
    border-radius: 15px;
    color: #FFFFFF;
}

.contact-info h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 0.8rem;
    color: #FFFFFF;
    line-height: 1.6;
}

.info-items {
    margin: 1rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item i {
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h3 {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 600;
}

.info-item p {
    font-size: 0.8rem;
    color: #FFFFFF;
    line-height: 1.6;
}

.contact-social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-social-links i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #ECF5FF;
    color: #38B6FF;
    font-size: 1rem;
}

.contact-social-links a {
    text-decoration: none;
    color: #FFFFFF;
}


.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(141, 153, 174, 0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    background: transparent;
    transition: all 0.3s ease;
    color: #2B2D24;
    margin-bottom: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: none;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #8D99AE;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #38B6FF;
    box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.1);
    outline: none;
}

.contact-form {
    width: 100%;
}

.contact-form button {
    width: 100%;
    background: #38B6FF;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.8rem;
}

.contact-form button:hover {
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 182, 255, 0.2);
}

.contact-form button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-form button:hover i {
    transform: translateX(3px);
}

/* Publishers Page Styles */
#publishers-hero, #advertisers-hero {
    padding: 2rem;
    background: linear-gradient(135deg, #ECF5FF 0%, #FFFFFF 100%);
    text-align: center;
}

.publishers-hero-container, .advertisers-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.publishers-hero-container .subtitle, .advertisers-hero-container .subtitle {
    color: #38B6FF;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.publishers-hero-container h1, .advertisers-hero-container h1 {
    font-size: 1.8rem;
    color: #2B2D24;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.publishers-hero-container h1 span, .advertisers-hero-container h1 span {
    color: #38B6FF;
}

.publishers-hero-container p, .advertisers-hero-container p {
    font-size: 0.8rem;
    color: #8D99AE;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.publishers-hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.publishers-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

#publisher-cta, #advertiser-cta {
    padding: 2rem;
    background: #FFFFFF;
    text-align: center;
}

.publisher-cta-container, .advertiser-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.publisher-cta-container h2, .advertiser-cta-container h2 {
    font-size: 2rem;
    color: #2B2D24;
    margin-bottom: 1.5rem;
}

.publisher-cta-container p, .advertiser-cta-container p {
    font-size: 0.8rem;
    color: #8D99AE;
    margin-bottom: 2rem;
}

.publisher-cta-button, .advertiser-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    color: white;
    padding: 1.2rem 2.5rem;
    margin: 2rem auto;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.publisher-cta-button:hover, .advertiser-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 182, 255, 0.2);
}

.publisher-cta-container h2, .advertiser-cta-container h2 {
    font-size: 1.8rem;
    color: #2B2D24;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.publisher-cta-container p, .advertiser-cta-container p {
    font-size: 1rem;
    color: #8D99AE;
    margin-bottom: 1rem;
    font-weight: 400;
    margin: 0 auto;
}

/* Verticals Section Styles */
#verticals {
    padding: 2rem;
    background: linear-gradient(135deg, #ECF5FF 0%, #FFFFFF 100%);
    text-align: center;
}

.verticals-container {
    max-width: 1200px;
    margin: 0 auto;
}

.verticals-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.vertical-card {
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vertical-card-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.vertical-card-image img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.vertical-card-content {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.vertical-card h3 {
    font-size: 0.8rem;
    color: #2B2D24;
    margin-top: 1rem;
    font-weight: 500;
}

/* Sub CTA Section Styles */

.sub-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sub-cta-header {
    margin-bottom: 2rem;
}

.sub-cta-header p {
    max-width: 800px;
}

.sub-cta-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sub-cta-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sub-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.sub-cta-button,
.publishers-hero-cta-button, .advertisers-hero-cta-button {
    display: block;
    margin: 0 auto;
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sub-cta-button:hover,
.publishers-hero-cta-button:hover, .advertisers-hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 182, 255, 0.2);
}

/* Publishers Hero CTA Button Styles */

.publishers-hero-cta-button, .advertisers-hero-cta-button {
    margin-top: 2rem;
}

/* Publishers Content Styles */

.publishers-hero-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#publishers-content-2, #publishers-content-4 {
    background: linear-gradient(135deg, #ECF5FF 0%, #FFFFFF 100%);
}

#publishers-content-2 .publishers-content-1-container, #publishers-content-4 .publishers-content-1-container {
    flex-direction: column-reverse;
}

.publishers-content-1-image img {
    border-radius: 15px;
}

.publishers-hero-content a, .publishers-content-1-content a, .advertisers-hero-content a, .advertisers-content-1-content a {
    text-decoration: none;
    color: white;
}

.cta-container a, .sub-cta-content a {
    text-decoration: none;
    color: #FFFFFF;
}

/* Advertisers Benefits Section */
#advertisers-benefits {
    padding: 4rem 2rem;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.advertisers-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.benefits-header {
    text-align: left;
    max-width: 800px;
}

.benefits-header h2 {
    font-size: 1.2rem;
    color: #2B2D24;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefits-header h1 {
    font-size: 2.5rem;
    color: #38B6FF;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.benefits-header p {
    font-size: 1.1rem;
    color: #8D99AE;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    color: #38B6FF;
    font-size: 1.5rem;
    background: #ECF5FF;
    padding: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #2B2D24;
    line-height: 1.4;
}

.benefits-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.benefits-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 182, 255, 0.2);
}

.benefits-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(56, 182, 255, 0.1);
}

.benefits-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

/* Add these rules */
body {
    overflow-x: hidden;
    width: 100%;
}

#about-hero,
#about-story,
#about-stats,
#about-values,
#about-cta {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
}

.about-hero-container,
.about-story-container,
.stats-container,
.values-container,
.about-cta-container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Fix for mobile layout */
@media (max-width: 768px) {
    .about-story-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-page-image,
    .about-page-content {
        width: 100%;
    }

    .stats-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Fix for stats container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Fix for values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

/* Add flex properties for desktop layout */
@media (min-width: 768px) {
    .advertisers-benefits-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .benefits-content {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .benefits-header {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        text-align: left;
    }

    .benefits-image {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        justify-self: end;
    }

    .benefits-image img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.form-group input.error,
.form-group textarea.error {
    border: 1px solid #ff0000 !important;
}

.form-group.invalid label {
    color: #ff0000;
}

#publisher-cta, #advertiser-cta {
    padding: 8rem 2rem;  /* Increased padding */
    background: linear-gradient(135deg, #ECF5FF 0%, #FFFFFF 100%);
    position: relative;
    min-height: 400px;  /* Add minimum height */
    overflow: hidden;    /* Add overflow hidden */
}

.publisher-cta-container, .advertiser-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;         /* Ensure content stays above particles */
}

/* Compliance Section Styles */
#compliance {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

.compliance-container {
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-content {
    text-align: center;
}

.compliance-content h1 {
    font-size: 1.8rem;
    color: #2B2D24;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.compliance-content p {
    font-size: 1rem;
    color: #8D99AE;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.compliance-tools-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.compliance-tool {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.compliance-tool:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(56, 182, 255, 0.15);
}

.compliance-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #38B6FF, #6DD5FA);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.compliance-tool:hover::before {
    transform: scaleX(1);
}

.compliance-tool-image {
    width: 180px;
    height: auto;
    margin: 0 auto 1.5rem auto;
}

.compliance-tool img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.compliance-tool:hover img {
    transform: scale(1.1);
}

.compliance-tool h3 {
    font-size: 1.4rem;
    color: #2B2D24;
    margin-bottom: 1rem;
    font-weight: 600;
}

.compliance-tool p {
    font-size: 0.9rem;
    color: #8D99AE;
    line-height: 1.6;
    margin: 0;
}

.compliance-tool p span {
    color: #38B6FF;
}

.compliance-content a {
    text-decoration: none;
    color: #FFFFFF;
}

/* Success Popup Styles */
.success-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 1rem 2rem;
    margin-left: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.success-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.success-popup i {
    margin-right: 8px;
}

.success-popup p {
    font-size: 0.8rem;
    color: #FFFFFF;
    font-weight: 500;
}

.phone-input-container {
    flex: 1;
    position: relative;
    display: flex;
    gap: 8px;
}

.iti {
    width: 100%;
    display: block;
    position: relative;
}

.iti__selected-flag {
    display: none !important; 
}

.country-code-input {
    width: 70px !important;
    padding: 0.8rem 0.5rem;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-align: center;
}

.phone-number-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.country-code-input:focus,
.phone-number-input:focus {
    outline: none !important;
    border-color: #38B6FF !important;
    box-shadow: 0 0 0 2px rgba(56, 182, 255, 0.1) !important;
}

.info-item a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 0.8rem;
}

textarea {
    font-family: montserrat;
    font-weight: 500;
}