
    /* Import Gotham font - using system fonts as fallback */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
    
    /* AI Search Optimization Hero Section */
    .ai-hero-section {
        background-image: url('https://cloud-tester.live/rank/wp-content/uploads/2025/12/AI-search-optimisation-Hero-image-scaled.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 60px 20px;
        position: relative;
        overflow: hidden;
        border-bottom: 20px solid rgba(249, 250, 251, 0.3); /* #F9FAFB4D */
    }
    
    .ai-hero-content {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }
    
    .ai-hero-text-column {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-left: 60px !important;
    }
    
    .ai-hero-breadcrumb {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        color: #FFFFFF;
        margin: 0;
    }
    
    .ai-hero-heading {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 48px;
        line-height: 120%;
        letter-spacing: -4%;
        text-transform: uppercase;
        color: #FFFFFF;
        margin: 0;
    }
    
    .ai-hero-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #0099D5;
        color: #FFFFFF;
        padding: 12px 24px;
        border-radius: 6px;
        text-decoration: none;
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
        width: fit-content;
    }
    
    .ai-hero-button:hover {
        background-color: #0F172A;
        color: #FFFFFF;
        transform: translateY(-2px);
    }
    
    .ai-hero-visual-column {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 500px;
    }
    
    /* Placeholder for the hand/search interface visual */
    .ai-hero-visual {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Responsive Styles */
    @media (max-width: 968px) {
        .ai-hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .ai-hero-heading {
            font-size: 36px;
        }
        
        .ai-hero-visual-column {
            min-height: 400px;
        }
    }
    
    @media (max-width: 768px) {
        .ai-hero-section {
            padding: 40px 20px;
            min-height: 60vh;
        }
        
        .ai-hero-content {
            max-width: 400px;
            margin: 0 auto;
        }
        
        .ai-hero-text-column {
            margin-left: 0 !important;
            text-align: center;
            align-items: center;
        }
        
        .ai-hero-heading {
            font-size: 32px;
            text-align: left;
        }
        
        .ai-hero-breadcrumb {
            font-size: 16px;
            text-align: center;
        }
        
        .ai-hero-button {
            font-size: 16px;
            padding: 10px 20px;
        }
        
        .ai-hero-visual-column {
            display: none !important;
        }
    }
    
    @media (max-width: 480px) {
        .ai-hero-content {
            max-width: 400px;
            margin: 0 auto;
        }
        
        .ai-hero-text-column {
            margin-left: 0 !important;
            text-align: left;
            align-items: flex-start;
        }
        
        .ai-hero-heading {
            font-size: 28px;
            text-align: left;
        }
        
        .ai-hero-breadcrumb {
            font-size: 14px;
            text-align: center;
        }
        
        .ai-hero-button {
            font-size: 14px;
            padding: 10px 18px;
        }
    }
    
    /* AI Introduction Section */
    .ai-intro-section {
        background-color: #EDEDED;
        padding: 80px 20px;
    }
    
    .ai-intro-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .ai-intro-text {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        color: #000000;
        margin: 0 0 20px 0;
    }
    
    .ai-intro-text:last-child {
        margin-bottom: 0;
    }
    
    .ai-intro-text .highlight {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        color: #0099D5;
    }
    
    /* Responsive Styles for Intro Section */
    @media (max-width: 768px) {
        .ai-intro-section {
            padding: 60px 20px;
        }
        
        .ai-intro-text {
            font-size: 16px;
        }
        
        .ai-intro-text .highlight {
            font-size: 16px;
        }
    }
    
    @media (max-width: 480px) {
        .ai-intro-section {
            padding: 40px 15px;
        }
        
        .ai-intro-text {
            font-size: 15px;
        }
        
        .ai-intro-text .highlight {
            font-size: 15px;
        }
    }
    
    /* Understanding Search Section */
    .ai-understanding-section {
        background-color: #FFFFFF;
        padding: 80px 20px;
    }
    
    .ai-understanding-content {
        max-width: 1250px;
        margin: 0 auto;
    }
    
    .ai-understanding-heading {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .ai-understanding-heading-line1 {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 36px;
        line-height: 112%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #0099D5;
        margin: 0;
        display: block;
    }
    
    .ai-understanding-heading-line2 {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 36px;
        line-height: 112%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #000000;
        margin: 0;
        display: block;
    }
    
    .ai-understanding-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .ai-understanding-box {
        background-color: #54B4D9;
        padding: 40px;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
        cursor: pointer;
        min-height: 200px;
        display: flex;
        align-items: center;
        border-bottom: solid 30px #F9FAFB4D;
    }
    
    .ai-understanding-box::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 2;
        pointer-events: none;
    }
    
    .ai-understanding-box:hover {
        transform: translateY(-3px);
    }
    
    .ai-understanding-box:hover::after {
        opacity: 1;
    }
    
    .ai-understanding-box-text {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        color: #FFFFFF;
        margin: 0;
        position: relative;
        z-index: 3;
    }
    
    .ai-understanding-box-text .highlight {
        font-weight: 500;
    }
    
    /* Responsive Styles for Understanding Section */
    @media (max-width: 968px) {
        .ai-understanding-section {
            padding: 60px 20px;
        }
        
        .ai-understanding-heading-line1,
        .ai-understanding-heading-line2 {
            font-size: 32px;
        }
        
        .ai-understanding-boxes {
            gap: 15px;
        }
        
        .ai-understanding-box {
            padding: 30px;
        }
    }
    
    @media (max-width: 768px) {
        .ai-understanding-boxes {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .ai-understanding-heading-line1,
        .ai-understanding-heading-line2 {
            font-size: 28px;
        }
        
        .ai-understanding-box {
            padding: 30px;
            min-height: auto;
        }
    }
    
    @media (max-width: 480px) {
        .ai-understanding-section {
            padding: 40px 15px;
        }
        
        .ai-understanding-heading {
            margin-bottom: 30px;
        }
        
        .ai-understanding-heading-line1,
        .ai-understanding-heading-line2 {
            font-size: 24px;
        }
        
        .ai-understanding-box {
            padding: 25px;
        }
        
        .ai-understanding-box-text {
            font-size: 16px;
        }
    }
    
    /* AI Trust Content Section */
    .ai-trust-section {
        background-color: #0F172A;
        padding: 80px 20px;
        position: relative;
    }
    
    .ai-trust-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .ai-trust-heading {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .ai-trust-heading-text {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 36px;
        line-height: 112%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #FFFFFF;
        margin: 0;
        display: block;
    }
    
    .ai-trust-heading-text .highlight {
        color: #0099D5;
    }
    
    .ai-trust-description {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        text-align: center;
        color: #FFFFFF;
        margin: 0 auto 40px;
        max-width: 1000px;
    }
    
    .ai-trust-subheading {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 24px;
        line-height: 138%;
        letter-spacing: 0%;
        text-align: center;
        color: #FFFFFF;
        margin: 0 auto 60px;
    }
    
    .ai-trust-timeline {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .ai-trust-timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: #FFFFFF;
        transform: translateX(-50%);
        z-index: 1;
    }
    
    .ai-trust-timeline-item {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 60px;
        z-index: 2;
    }
    
    .ai-trust-timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .ai-trust-timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .ai-trust-timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .ai-trust-timeline-number {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        flex-shrink: 0;
    }
    
    .ai-trust-timeline-number img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .ai-trust-timeline-box {
        background: rgba(255, 255, 255, 0.25); /* #FFFFFF40 */
        padding: 15px 32px;
        border-radius: 8px;
        width: calc(50% - 200px);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .ai-trust-timeline-item:nth-child(odd) .ai-trust-timeline-box {
        margin-right: auto;
        margin-left: 0;
    }
    
    .ai-trust-timeline-item:nth-child(even) .ai-trust-timeline-box {
        margin-left: auto;
        margin-right: 0;
    }
    
    .ai-trust-timeline-title {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 32px;
        line-height: 138%;
        letter-spacing: 0%;
        text-align: center;
        color: #FFFFFF;
        margin: 0;
    }
    
    .ai-trust-timeline-text {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        text-align: center;
        color: #FFFFFF;
        margin: 0;
    }
    
    /* Responsive Styles for Trust Section */
    @media (max-width: 968px) {
        .ai-trust-section {
            padding: 60px 20px;
        }
        
        .ai-trust-heading-text {
            font-size: 32px;
        }
        
        .ai-trust-description {
            font-size: 16px;
        }
        
        .ai-trust-subheading {
            font-size: 22px;
        }
        
        .ai-trust-timeline-title {
            font-size: 28px;
        }
        
        .ai-trust-timeline-text {
            font-size: 16px;
        }
    }
    
    @media (max-width: 768px) {
        .ai-trust-timeline-line {
            left: 40px;
        }
        
        .ai-trust-timeline-item {
            flex-direction: row !important;
            padding-left: 80px;
        }
        
        .ai-trust-timeline-number {
            left: 40px;
        }
        
        .ai-trust-timeline-box {
            width: 100%;
            margin: 0 !important;
        }
        
        .ai-trust-heading-text {
            font-size: 28px;
        }
        
        .ai-trust-timeline-title {
            font-size: 24px;
        }
    }
    
    @media (max-width: 480px) {
        .ai-trust-section {
            padding: 40px 15px;
        }
        
        .ai-trust-heading-text {
            font-size: 24px;
        }
        
        .ai-trust-description {
            font-size: 15px;
        }
        
        .ai-trust-subheading {
            font-size: 20px;
            margin-bottom: 40px;
        }
        
        .ai-trust-timeline-item {
            padding-left: 70px;
            margin-bottom: 40px;
        }
        
        .ai-trust-timeline-number {
            width: 60px;
            height: 60px;
            left: 30px;
        }
        
        .ai-trust-timeline-line {
            left: 30px;
        }
        
        .ai-trust-timeline-box {
            padding: 12px 20px;
        }
        
        .ai-trust-timeline-title {
            font-size: 20px;
        }
        
        .ai-trust-timeline-text {
            font-size: 15px;
        }
    }
    
    /* AI Balance Banner Section */
    .ai-balance-section {
        background-color: #0099D5;
        padding: 60px 20px;
    }
    
    .ai-balance-content {
        max-width: 1400px;
        margin: 0 auto;
        text-align: center;
    }
    
    .ai-balance-text {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 24px;
        line-height: 167%;
        letter-spacing: -4%;
        text-align: center;
        text-transform: uppercase;
        color: #F9FAFB;
        margin: 0;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Responsive Styles for Balance Section */
    @media (max-width: 968px) {
        .ai-balance-section {
            padding: 50px 20px;
        }
        
        .ai-balance-text {
            font-size: 22px;
        }
    }
    
    @media (max-width: 768px) {
        .ai-balance-section {
            padding: 40px 20px;
        }
        
        .ai-balance-text {
            font-size: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .ai-balance-section {
            padding: 30px 15px;
        }
        
        .ai-balance-text {
            font-size: 18px;
        }
    }
    
    /* AI Technical & Authority Section */
    .ai-technical-section {
        background-color: #FFFFFF;
        padding: 80px 20px;
    }
    
    .ai-technical-content {
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .ai-technical-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-bottom: 80px;
    }
    
    .ai-technical-row:last-child {
        margin-bottom: 0;
    }
    
    .ai-technical-text-column {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .ai-technical-image-column {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .ai-technical-image-column img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }
    
    .ai-technical-title {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 36px;
        line-height: 120%;
        letter-spacing: -4%;
        text-transform: uppercase;
        color: #000000;
        margin: 0;
    }
    
    .ai-technical-title .highlight {
        color: #0099D5;
    }
    
    .ai-technical-description {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        color: #000000;
        margin: 0;
    }
    
    .ai-technical-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .ai-technical-list-item {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        color: #000000;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    
    .ai-technical-list-item::before {
        content: '';
        width: 20px;
        height: 20px;
        background-image: url('https://cloud-tester.live/rank/wp-content/uploads/2025/12/wpf_checkmark.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .ai-technical-conclusion {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        color: #000000;
        margin: 0;
    }
    
    /* Responsive Styles for Technical Section */
    @media (max-width: 968px) {
        .ai-technical-section {
            padding: 60px 20px;
        }
        
        .ai-technical-row {
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .ai-technical-title {
            font-size: 32px;
        }
    }
    
    @media (max-width: 768px) {
        .ai-technical-section {
            padding: 50px 20px;
        }
        
        .ai-technical-row {
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .ai-technical-title {
            font-size: 28px;
        }
        
        .ai-technical-description,
        .ai-technical-list-item,
        .ai-technical-conclusion {
            font-size: 16px;
        }
    }
    
    @media (max-width: 480px) {
        .ai-technical-section {
            padding: 40px 15px;
        }
        
        .ai-technical-row {
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .ai-technical-title {
            font-size: 24px;
        }
        
        .ai-technical-description,
        .ai-technical-list-item,
        .ai-technical-conclusion {
            font-size: 15px;
        }
        
        .ai-technical-list-item::before {
            width: 18px;
            height: 18px;
        }
    }
    
    /* AI Why Section */
    .ai-why-section {
        background-color: rgba(0, 153, 213, 0.12); /* #0099D51F */
        padding: 80px 20px;
    }
    
    .ai-why-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .ai-why-heading {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .ai-why-heading-text {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 36px;
        line-height: 120%;
        letter-spacing: -4%;
        text-transform: uppercase;
        color: #000000;
        margin: 0;
        display: block;
    }
    
    .ai-why-heading-text .highlight {
        color: #0099D5;
    }
    
    .ai-why-description {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        text-align: center;
        color: #000000;
        margin: 0 auto 50px;
        max-width: 1000px;
    }
    
    .ai-why-boxes {
        display: grid;
        grid-template-columns: 318px 645px 318px;
        gap: 20px;
        justify-content: center;
        align-items: stretch;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .ai-why-box {
        border-radius: 10px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 200px;
    }
    
    .ai-why-box-left,
    .ai-why-box-right {
        background-color: #0099D5;
        width: 318px;
        height: 200px;
    }
    
    .ai-why-box-middle {
        background-color: #0F172A;
        width: 645px;
        height: 200px;
    }
    
    .ai-why-box-text {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        color: #FFFFFF;
        margin: 0;
    }
    
    .ai-why-box-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .ai-why-box-list-item {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 138%;
        letter-spacing: 0%;
        color: #FFFFFF;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    
    .ai-why-box-list-item::before {
        content: '';
        width: 20px;
        height: 20px;
        background-image: url('https://cloud-tester.live/rank/wp-content/uploads/2025/12/wpf_checkmark.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    /* Responsive Styles for Why Section */
    @media (max-width: 1200px) {
        .ai-why-boxes {
            grid-template-columns: 1fr 2fr 1fr;
            gap: 15px;
        }
        
        .ai-why-box-left,
        .ai-why-box-right,
        .ai-why-box-middle {
            width: 100%;
            height: auto;
            min-height: 200px;
        }
    }
    
    @media (max-width: 968px) {
        .ai-why-section {
            padding: 60px 20px;
        }
        
        .ai-why-heading-text {
            font-size: 32px;
        }
        
        .ai-why-description {
            font-size: 16px;
        }
        
        .ai-why-boxes {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .ai-why-box {
            width: 100% !important;
            height: auto !important;
        }
    }
    
    @media (max-width: 768px) {
        .ai-why-section {
            padding: 50px 20px;
        }
        
        .ai-why-heading-text {
            font-size: 28px;
        }
        
        .ai-why-description {
            font-size: 15px;
            margin-bottom: 40px;
        }
        
        .ai-why-box {
            padding: 25px;
        }
        
        .ai-why-box-text,
        .ai-why-box-list-item {
            font-size: 16px;
        }
    }
    
    @media (max-width: 480px) {
        .ai-why-section {
            padding: 40px 15px;
        }
        
        .ai-why-heading-text {
            font-size: 24px;
        }
        
        .ai-why-description {
            font-size: 14px;
        }
        
        .ai-why-box {
            padding: 20px;
            min-height: auto;
        }
        
        .ai-why-box-text,
        .ai-why-box-list-item {
            font-size: 15px;
        }
        
        .ai-why-box-list-item::before {
            width: 18px;
            height: 18px;
        }
    }
    
    /* AI Future Section */
    .ai-future-section {
        background-image: url('https://cloud-tester.live/rank/wp-content/uploads/2025/12/AI-search-optimisation-CTA-scaled.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 100px 20px;
        position: relative;
        min-height: 400px;
        display: flex;
        margin: 20px 60px;
        border-radius: 20px;
        align-items: center;
    }
    
    .ai-future-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-color: rgba(15, 23, 42, 0.7); Dark overlay for better text readability */
        z-index: 1;
    }
    
    .ai-future-content {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }
    
    .ai-future-text-column {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .ai-future-visual-column {
        /* Empty column for visual elements */
    }
    
    .ai-future-heading {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 36px;
        line-height: 120%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #FFFFFF;
        margin: 0;
    }
    
    .ai-future-heading .highlight {
        color: #0099D5;
    }
    
    .ai-future-description {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 20px;
        line-height: 138%;
        letter-spacing: 0%;
        color: #FFFFFF;
        margin: 0;
    }
    
    .ai-future-description .highlight {
        font-weight: 500;
    }
    
    /* Responsive Styles for Future Section */
    @media (max-width: 968px) {
        .ai-future-section {
            padding: 80px 20px;
            min-height: 500px;
        }
        
        .ai-future-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .ai-future-heading {
            font-size: 32px;
        }
        
        .ai-future-description {
            font-size: 18px;
        }
    }
    
    @media (max-width: 768px) {
        .ai-future-section {
            padding: 60px 20px;
            min-height: 400px;
            margin: 10px !important;
        }
        
        .ai-future-heading {
            font-size: 28px;
        }
        
        .ai-future-description {
            font-size: 17px;
        }
    }
    
    @media (max-width: 480px) {
        .ai-future-section {
            padding: 50px 15px;
            min-height: 350px;
            margin: 10px !important;
        }
        
        .ai-future-heading {
            font-size: 24px;
        }
        
        .ai-future-description {
            font-size: 16px;
        }
    }
     /* FAQ Section Styles */
     .faq-section {
        background-color: #F5F5F5;
        padding: 80px 20px;
        position: relative;
    }
    
    .faq-content {
        max-width: 1250px;
        margin: 0 auto;
    }
    
    .faq-heading {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 48px;
        line-height: 70px;
        letter-spacing: -0.04em; /* -4% */
        text-align: center;
        text-transform: capitalize;
        color: #000000;
        margin: 0 0 20px 0;
    }
    
    .faq-subtitle {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
        color: #000000;
        margin: 0 0 50px 0;
    }
    
    .faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-item {
        background-color: #FFFFFF;
        border-radius: 8px;
        overflow: hidden;
        transition: background-color 0.3s ease;
    }
    
    .faq-item.active {
        background-color: #0099D51F; /* rgba(0, 153, 213, 0.12) */
    }
    
    .faq-question {
        display: flex;
        align-items: center;
        padding: 24px 30px;
        cursor: pointer;
        user-select: none;
        gap: 15px;
    }
    
    .faq-question-text {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 20px;
        line-height: 27px; /* 135% of 20px */
        letter-spacing: 0;
        color: #111827;
        margin: 0;
        flex: 1;
        transition: color 0.3s ease;
    }
    
    .faq-item.active .faq-question-text {
        color: #0099D5;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    
    .faq-icon-close {
        display: none;
    }
    
    .faq-item.active .faq-icon-open {
        display: none;
    }
    
    .faq-item.active .faq-icon-close {
        display: block;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 30px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 30px 24px 30px;
    }
    
    .faq-answer-text {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
        color: #111827;
        margin: 0;
        padding-top: 10px;
    }
    
    @media (max-width: 968px) {
        .faq-section {
            padding: 60px 20px;
        }
        
        .faq-heading {
            font-size: 40px;
            line-height: 60px;
        }
        
        .faq-question {
            padding: 20px 25px;
        }
        
        .faq-answer {
            padding: 0 25px;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 20px 25px;
        }
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 50px 20px;
        }
        
        .faq-heading {
            font-size: 36px;
            line-height: 50px;
            margin-bottom: 15px;
        }
        
        .faq-subtitle {
            font-size: 16px;
            margin-bottom: 40px;
        }
        
        .faq-question {
            padding: 18px 20px;
        }
        
        .faq-question-text {
            font-size: 18px;
            line-height: 24px;
        }
        
        .faq-answer {
            padding: 0 20px;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 18px 20px;
        }
    }
    
    @media (max-width: 480px) {
        .faq-section {
            padding: 40px 15px;
        }
        
        .faq-heading {
            font-size: 32px;
            line-height: 45px;
            margin-bottom: 12px;
        }
        
        .faq-subtitle {
            font-size: 15px;
            margin-bottom: 30px;
        }
        
        .faq-question {
            padding: 16px 18px;
        }
        
        .faq-question-text {
            font-size: 16px;
            line-height: 22px;
        }
        
        .faq-answer {
            padding: 0 18px;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 18px 16px 18px;
        }
        
        .faq-icon {
            width: 20px;
            height: 20px;
        }
    }
    
    /* Final CTA Section Styles */
    .final-cta-section {
        position: relative;
        width: 100%;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('https://cloud-tester.live/rank/wp-content/uploads/2025/12/Mask-group-1-1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 100px 20px;
    }
    
    .final-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }
    
    .final-cta-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 1200px;
        width: 100%;
    }
    
    .final-cta-heading {
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 40px;
        line-height: 130%; /* 52px */
        letter-spacing: -0.03em; /* -3% */
        text-transform: uppercase;
        color: #FFFFFF;
        margin: 0 0 40px 0;
    }
    
    .final-cta-button-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .final-cta-button {
        display: inline-block;
        background-color: #0099D5;
        color: #FFFFFF;
        padding: 12px 24px;
        border-radius: 6px;
        text-decoration: none;
        font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0;
        transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
        gap: 10px;
    }
    
    .final-cta-button:hover {
        background-color: #0F172A;
        color: #FFFFFF;
        transform: translateY(-2px);
    }
    
    @media (max-width: 968px) {
        .final-cta-section {
            min-height: 350px;
            padding: 80px 20px;
        }
        
        .final-cta-heading {
            font-size: 36px;
            line-height: 130%;
            margin-bottom: 35px;
        }
        
        .final-cta-button {
            font-size: 16px;
            padding: 12px 24px;
        }
    }
    
    @media (max-width: 768px) {
        .final-cta-section {
            min-height: 300px;
            padding: 60px 20px;
        }
        
        .final-cta-heading {
            font-size: 32px;
            line-height: 130%;
            margin-bottom: 30px;
        }
        
        .final-cta-button {
            font-size: 16px;
            padding: 12px 24px;
        }
    }
    
    @media (max-width: 480px) {
        .final-cta-section {
            min-height: 280px;
            padding: 50px 15px;
        }
        
        .final-cta-heading {
            font-size: 28px;
            line-height: 130%;
            margin-bottom: 25px;
        }
        
        .final-cta-button {
            font-size: 15px;
            padding: 12px 20px;
        }
    }