    /* Initial transparent navbar */
    .navbar {
        background: transparent !important;
        transition: all 0.3s ease;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }
    
    /* Sticky navbar when scrolled */
    .navbar.sticky-top {
        position: fixed !important;
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    /* Initial navbar text color (white on hero) */
    .navbar .navbar-brand h2 {
        color: #ffffff !important;
    }
    
    .navbar .navbar-nav .nav-link {
        color: #ffffff !important;
    }
    
    /* Sticky navbar text color (blue when white background) */
    .navbar.sticky-top .navbar-brand h2 {
        color: #06a3da !important;
    }
    
    .navbar.sticky-top .navbar-nav .nav-link {
        color: #091e3e !important;
    }
    
    /* Hover and active states */
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #06a3da !important;
    }
    
    /* Adjust hero section padding when navbar is sticky */
    body.sticky-navbar .hero {
        padding-top: 150px;
    }
    
    /* For mobile view */
    @media (max-width: 991.98px) {
        .navbar {
            position: relative;
            background: #ffffff !important;
        }
        
        .navbar .navbar-brand h2 {
            color: #06a3da !important;
        }
        
        .navbar .navbar-nav .nav-link {
            color: #091e3e !important;
        }
        
        .navbar.sticky-top {
            position: relative !important;
            box-shadow: none;
        }
        
        body.sticky-navbar .hero-section {
            padding-top: 130px;
        }
    }

    
/* ================================
   IT SERVICES HERO SECTION
================================ */

.it-services-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://blog.udemy.com/wp-content/uploads/2014/06/bigstock-Mixed-group-in-business-meetin-23883404.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 60px;  /* ❗ remove left/right padding */
}


/* Overlay */
.hero-overlay {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Content */
.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 30px 15px;   /* mobile-safe padding only here */
    margin: 0 auto;       /* force center */
    animation: fadeInUp 1s ease-out;
}


.hero-title {
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700 !important; /* Medium instead of bold */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); /* Softer shadow */
    text-align: center;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
}


/* Highlight */
.hero-title .highlight {
    color: #ffffff;
    /* font-weight: 800; */
}


/* Description */
.hero-description {
    line-height: 1.8;
    color: #f0f8ff;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}


/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Button Base */
.hero-buttons .btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    font-family: 'Rubik', sans-serif;
}


/* Primary Button */
.hero-buttons .btn-primary {
    background-color: #06a3da;
    color: #ffffff;
    border: 2px solid #06a3da;
}

