.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Section */
.search-ads-hero {
    background: linear-gradient(95.03deg, #226178 -4.53%, #00091D 102.52%);
    color: white;
    padding: 60px 0;
    text-align: right;
    position: relative;
    overflow: hidden;
}

.hero-container {

    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Right Section - Text Content */
.hero-right {
    flex: 1;
    width: 50%;
    position: relative;
    z-index: 2;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 140px;
    height: 140px;
    background-image: var(--hero-right-circle);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.hero-right::after {
    content: '';
    position: absolute;
    top: 150%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-image: var(--hero-bottom-circle);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
}

.hero-tagline {
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-title {
    font-size: 40px;
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.4;
}

.hero-button {
    padding: 10px 25px;
    background-color: #223C78;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #1a2d5e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Left Section - Image Content */
.hero-left {
    flex: 1;
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -50px;
    width: 60px;
    height: 60px;
    background-image: var(--hero-left-circle);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Steps Section */
.search-ads-steps {
    background-color: var(--light-bg);
    transform: translateY(-70px);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.step-item {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.step-item p {
    font-size: 17px;
    font-weight: 600;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-description {
    color: #666;
    font-size: 0.95rem;
}

/* Description Section */
.search-ads-description {
    padding-bottom: 60px;
}

.description-content {
    margin: 0 auto;
    display: flex;
    padding: 45px 30px;
    background: white;
    flex-wrap: wrap;
    
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.description-content h3 {
    font-size: 24px;
}

.description-text {
    color:#525252; 
    font-size: 18px;
     line-height: 1.9;
    text-align: justify;
}

.description-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Benefits Section */
.search-ads-benefits {
    background-color: white;
    padding: 60px 0;
}

.benefits-splide {
    position: relative;
}

.splide__track {
    overflow: hidden;
}

.splide__arrows--rtl .splide__arrow--prev {
    right: -23px !important;
    left: auto !important;

    position: absolute;
}
.splide__arrows--rtl .splide__arrow--next {
    left: -23px !important;
    right: auto !important;
    position: absolute;
}

.benefit-card {
    background: #F7F9FB;
    padding: 30px;
    border-radius: 20px;
    min-height: 250px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.3rem;
    color: #9F1853;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.benefit-description {
    color: #000;
    font-size: 0.95rem;
    text-align: center;
}

/* Splide Custom Styling */
.splide__arrow {
    background: white;
    border: none;
    color: #525252;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 8px 0px #00000029;
    top: 50% !important;
    transform: translateY(-50%);
}

.splide__arrow:hover {
    background: #f0f0f0;
}

.splide__arrow svg {
    width: 20px;
    height: 20px;
    stroke: #525252;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.splide__arrow--prev {
    left: 15px !important;
}

.splide__arrow--next {
    right: 15px !important;
}

@media (max-width: 576px) {

    .splide__arrow {
        width: 40px;
        height: 40px;
    }
    
    .splide__arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .benefit-card {
        min-height: 200px;
        padding: 20px 15px;
    }
    
    .benefit-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
}


/* Best Products Section */
.search-ads-best-products {
    padding: 60px 0;
}

.search-ads-best-content {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
   
}


.search-ads-best-products h3 {
    color: rgb(180, 19, 86);
    font-size: 20px;
}

/* Best Products List */
.search-ads-best-content h3 {
    font-size: 24px;
}
.best-products-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.best-products-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #000;
    font-size: 16px;
    gap: 15px;
}

.product-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    width: 2%;
    height: 20px;
    line-height: 35px;
    background-color: #EE5396;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .search-ads-best-content {
        flex-direction: column-reverse;
        justify-content: center;

    }
    .search-ads-best-content h3 {
        font-size: 16px;
        margin-top: 10px;
    }
    .best-products-list li {
        font-size: 14px;
        margin-bottom: 15px;
        gap: 12px;
    }
    
    .product-number {
        min-width: 20px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}



/* How to Activate Section */
.search-ads-how-activate {
    background: white;
    color: #000;
    padding: 60px 0;
}

.activate-content {
    max-width: 1300px;
    margin: 0 auto;
}

.activate-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.activate-step {
    background: #F2F4F8;
    padding: 15px 15px;
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    width: 30px;
    height: 30px;
    margin:0;
    background-color: #52565C;
    color: white;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.activate-step p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    margin: 0;
}


}

@media (max-width: 576px) {
    .activate-steps {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    
    
    .step-number {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .activate-step p {
        font-size: 0.85rem;
    }
}

.activate-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.activate-btn:hover {
    background-color: #e68900;
    transform: translateY(-2px);
}



/* FAQ Section */
.search-ads-faq {
    padding: 60px 0;
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    margin-bottom: 0;
    border-radius: 0;
    overflow: visible;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: transparent;
}

.faq-question h3 {
    font-size: 1rem;
    color: #525252;
    flex: 1;
    margin: 0;
    font-weight: 400;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-right: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px 0 0 0;
    display: none;
    border-top: none;
    color: #525252;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
}

/* More Details Section */
.search-ads-more-details {
    padding: 60px 0;
    background: white;
}

.more-details-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.more-details-content > .col-lg-6 {
    padding: 0 15px;
}

.details-title {
    font-size: 24px;
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: right;
}

.details-subtitle {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: right;
}

.details-description {
    color: #525252;
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 20px;
}

.view-more-btn {
    padding: 12px 0px;
    background-color: transparent;
    color: #0F62FE;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.view-more-btn:hover {
    color: #0f58e0;
}

.view-more-btn .chevron-down {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.details-image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: contain;
    max-width: 500px;
}

.more-details-content-expanded {
    margin-top: 20px;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefit-description {
        padding: 0 8px;
    }
    .search-ads-faq h2 {
        font-size: 18px;
    }
    .faq-question h3 {
        font-size: 14px;
    }
    .faq-question p { 
        font-size: 13px;
    }
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-right,
    .hero-left {
        width: 100%;
        justify-content: center;
        text-align: center;
        
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .hero-right::before {
        width: 200px;
        height: 200px;
        top: -30px;
        right: -80px;
    }

    .hero-right::after {
        width: 150px;
        height: 150px;
        bottom: -40px;
        right: -30px;
    }

    .hero-image-wrapper::before {
        width: 200px;
        height: 200px;
        top: -20px;
        left: -60px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .steps-grid,
    .benefits-grid,
    .products-grid,
    .activate-steps {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .description-features {
        grid-template-columns: 1fr;
    }

    .more-details-content {
        flex-direction: column-reverse;
    }

    .details-title {
        font-size: 20px;
    }

    .details-description {
        font-size: 14px;
    }

    section {
        padding: 40px 0;
    }
}

@media (max-width: 680px) {
        .search-ads-description  {
        margin-top: -60px;
    }
    .search-ads-description > div {
        padding: 0!important;
    }
    .description-content {
        padding: 15px;
    }
    .search-ads-steps {
        display: none;
    }
    .description-content {
        justify-content: center;
        text-align: center;
        flex-direction: column-reverse;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-right::before,
    .hero-image-wrapper::before {
        display: none;
    }

    .hero-right::after {
        width: 50px;
        height: 50px;
        top: -30px!important;
        bottom: inherit!important;
        right: -10px;
    }
}