.hero-buttons .btn-primary:hover {
    background-color: transparent;
    color: #06a3da;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Outline Button */
.hero-buttons .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-buttons .btn-outline:hover {
    background-color: #ffffff;
    color: #091e3e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* ================================
   ANIMATION
================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================
   RESPONSIVE DESIGN
================================ */


/* Large Screens */
@media (max-width: 1400px) {

    .hero-title {
        font-size: 3.2rem;
    }
}


/* Tablets */
@media (max-width: 992px) {

    .it-services-hero-section {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }
}


/* Mobile */
@media (max-width: 768px) {

    .it-services-hero-section {
        min-height: 100vh; /* Full screen */
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}


/* Extra Large Screens */
@media (min-width: 1800px) {

    .it-services-hero-section {
        min-height: 90vh;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.4rem;
        max-width: 1000px;
    }
}

/* What We Do Section - PPC Advertising */
.what-we-do-section {
    padding: 50px 0 50px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-title-main {
    color: #091e3e;
    margin-bottom: 5px !important;
    position: relative;
    display: inline-block;
    text-align: left;
    width: 100%;
    /* font-weight: 700; */
    letter-spacing: -0.02em;
}

.company-name-subtitle {
    color: #06a6e0;
    margin-bottom: 5px;
    text-align: left;
}

.section-tagline {
    color: #555;
    /* font-weight: 400; */
    line-height: 1.6;
    margin-bottom: 5px;
    text-align: left;
    /* font-size: 1.2rem; */
}

/* Content Area */
.what-we-do-content {
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    text-align: left;
}

.what-we-do-content p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    text-align: left;
}

/* .what-we-do-highlight {
    margin: 15px 0;
    text-align: left;
} */

/* .what-we-do-highlight p {
    margin-bottom: 0;
    color: #444;
    text-align: left;
    font-weight: 500;
    background: rgba(6, 166, 224, 0.04);
    padding: 15px;
    border-left: 4px solid #06a6e0;
    border-radius: 0 8px 8px 0;
} */

/* Image Container */
.what-we-do-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(6, 166, 224, 0.12);
}

.object-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(6, 166, 224, 0.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 166, 224, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-container:hover .overlay-icon {
    transform: scale(1);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Items Animation - PPC Specific */
.animated-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(6, 166, 224, 0.1);
    border-radius: 50px;
    color: #06a6e0;
    margin-right: 10px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
    text-align: left;
    font-weight: 500;
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    background: rgba(6, 166, 224, 0.2);
    transform: translateY(-2px);
}

.feature-icon-animate {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-animate {
    transform: scale(1.2);
}

/* Image Animation */
.image-animate {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.image-animate.animated {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Floating App Icons - PPC Style */
.floating-app-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06a6e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    opacity: 0;
    transform: translateY(20px);
    animation: floatIcon 6s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.floating-app-icon:nth-child(1) { --delay: 0; animation-delay: 0s; }
.floating-app-icon:nth-child(2) { --delay: 1; animation-delay: 1s; }
.floating-app-icon:nth-child(3) { --delay: 2; animation-delay: 2s; }
.floating-app-icon:nth-child(4) { --delay: 3; animation-delay: 3s; }

.image-animate.animated .floating-app-icon {
    opacity: 1;
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

/* Content Animation Enhancements */
.what-we-do-content p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.what-we-do-content.animated p {
    opacity: 1;
    transform: translateY(0);
}

.what-we-do-content.animated p:nth-child(1) {
    transition-delay: 0.2s;
}

.what-we-do-content.animated p:nth-child(2) {
    transition-delay: 0.4s;
}

.what-we-do-content.animated .what-we-do-highlight p {
    transition-delay: 0.6s;
}

/* Overlay Icon Animation Enhancement */
.overlay-icon {
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .what-we-do-section {
        padding: 50px 0;
    }
    
    .what-we-do-content {
        margin-bottom: 25px;
        min-height: 300px;
    }
    
    .image-container {
        min-height: 300px;
    }
    
    .section-tagline {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 40px 0;
    }
    
    .what-we-do-content {
        min-height: 280px;
        padding: 20px;
    }
    
    .what-we-do-content p {
        margin-bottom: 12px;
    }
    
    .image-container {
        min-height: 280px;
    }
    
    .section-tagline {
        margin-bottom: 20px;
    }
    
    .animated-features {
        justify-content: flex-start;
    }
    
    .feature-item {
        padding: 6px 12px;
    }
    
    .floating-app-icon {
        width: 30px;
        height: 30px;
    }
}


/* Our Services Section - PPC Specializations */
.services-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.services-title-main {
    color: #091e3e;
    /* font-size: 2.2rem;
    font-weight: 700; */
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.services-tagline {
    color: #555;
    /* font-size: 1.1rem; */
    margin-top: 5px;
    max-width: 1200px !important;
}

/* .title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #06a6e0, #0d6efd);
    border-radius: 2px;
    margin-top: 5px;
} */

/* Service Card */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(6, 166, 224, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #06a6e0, #0d6efd);
    transition: height 0.3s ease;
    border-radius: 4px 0 0 4px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 166, 224, 0.12);
    border-color: transparent;
}

.service-card:hover::before {
    height: 100%;
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(6, 166, 224, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 32px;
    color: #06a6e0;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #06a6e0, #0d6efd);
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

/* Service Title */
.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #091e3e;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Service Description */
.service-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* CTA Button */
.btn-services-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: linear-gradient(135deg, #06a6e0, #0d6efd);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(6, 166, 224, 0.25);
    border: none;
}

.btn-services-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(6, 166, 224, 0.35);
    color: white;
}

.btn-services-cta i {
    transition: transform 0.3s ease;
}

.btn-services-cta:hover i {
    transform: translateX(5px);
}

/* Animation Support (reuse from previous) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title-main {
        font-size: 1.9rem;
    }
    
    .service-card {
        padding: 25px 18px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-title-main {
        font-size: 1.7rem;
    }
    
    .services-tagline {
        font-size: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .services-title-main {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 20px 15px;
    }
}


/* Biggest Digital Marketing Challenges Section */
.challenges-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #c9deea 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.challenges-title-main {
    color: #091e3e;
    /* font-size: 2.2rem;
    font-weight: 700; */
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.challenges-tagline {
    color: #555;
    /* font-size: 1.1rem; */
    margin-top: 5px;
    max-width: 1200px;
}

/* Challenge Card */
.challenge-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(6, 166, 224, 0.08);
    position: relative;
    overflow: hidden;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 166, 224, 0.12);
    border-color: transparent;
}

/* Left Icon Column */
.challenge-icon-wrapper {
    flex-shrink: 0;
    margin-right: 20px;
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: rgba(6, 166, 224, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.challenge-icon i {
    font-size: 28px;
    color: #06a6e0;
    transition: transform 0.3s ease;
}

.challenge-card:hover .challenge-icon {
    background: linear-gradient(135deg, #06a6e0, #0d6efd);
}

.challenge-card:hover .challenge-icon i {
    color: white;
    transform: scale(1.1);
}

/* Right Content Column */
.challenge-content {
    flex: 1;
}

/* Badges */
.challenge-badge {
    display: inline-block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.solution-badge {
    display: inline-block;
    background: rgba(6, 166, 224, 0.1);
    color: #06a6e0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-top: 15px;
    margin-bottom: 8px;
}

/* Titles */
.challenge-title {
    font-size: 1.3rem;
    /* font-weight: 700; */
    color: #091e3e;
    margin-bottom: 10px;
}

.solution-title {
    font-size: 1.1rem;
    /* font-weight: 600; */
    color: #06a6e0;
    margin-bottom: 8px;
}

/* Descriptions */
.challenge-description,
.solution-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.challenge-description {
    margin-bottom: 5px;
}
/* 
/* Stats / CTA Wrapper */
.challenges-stats-wrapper {
    background: linear-gradient(135deg, #f8faff, #fff);
    border-radius: 16px;
    padding: 30px 40px;
    border: 1px solid rgba(6, 166, 224, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.stats-heading {
    color: #091e3e;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.stats-text {
    color: #555;
    margin-bottom: 0;
    font-size: 1rem;
}

.btn-challenges-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #06a6e0, #0d6efd);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(6, 166, 224, 0.25);
    border: none;
}

.btn-challenges-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(6, 166, 224, 0.35);
    color: white;
}

.btn-challenges-cta i {
    transition: transform 0.3s ease;
}

.btn-challenges-cta:hover i {
    transform: translateX(5px);
} */

/* Animation Support */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .challenges-section {
        padding: 60px 0;
    }
    
    .challenges-title-main {
        font-size: 1.9rem;
    }
    
    .challenge-card {
        padding: 25px;
    }
    
    .challenge-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .challenges-section {
        padding: 50px 0;
    }
    
    .challenges-title-main {
        font-size: 1.7rem;
    }
    
    .challenge-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .challenge-icon-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .challenges-stats-wrapper {
        padding: 25px;
    }
    
    .btn-challenges-cta {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .challenges-title-main {
        font-size: 1.5rem;
    }
    
    .challenge-card {
        padding: 20px;
    }
}


/* PPC Advantage Section - Clean, Focused, Styled */
.ppc-advantage-section {
    padding: 50px 0 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    
}

/* Section Header */
.ppc-heading-main {
    color: #0a1a2f;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    width: 100%;              /* Full width */
    max-width: 1200px;         /* Increase content width */
    text-align: left;         /* Align to left */
    margin-left: 0;           /* Remove auto centering */
}

.ppc-subhead {
    color: #555;
    margin-top: 5px;
    width: 100%;              /* Full width */
    max-width: 1200px;         /* Increase width */
    text-align: left;         /* Align left */
    margin-left: 0;           /* Remove center alignment */
}


.ppc-intro-text {
    /* font-size: 1.25rem; */
    line-height: 1.7;
    color: #1e2a3a;
    /* font-weight: 500; */
   ;
}

/* 8-Column Grid Container */
.ppc-grid-container {
    width: 100%;
}

.ppc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Grid Item */
.ppc-grid-item {
    background: white;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 166, 224, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ppc-grid-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(6, 166, 224, 0.12);
    border-color: rgba(6, 166, 224, 0.2);
}

/* Grid Icon */
.ppc-grid-icon {
    width: 60px;
    height: 60px;
    background: rgba(6, 166, 224, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.ppc-grid-icon i {
    font-size: 28px;
    color: #06a6e0;
    transition: transform 0.3s ease;
}

.ppc-grid-item:hover .ppc-grid-icon {
    background: linear-gradient(135deg, #06a6e0, #0d6efd);
}

.ppc-grid-item:hover .ppc-grid-icon i {
    color: white;
    transform: scale(1.1);
}

/* Grid Title */
.ppc-grid-title {
    font-size: 1.15rem;
    /* font-weight: 700; */
    color: #0a1a2f;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Grid Description */
.ppc-grid-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Closing Paragraph */
.ppc-closing-wrapper {
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
    border-radius: 20px;
    padding: 30px 40px;
    border: 1px solid rgba(6, 166, 224, 0.15);
    text-align: center;
}

.ppc-closing-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #1e2a3a;
    font-style: italic;
    margin-bottom: 0;
    font-weight: 450;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .ppc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .ppc-advantage-section {
        padding: 60px 0;
    }
    
    .ppc-heading-main {
        font-size: 1.9rem;
    }
    
    .ppc-intro-text {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .ppc-advantage-section {
        padding: 50px 0;
    }
    
    .ppc-heading-main {
        font-size: 1.7rem;
    }
    
    .ppc-subhead {
        font-size: 1.1rem;
    }
    
    .ppc-intro-wrapper {
        padding: 25px;
    }
    
    .ppc-intro-text {
        font-size: 1.05rem;
    }
    
    .ppc-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .ppc-closing-wrapper {
        padding: 25px;
    }
    
    .ppc-closing-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ppc-heading-main {
        font-size: 1.5rem;
    }
    
    .ppc-grid-item {
        padding: 20px;
    }
}



/* SEO vs PPC Comparison Table - Fixed & Optimized */
:root {
    --seo-primary: #06a6e0;
    --ppc-primary: #0d6efd;
    --seo-dark: #0583b3;
    --ppc-dark: #0a58ca;
    --dark-bg: #091e3e;
    --light-bg: #f8faff;
    --light-gray: #eef2f7;
    --border-color: #e1e8f0;
    --text-dark: #1e2a3a;
    --text-light: #555;
    --white: #ffffff;
}

.seoppc-table-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
}

.seoppc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Table Header */
.seoppc-table-header {
    text-align: center;
    margin-bottom: 30px;
}

.seoppc-table-title {
    /* font-size: 2.4rem;
    font-weight: 700; */
    color: var(--dark-bg);
    margin-bottom: 5px !important;
    letter-spacing: -0.02em;
    position: relative;
    /*padding-bottom: 18px;*/
}

/* .seoppc-table-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--seo-primary), var(--ppc-primary));
    border-radius: 2px;
} */

.seoppc-table-subtitle {
    /* font-size: 1.15rem; */
    color: var(--text-light);
    line-height: 1.6;
    max-width: 1200px !important;
    margin: 0 auto;
    margin-top: 5px !important;
}

/* Table Container */
.seoppc-simple-table {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(9, 30, 62, 0.08);
    border: 1px solid var(--border-color);
}

/* Table Rows */
.seoppc-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.seoppc-table-row:last-child {
    border-bottom: none;
}

.seoppc-table-row:not(.seoppc-header-row):hover {
    background: rgba(6, 166, 224, 0.02);
}

/* Header Row */
.seoppc-header-row {
    background: var(--dark-bg);
}

.seoppc-header-row .seoppc-table-cell {
    padding: 28px 20px;
}

/* Category Header */
.seoppc-category-header {
    background: #1e3a5f; /* Slightly lighter than dark-bg for better visibility */
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.seoppc-category-header h3 {
    font-size: 1.3rem;
    /* font-weight: 700; */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* SEO Header */
.seoppc-seo-header {
    background: linear-gradient(135deg, var(--seo-primary), var(--seo-dark));
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* PPC Header */
.seoppc-ppc-header {
    background: linear-gradient(135deg, var(--ppc-primary), var(--ppc-dark));
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* Header Content */
.seoppc-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.seoppc-header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    margin-bottom: 5px;
}

.seoppc-header-content h3 {
    font-size: 1.8rem;
    /* font-weight: 800; */
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    line-height: 1.1;
}

.seoppc-header-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    display: inline-block;
}

/* Table Cells */
.seoppc-table-cell {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    min-height: 100px;
}

/* Category Cell */
.seoppc-category-cell {
    background: #f8fafd;
    border-right: 1px solid var(--border-color);
    justify-content: center;
    text-align: center;
}

.seoppc-category-cell h4 {
    font-size: 1.2rem;
    /* font-weight: 700; */
    color: var(--dark-bg);
    margin: 0;
    line-height: 1.4;
}

/* SEO Cell */
.seoppc-seo-cell {
    background: rgba(6, 166, 224, 0.03);
    border-right: 1px solid var(--border-color);
}

/* PPC Cell */
.seoppc-ppc-cell {
    background: rgba(13, 110, 253, 0.03);
}

/* Cell Content */
.seoppc-cell-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.seoppc-cell-content i {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
    margin-top: 2px;
}

.seoppc-seo-cell .seoppc-cell-content i {
    color: var(--seo-primary);
    border: 1.5px solid rgba(6, 166, 224, 0.3);
}

.seoppc-ppc-cell .seoppc-cell-content i {
    color: var(--ppc-primary);
    border: 1.5px solid rgba(13, 110, 253, 0.3);
}

.seoppc-cell-content p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-dark);
    /* font-weight: 450; */
    flex: 1;
}

/* Table Note */
/* .seoppc-table-note {
    margin-top: 30px;
    text-align: center;
    padding: 16px 24px;
    background: var(--light-bg);
    border-radius: 50px;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(6, 166, 224, 0.15);
}

.seoppc-table-note p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
} */

/* .seoppc-table-note i {
    color: var(--seo-primary);
    font-size: 1.1rem;
} */

/* Responsive - Desktop First */
@media (max-width: 1100px) {
    .seoppc-table-title {
        font-size: 2.2rem;
    }
    
    .seoppc-header-content h3 {
        font-size: 1.6rem;
    }
    
    .seoppc-category-header h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .seoppc-table-section {
        padding: 60px 0;
    }
    
    .seoppc-table-title {
        font-size: 2rem;
    }
    
    .seoppc-table-subtitle {
        font-size: 1.05rem;
        padding: 0 15px;
    }
    
    .seoppc-header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .seoppc-header-content h3 {
        font-size: 1.4rem;
    }
    
    .seoppc-table-cell {
        padding: 20px 16px;
    }
    
    .seoppc-category-cell h4 {
        font-size: 1.1rem;
    }
    
    .seoppc-cell-content p {
        font-size: 0.92rem;
    }
}

/* Mobile Breakpoint - Stacked Cards */
@media (max-width: 768px) {
    .seoppc-table-section {
        padding: 50px 0;
    }
    
    .seoppc-table-title {
        font-size: 1.9rem;
    }
    
    .seoppc-table-subtitle {
        font-size: 1rem;
    }
    
    .seoppc-simple-table {
        border-radius: 20px;
        overflow: visible;
        background: transparent;
        box-shadow: none;
        border: none;
    }
    
    .seoppc-table-row {
        display: block;
        margin-bottom: 25px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border: 1px solid var(--border-color);
        background: var(--white);
    }
    
    .seoppc-table-row.seoppc-header-row {
        display: none; /* Hide header row on mobile */
    }
    
    .seoppc-table-cell {
        padding: 20px;
        min-height: auto;
        border: none !important;
        display: block;
        width: 100%;
        position: relative;
    }
    
    /* Category Cell on Mobile */
    .seoppc-category-cell {
        background: var(--dark-bg);
        border-bottom: 3px solid var(--seo-primary) !important;
        padding: 18px 20px;
    }
    
    .seoppc-category-cell h4 {
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 700;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    /* SEO Cell on Mobile */
    .seoppc-seo-cell {
        background: white;
        border-bottom: 1px solid var(--border-color) !important;
        padding-top: 35px;
    }
    
    .seoppc-seo-cell::before {
        content: 'SEO • Long-Term Asset';
        display: inline-block;
        position: absolute;
        top: -12px;
        left: 20px;
        background: var(--seo-primary);
        color: white;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        box-shadow: 0 4px 10px rgba(6, 166, 224, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    /* PPC Cell on Mobile */
    .seoppc-ppc-cell {
        background: white;
        padding-top: 35px;
    }
    
    .seoppc-ppc-cell::before {
        content: 'PPC • Immediate Results';
        display: inline-block;
        position: absolute;
        top: -12px;
        left: 20px;
        background: var(--ppc-primary);
        color: white;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .seoppc-cell-content {
        align-items: center;
    }
    
    .seoppc-cell-content i {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .seoppc-cell-content p {
        font-size: 0.95rem;
    }
    
    /* Table Note on Mobile */
    .seoppc-table-note {
        border-radius: 20px;
        padding: 16px 20px;
        margin-top: 20px;
        width: 100%;
    }
    
    .seoppc-table-note p {
        font-size: 0.95rem;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .seoppc-table-title {
        font-size: 1.7rem;
    }
    
    .seoppc-table-title::after {
        width: 80px;
    }
    
    .seoppc-table-subtitle {
        font-size: 0.95rem;
    }
    
    .seoppc-category-cell {
        padding: 16px 16px;
    }
    
    .seoppc-category-cell h4 {
        font-size: 1.1rem;
    }
    
    .seoppc-table-cell {
        padding: 18px 16px;
    }
    
    .seoppc-seo-cell::before,
    .seoppc-ppc-cell::before {
        font-size: 0.7rem;
        padding: 5px 16px;
        left: 16px;
    }
    
    .seoppc-cell-content {
        gap: 12px;
    }
    
    .seoppc-cell-content i {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .seoppc-cell-content p {
        font-size: 0.9rem;
    }
    
    .seoppc-table-note p {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .seoppc-table-note i {
        font-size: 1rem;
    }
}



/* PCP CTA Section with Background Image - Compact Version */
.bms-cta-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://content.app-sources.com/s/51780403845024877/uploads/Images/purpose-vision-values-3306219.png?format=webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    /*margin-top: 60px; */
}

.cta-wrapper {
    position: relative;
    z-index: 2;
}

.cta-content {
    color: #ffffff;
    padding-right: 20px;
}

.cta-title {
    font-weight: 700;
    color: #06a3da;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #06a3da 0%, #68a4c4 100%);
    color: white;
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(6, 163, 218, 0.3);
    overflow: hidden;
    position: relative;
    min-width: 220px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(104, 164, 196, 0.4);
    border-color: transparent;
    color: white;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Animated elements for visual interest */
.bms-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(6, 163, 218, 0.1) 50%, transparent 70%);
    animation: shimmer 8s infinite linear;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design for Compact CTA */
@media (max-width: 992px) {
    .bms-cta-section {
        padding: 50px 0;
    }
    
    .cta-button {
        padding: 15px 35px;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .bms-cta-section {
        padding: 45px 0;
    }
    
    .cta-title {
        margin-bottom: 15px;
    }
    
    .cta-description {
        line-height: 1.6;
    }
    
    .cta-content {
        padding-right: 0;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .cta-action {
        text-align: center !important;
        margin-top: 0;
    }
    
    .cta-button {
        padding: 14px 30px;
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .bms-cta-section {
        padding: 40px 20px;
    }
    
    .cta-title {
        margin-bottom: 15px;
    }
    
    .cta-description {
        line-height: 1.6;
    }
    
    .cta-button {
        width: 100%;
        max-width: 220px;
        padding: 12px 25px;
    }
    
    .cta-note {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .bms-cta-section {
        padding: 35px 20px;
    }
}




/* PPC Ads Types Section - Premium Card Grid */
.ppc-ads-types-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

.ppc-ads-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.ppc-ads-header {
    text-align: center;
    margin-bottom: 40px;
}

.ppc-ads-title {
    /* font-size: 2.5rem;
    font-weight: 800; */
    color: #091e3e;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

/* .ppc-ads-underline {
    width: 100px;
    height: 5px;
    background: #06a3da; 
    border-radius: 10px;
    margin: 0 auto 20px;
    box-shadow: 0 2px 10px rgba(6, 163, 218, 0.3);
} */

.ppc-ads-subtitle {
    /* font-size: 1.2rem; */
    color: #555;
    /* font-weight: 400; */
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ads Grid - 4 columns on desktop */
.ppc-ads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Ad Card */
.ppc-ad-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(6, 163, 218, 0.1); /* Updated to #06a3da */
    overflow: hidden;
}

.ppc-ad-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #06a3da; /* Updated to #06a3da */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ppc-ad-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 50px rgba(6, 163, 218, 0.15); /* Updated to #06a3da */
    border-color: rgba(6, 163, 218, 0.3); /* Updated to #06a3da */
}

.ppc-ad-card:hover::before {
    opacity: 1;
}

.ppc-ad-card-inner {
    padding: 30px 25px 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Icon Wrapper */
.ppc-ad-icon-wrapper {
    margin-bottom: 22px;
}

.ppc-ad-icon-bg {
    width: 70px;
    height: 70px;
    background: rgba(6, 163, 218, 0.12); /* Updated to #06a3da */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ppc-ad-icon-bg i {
    font-size: 32px;
    color: #06a3da; /* Updated to #06a3da */
    transition: all 0.3s ease;
}

.ppc-ad-card:hover .ppc-ad-icon-bg {
    background: #06a3da; /* Updated to #06a3da */
}

.ppc-ad-card:hover .ppc-ad-icon-bg i {
    color: white;
}

/* Card Title */
.ppc-ad-title {
    font-size: 1.25rem;
    /* font-weight: 700; */
    color: #091e3e;
    margin-bottom: 14px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Card Description */
.ppc-ad-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Platform Tags */
.ppc-ad-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.ppc-ad-platforms span {
    background: rgba(6, 163, 218, 0.08); /* Updated to #06a3da */
    color: #06a3da; /* Updated to #06a3da */
    font-size: 0.7rem;
    font-weight: 600;
     
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    /* text-transform: uppercase; */
    border: 1px solid rgba(6, 163, 218, 0.15); /* Updated to #06a3da */
    transition: all 0.2s ease;
}

.ppc-ad-card:hover .ppc-ad-platforms span {
    background: rgba(6, 163, 218, 0.15); /* Updated to #06a3da */
    border-color: rgba(6, 163, 218, 0.3); /* Updated to #06a3da */
}

/* Footer Banner */
.ppc-ads-footer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.ppc-footer-content {
    background: linear-gradient(135deg, #091e3e, #0a2a4a);
    padding: 20px 40px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.2); /* Updated to #06a3da */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ppc-footer-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ppc-footer-icon i {
    font-size: 1.3rem;
    color: white;
}

.ppc-footer-content p {
    margin: 0;
    font-size: 1.1rem;
    color: white;
    font-weight: 450;
    letter-spacing: 0.3px;
}

.ppc-footer-content p span {
    font-weight: 700;
    color: #06a3da; /* Updated to #06a3da */
    -webkit-text-fill-color: #06a3da; /* Updated to #06a3da */
    background: none;
}

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */

/* Tablet Landscape - 3 columns */
@media (max-width: 1100px) {
    .ppc-ads-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
    
    .ppc-ads-title {
        font-size: 2.2rem;
    }
}

/* Tablet Portrait - 2 columns */
@media (max-width: 850px) {
    .ppc-ads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ppc-ads-title {
        font-size: 2rem;
    }
    
    .ppc-ads-subtitle {
        font-size: 1.1rem;
    }
    
    .ppc-ad-card-inner {
        padding: 25px 20px 30px;
    }
    
    .ppc-ad-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .ppc-ad-icon-bg i {
        font-size: 28px;
    }
    
    .ppc-ad-title {
        font-size: 1.2rem;
    }
}

/* Mobile - 1 column */
@media (max-width: 576px) {
    .ppc-ads-types-section {
        padding: 60px 0;
    }
    
    .ppc-ads-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ppc-ads-title {
        font-size: 1.8rem;
    }
    
    .ppc-ads-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .ppc-ad-card-inner {
        padding: 28px 25px 32px;
    }
    
    .ppc-footer-content {
        flex-direction: column;
        text-align: center;
        padding: 25px 30px;
        border-radius: 30px;
        width: 100%;
    }
    
    .ppc-footer-content p {
        font-size: 1rem;
    }
    
    .ppc-footer-icon {
        margin-bottom: 5px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .ppc-ads-title {
        font-size: 1.6rem;
    }
    
    .ppc-ad-card-inner {
        padding: 25px 20px 28px;
    }
    
    .ppc-ad-platforms span {
        padding: 5px 12px;
        font-size: 0.65rem;
    }
}


/* Our PPC Marketing Process Section */
.ppc-process-section {
    padding: 50px 0 ;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.ppc-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.ppc-process-header {
    text-align: center;
    margin-bottom: 40px;
}

.ppc-process-title {
    /* font-size: 2.5rem;
    font-weight: 800; */
    color: #091e3e;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

/* .ppc-process-underline {
    width: 100px;
    height: 5px;
    background: #06a3da;
    border-radius: 10px;
    margin: 0 auto 20px;
    box-shadow: 0 2px 10px rgba(6, 163, 218, 0.3);
} */

.ppc-process-subtitle {
    /* font-size: 1.2rem; */
    color: #555;
    /* font-weight: 400; */
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.ppc-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 10px;
    position: relative;
}

/* Process Step */
.ppc-process-step {
    display: flex;
    gap: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.ppc-process-step:hover {
    transform: translateX(10px);
}

/* Step Left - Number and Line */
.ppc-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    flex-shrink: 0;
    position: relative;
}

.ppc-step-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #06a3da;
    background: white;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #06a3da;
    box-shadow: 0 10px 25px rgba(6, 163, 218, 0.15);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ppc-process-step:hover .ppc-step-number {
    background: #06a3da;
    color: white;
    transform: scale(1.05);
}

.ppc-step-line {
    width: 3px;
    background: linear-gradient(to bottom, #06a3da, rgba(6, 163, 218, 0.2));
    flex-grow: 1;
    min-height: 30px;
}

.ppc-process-step:last-child .ppc-step-line {
    display: none;
}

/* Step Content */
.ppc-step-content {
    display: flex;
    gap: 25px;
    background: white;
    border-radius: 24px;
    padding: 30px;
    flex: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(6, 163, 218, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.ppc-process-step:hover .ppc-step-content {
    box-shadow: 0 25px 45px rgba(6, 163, 218, 0.12);
    border-color: rgba(6, 163, 218, 0.3);
}

/* Step Icon */
.ppc-step-icon-wrapper {
    flex-shrink: 0;
}

.ppc-step-icon-bg {
    width: 70px;
    height: 70px;
    background: rgba(6, 163, 218, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ppc-step-icon-bg i {
    font-size: 32px;
    color: #06a3da;
    transition: all 0.3s ease;
}

.ppc-process-step:hover .ppc-step-icon-bg {
    background: #06a3da;
}

.ppc-process-step:hover .ppc-step-icon-bg i {
    color: white;
}

/* Step Info */
.ppc-step-info {
    flex: 1;
}

.ppc-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #091e3e;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.ppc-step-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

/* Step Deliverables */
.ppc-step-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ppc-step-deliverables span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #06a3da;
    background: rgba(6, 163, 218, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(6, 163, 218, 0.15);
    transition: all 0.2s ease;
}

.ppc-step-deliverables span i {
    color: #06a3da;
    font-size: 0.8rem;
}

.ppc-process-step:hover .ppc-step-deliverables span {
    background: rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.3);
}

/* Bottom CTA Banner */
/* .ppc-process-cta {
    margin-top: 40px;
}

.ppc-cta-content {
    background: linear-gradient(135deg, #091e3e, #0a2a4a);
    border-radius: 30px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ppc-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.ppc-cta-icon i {
    font-size: 2.2rem;
    color: white;
}

.ppc-cta-text {
    flex: 1;
    margin-left: 30px;
}

.ppc-cta-text h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.ppc-cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.ppc-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #091e3e;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: none;
    flex-shrink: 0;
}

.ppc-cta-button i {
    transition: transform 0.3s ease;
    color: #06a3da;
}

.ppc-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: #f0f7ff;
}

.ppc-cta-button:hover i {
    transform: translateX(8px);
} */

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */

/* Tablet Landscape */
@media (max-width: 992px) {
    .ppc-process-title {
        font-size: 2.2rem;
    }
    
    .ppc-process-subtitle {
        font-size: 1.1rem;
    }
    
    .ppc-step-content {
        padding: 25px;
    }
    
    .ppc-step-title {
        font-size: 1.4rem;
    }
    
    .ppc-cta-content {
        padding: 35px 40px;
        flex-wrap: wrap;
    }
    
    .ppc-cta-text {
        margin-left: 20px;
    }
    
    .ppc-cta-text h4 {
        font-size: 1.4rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .ppc-process-section {
        padding: 60px 0;
    }
    
    .ppc-process-title {
        font-size: 2rem;
    }
    
    .ppc-process-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .ppc-process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .ppc-step-left {
        flex-direction: row;
        width: 100%;
        gap: 20px;
        align-items: center;
    }
    
    .ppc-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .ppc-step-line {
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #06a3da, rgba(6, 163, 218, 0.2));
        flex-grow: 1;
        min-height: auto;
    }
    
    .ppc-step-content {
        flex-direction: column;
        margin-left: 0;
        gap: 20px;
    }
    
    .ppc-step-icon-wrapper {
        align-self: flex-start;
    }
    
    .ppc-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .ppc-cta-icon {
        margin-bottom: 10px;
    }
    
    .ppc-cta-text {
        margin-left: 0;
    }
    
    .ppc-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .ppc-process-title {
        font-size: 1.8rem;
    }
    
    .ppc-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .ppc-step-content {
        padding: 22px;
    }
    
    .ppc-step-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .ppc-step-icon-bg i {
        font-size: 28px;
    }
    
    .ppc-step-title {
        font-size: 1.3rem;
    }
    
    .ppc-step-desc {
        font-size: 0.95rem;
    }
    
    .ppc-step-deliverables span {
        font-size: 0.75rem;
        padding: 5px 14px;
    }
    
    .ppc-cta-content {
        padding: 30px 25px;
    }
    
    .ppc-cta-icon {
        width: 70px;
        height: 70px;
    }
    
    .ppc-cta-icon i {
        font-size: 1.8rem;
    }
    
    .ppc-cta-text h4 {
        font-size: 1.3rem;
    }
    
    .ppc-cta-text p {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .ppc-process-title {
        font-size: 1.6rem;
    }
    
    .ppc-step-deliverables {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ppc-step-deliverables span {
        width: 100%;
    }
}


/* How Does PPC Marketing Work? - Simple with Icons */
.ppc-work-section {
    padding: 50px 0 50px 0;
   background: linear-gradient(135deg, #f9fdff 0%, #f3faff 100%);

}

.ppc-work-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px;
   
    padding-left: 0; 
}

/* Header */
.ppc-work-header {
    margin-bottom: 10px;
    text-align: left;
}

.ppc-work-header h2 {
    /* font-size: 2.2rem;
    font-weight: 700; */
    color: #091e3e;
    margin-bottom: 5px !important;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* .ppc-work-line {
    width: 70px;
    height: 4px;
    background: #06a3da;
    border-radius: 2px;
} */

/* Intro Paragraphs */
.ppc-work-intro {
    margin-bottom: 35px;
    max-width: 1200px;
     text-align: left;
    margin-left: 0;
}

.ppc-work-intro p {
    /* font-size: 1.05rem; */
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
}

.ppc-work-keypoint {
    /* font-weight: 600; */
    color: #091e3e;
    background: #f8fbff;
    padding: 15px 20px;
    border-left: 5px solid #06a3da;
    border-radius: 0 8px 8px 0;
    /* font-size: 1.1rem; */
}

/* Three Cards Grid */
.ppc-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.ppc-work-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    padding: 35px 25px 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.ppc-work-card:hover {
    border-color: #06a3da;
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.1);
    transform: translateY(-8px);
}

/* Icon Wrapper */
.ppc-work-icon-wrapper {
    margin-bottom: 25px;
}

.ppc-work-icon {
    width: 70px;
    height: 70px;
    background: rgba(6, 163, 218, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ppc-work-icon i {
    font-size: 32px;
    color: #06a3da;
    transition: all 0.3s ease;
}

.ppc-work-card:hover .ppc-work-icon {
    background: #06a3da;
}

.ppc-work-card:hover .ppc-work-icon i {
    color: white;
}

/* Card Title */
.ppc-work-card h3 {
    font-size: 1.4rem;
    /* font-weight: 700; */
    color: #091e3e;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* Card Paragraph */
.ppc-work-card p {
    /* font-size: 0.98rem; */
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
    flex-grow: 1;
}




/* Responsive */
@media (max-width: 992px) {
    .ppc-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ppc-work-container {
        padding: 0 25px;
    }
    
    .ppc-work-header h2 {
        font-size: 1.9rem;
    }
    
    .ppc-work-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ppc-work-card {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .ppc-work-section {
        padding: 50px 0;
    }
    
    .ppc-work-header h2 {
        font-size: 1.7rem;
    }
    
    .ppc-work-intro p {
        font-size: 0.98rem;
    }
    
    .ppc-work-keypoint {
        font-size: 1rem;
        padding: 12px 18px;
    }
    
    .ppc-work-card h3 {
        font-size: 1.3rem;
    }
    
    .ppc-work-icon {
        width: 60px;
        height: 60px;
    }
    
    .ppc-work-icon i {
        font-size: 28px;
    }
}





/* FAQ Section Styles with #06a3da and #68a4c4 Color Scheme */
.faq-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    margin-bottom: 0; /* Ensure no bottom margin */
}

/* Remove any unwanted margin/padding after FAQ */
.faq-section + * {
    margin-top: 0 !important;
}

/* Footer container - remove top margin */
.container-fluid.px-0.bg-dark.text-light {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure FAQ container has proper spacing */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}

/* Rest of your existing FAQ styles remain the same... */

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-main-title {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.faq-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #68a4c4, #06a3da);
    border-radius: 2px;
}

/* First part of heading - "Frequently Asked" */
.first-part {
    color: #091e3e; /* Dark blue color */
}

/* Second part of heading - "Questions" */
.second-part {
    color: #06a3da; /* Blue color */
}

.faq-subtitle {
    font-size: 1rem;
    color: #444;
    max-width: 600px;
    margin: 20px auto 0;
    padding: 0 20px;
}

/* FAQ Item - Individual boxes with spacing */
.faq-item {
    margin-bottom: 14px; /* SPACE BETWEEN BOXES */
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    width: 100%;
    animation: fadeIn 0.5s ease forwards;
    box-shadow: 0 4px 15px rgba(6, 163, 218, 0.08);
    border: 1px solid #d1ecff;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    background: linear-gradient(90deg, rgba(6, 163, 218, 0.03), rgba(104, 164, 196, 0.03));
    box-shadow: 0 6px 20px rgba(6, 163, 218, 0.12);
    border-color: rgba(6, 163, 218, 0.3);
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    min-height: 70px; /* Taller question area */
    transition: all 0.3s ease;
    padding: 0 30px;
}

/* Question Content */
.question-content {
    display: flex;
    align-items: center;
    flex: 1;
}

/* FAQ Title */
.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #091e3e; /* Changed to blue for questions */
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0; /* Removed padding since we don't have Q: prefix */
}

.faq-title::before {
    display: none; /* Remove Q: prefix */
}

.faq-question:hover .faq-title {
    color: #0480b8; /* Slightly darker blue on hover */
}

.faq-item.active .faq-title {
    color: #06a3da; /* Keep blue when active */
    font-weight: 700;
}

/* FAQ Icon */
.faq-icon {
    color: #091e3e;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.1);
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(6, 163, 218, 0.3);
}

.faq-question:hover .faq-icon {
    background: rgba(6, 163, 218, 0.12);
    border-color: rgba(6, 163, 218, 0.15);
    transform: scale(1.05);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 30px;
    position: relative;
    line-height: 1.6;
    background: rgba(6, 163, 218, 0.02);
    border-top: 1px solid transparent;
}

.faq-answer::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #68a4c4, #06a3da);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 25px 30px;
    border-top: 1px solid rgba(6, 163, 218, 0.1);
}

.faq-item.active .faq-answer::before {
    opacity: 1;
}

.faq-answer p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 10px;
}

.faq-question:hover {
    transform: translateX(3px);
}

.faq-item.active .faq-question {
    transform: translateX(0);
}

/* FAQ Item Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-main-title {
        font-size: 2rem;
        padding-bottom: 12px;
    }
    
    .faq-main-title::after {
        width: 80px;
        height: 2.5px;
    }
    
    .faq-subtitle {
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .faq-item {
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .faq-question {
        min-height: 65px;
        padding: 0 20px;
    }
    
    .faq-title {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer::before {
        left: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 20px;
        max-height: 500px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .faq-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 10px;
    }
    
    .faq-main-title {
        font-size: 1.6rem;
        padding-bottom: 10px;
    }
    
    .faq-main-title::after {
        width: 60px;
        height: 2px;
    }
    
    .faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .faq-question {
        min-height: 60px;
        padding: 0 15px;
    }
    
    .faq-title {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-answer::before {
        left: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 15px;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* For larger screens */
@media (min-width: 1200px) {
    .faq-container {
        max-width: 900px;
    }
}

@media (min-width: 1400px) {
    .faq-container {
        max-width: 1000px;
    }
    
    .faq-item {
        margin-bottom: 18px;
    }
}