/* ========================================
   What Actually Shapes AI Recommendation Section - Lemon Theme
   ======================================== */

.ai-shapes-section-new {
    background: linear-gradient(135deg, #fffbea 0%, #fff9c4 50%, #fff59d 100%);
    padding: 80px 20px;
    position: relative;
}

.ai-shapes-section-new::before {
    content: '🍋';
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 200px;
    opacity: 0.08;
    transform: rotate(15deg);
}

.ai-shapes-section-new .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ai-shapes-section-new .section-headline {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 235, 59, 0.2);
}

.ai-shapes-section-new .section-content {
    max-width: 900px;
    margin: 0 auto;
}

.ai-shapes-section-new .section-content>p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 0 30px 0;
}

.ai-shapes-section-new .ai-shapes-bullets {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ai-shapes-section-new .ai-shapes-bullets li {
    font-size: 18px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 15px;
    padding: 18px 20px 18px 50px;
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    border-left: 4px solid #ffeb3b;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.15);
    transition: all 0.3s ease;
}

.ai-shapes-section-new .ai-shapes-bullets li:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.25);
    border-left-color: #ffc107;
}

.ai-shapes-section-new .ai-shapes-bullets li:before {
    content: '✓';
    position: absolute;
    left: 18px;
    color: #ffc107;
    font-weight: bold;
    font-size: 22px;
    text-shadow: 1px 1px 2px rgba(255, 193, 7, 0.3);
}

/* ========================================
   PR Quotes Section - Lemon Theme
   ======================================== */

.pr-quotes-section-new {
    background: linear-gradient(135deg, #ffffff 0%, #fffde7 100%);
    padding: 80px 20px;
    position: relative;
}

.pr-quotes-section-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffd54f 0%, #ffeb3b 50%, #ffd54f 100%);
}

.pr-quotes-section-new .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pr-quote-card {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.15);
    position: relative;
}

.pr-quote-card:last-child {
    margin-bottom: 0;
}

.pr-quote {
    font-size: 24px;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.pr-quote::before {
    content: '"';
    font-size: 60px;
    color: rgba(255, 193, 7, 0.3);
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
}

.pr-attribution {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pr-author {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.pr-source {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* ========================================
   Core Services Section - Lemon Theme
   ======================================== */

.core-services-section-new {
    background: linear-gradient(135deg, #fffbea 0%, #fff9c4 50%, #fffde7 100%);
    padding: 80px 20px;
    position: relative;
}

.core-services-section-new::before {
    content: '🍋';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 200px;
    opacity: 0.08;
    transform: rotate(-25deg);
}

.core-services-section-new .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.core-services-section-new .section-headline {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 235, 59, 0.2);
}

.core-services-section-new .services-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 auto 50px auto;
    max-width: 900px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    border-top: 5px solid #ffc107;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.15);
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.25);
    border-top-color: #ffeb3b;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* ========================================
   AI Visibility Snapshot Detail Section - Lemon Theme
   ======================================== */

.ai-snapshot-detail-section-new {
    background: linear-gradient(135deg, #ffffff 0%, #fffde7 50%, #fff9c4 100%);
    padding: 80px 20px;
    position: relative;
}

.ai-snapshot-detail-section-new::before {
    content: '🍋';
    position: absolute;
    top: 50%;
    left: 5%;
    font-size: 250px;
    opacity: 0.05;
    transform: translateY(-50%) rotate(15deg);
}

.ai-snapshot-detail-section-new .section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.ai-snapshot-detail-section-new .section-headline {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 235, 59, 0.2);
}

.ai-snapshot-detail-section-new .section-subheadline {
    font-size: 24px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 0 40px 0;
    text-align: center;
    font-weight: 500;
}

.ai-snapshot-detail-section-new .snapshot-intro,
.ai-snapshot-detail-section-new .snapshot-body {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0 0 25px 0;
}

.ai-snapshot-detail-section-new .snapshot-subsection {
    background: #ffffff;
    padding: 35px 40px;
    margin: 30px 0;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.15);
}

.ai-snapshot-detail-section-new .subsection-headline {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.ai-snapshot-detail-section-new .subsection-body {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.ai-snapshot-detail-section-new .snapshot-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.ai-snapshot-detail-section-new .snapshot-bullets li {
    font-size: 17px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 12px;
    padding: 12px 15px 12px 45px;
    position: relative;
    background: #fffbf0;
    border-radius: 8px;
    border-left: 3px solid #ffeb3b;
    transition: all 0.3s ease;
}

.ai-snapshot-detail-section-new .snapshot-bullets li:hover {
    transform: translateX(5px);
    background: #fff9e6;
}

.ai-snapshot-detail-section-new .snapshot-bullets li:before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: #ffc107;
    font-weight: bold;
    font-size: 20px;
}

.ai-snapshot-detail-section-new .snapshot-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.ai-snapshot-detail-section-new .snapshot-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffc107;
}

.ai-snapshot-detail-section-new .snapshot-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
}

/* ========================================
   GEO Content Transformation Detail Section - Lemon Theme
   ======================================== */

.geo-transform-detail-section-new {
    background: linear-gradient(135deg, #fffbea 0%, #fff9c4 50%, #fffde7 100%);
    padding: 80px 20px;
    position: relative;
}

.geo-transform-detail-section-new::before {
    content: '🍋';
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 250px;
    opacity: 0.05;
    transform: translateY(-50%) rotate(-15deg);
}

.geo-transform-detail-section-new .section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.geo-transform-detail-section-new .section-headline {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 235, 59, 0.2);
}

.geo-transform-detail-section-new .section-subheadline {
    font-size: 24px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 0 40px 0;
    text-align: center;
    font-weight: 500;
}

.geo-transform-detail-section-new .snapshot-intro,
.geo-transform-detail-section-new .snapshot-body {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0 0 25px 0;
}

.geo-transform-detail-section-new .snapshot-subsection {
    background: #ffffff;
    padding: 35px 40px;
    margin: 30px 0;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.15);
}

.geo-transform-detail-section-new .subsection-headline {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.geo-transform-detail-section-new .subsection-body {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.geo-transform-detail-section-new .snapshot-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.geo-transform-detail-section-new .snapshot-bullets li {
    font-size: 17px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 12px;
    padding: 12px 15px 12px 45px;
    position: relative;
    background: #fffbf0;
    border-radius: 8px;
    border-left: 3px solid #ffeb3b;
    transition: all 0.3s ease;
}

.geo-transform-detail-section-new .snapshot-bullets li:hover {
    transform: translateX(5px);
    background: #fff9e6;
}

.geo-transform-detail-section-new .snapshot-bullets li:before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: #ffc107;
    font-weight: bold;
    font-size: 20px;
}

.geo-transform-detail-section-new .snapshot-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.geo-transform-detail-section-new .snapshot-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffc107;
}

.geo-transform-detail-section-new .snapshot-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
}

/* ========================================
   Topical Authority Framework Detail Section - Lemon Theme
   ======================================== */

.topical-authority-detail-section-new {
    background: linear-gradient(135deg, #ffffff 0%, #fffde7 50%, #fff9c4 100%);
    padding: 80px 20px;
    position: relative;
}

.topical-authority-detail-section-new::before {
    content: '🍋';
    position: absolute;
    top: 50%;
    left: 5%;
    font-size: 250px;
    opacity: 0.05;
    transform: translateY(-50%) rotate(25deg);
}

.topical-authority-detail-section-new .section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.topical-authority-detail-section-new .section-headline {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 235, 59, 0.2);
}

.topical-authority-detail-section-new .section-subheadline {
    font-size: 24px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 0 40px 0;
    text-align: center;
    font-weight: 500;
}

.topical-authority-detail-section-new .snapshot-intro,
.topical-authority-detail-section-new .snapshot-body {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0 0 25px 0;
}

.topical-authority-detail-section-new .snapshot-subsection {
    background: #ffffff;
    padding: 35px 40px;
    margin: 30px 0;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.15);
}

.topical-authority-detail-section-new .subsection-headline {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.topical-authority-detail-section-new .subsection-body {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.topical-authority-detail-section-new .snapshot-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.topical-authority-detail-section-new .snapshot-bullets li {
    font-size: 17px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 12px;
    padding: 12px 15px 12px 45px;
    position: relative;
    background: #fffbf0;
    border-radius: 8px;
    border-left: 3px solid #ffeb3b;
    transition: all 0.3s ease;
}

.topical-authority-detail-section-new .snapshot-bullets li:hover {
    transform: translateX(5px);
    background: #fff9e6;
}

.topical-authority-detail-section-new .snapshot-bullets li:before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: #ffc107;
    font-weight: bold;
    font-size: 20px;
}

.topical-authority-detail-section-new .snapshot-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.topical-authority-detail-section-new .snapshot-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffc107;
}

.topical-authority-detail-section-new .snapshot-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
}

/* ========================================
   Mobile Responsive Styles - Enhanced
   ======================================== */

@media (max-width: 1024px) {

    .ai-shapes-section-new,
    .pr-quotes-section-new,
    .core-services-section-new,
    .ai-snapshot-detail-section-new,
    .geo-transform-detail-section-new,
    .topical-authority-detail-section-new {
        padding: 70px 20px;
    }

    .topical-authority-detail-section-new .section-headline {
        font-size: 42px;
    }

    .topical-authority-detail-section-new .section-subheadline {
        font-size: 22px;
    }

    .geo-transform-detail-section-new .section-headline {
        font-size: 42px;
    }

    .geo-transform-detail-section-new .section-subheadline {
        font-size: 22px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ai-shapes-section-new .ai-shapes-bullets li {
        font-size: 17px;
        padding: 16px 18px 16px 48px;
    }

    .ai-snapshot-detail-section-new .section-headline {
        font-size: 42px;
    }

    .ai-snapshot-detail-section-new .section-subheadline {
        font-size: 22px;
    }
}

@media (max-width: 768px) {

    .ai-shapes-section-new,
    .pr-quotes-section-new,
    .core-services-section-new,
    .ai-snapshot-detail-section-new,
    .geo-transform-detail-section-new,
    .topical-authority-detail-section-new {
        padding: 50px 15px !important;
    }

    .topical-authority-detail-section-new::before {
        font-size: 150px;
        left: -10%;
    }

    .topical-authority-detail-section-new .section-headline {
        font-size: 32px !important;
    }

    .topical-authority-detail-section-new .section-subheadline {
        font-size: 18px !important;
        margin-bottom: 30px !important;
    }

    .topical-authority-detail-section-new .snapshot-intro,
    .topical-authority-detail-section-new .snapshot-body {
        font-size: 16px !important;
    }

    .topical-authority-detail-section-new .snapshot-subsection {
        padding: 28px 30px;
    }

    .topical-authority-detail-section-new .subsection-headline {
        font-size: 24px !important;
    }

    .topical-authority-detail-section-new .subsection-body {
        font-size: 16px !important;
    }

    .topical-authority-detail-section-new .snapshot-bullets li {
        font-size: 15px !important;
        padding: 10px 12px 10px 40px !important;
    }

    .topical-authority-detail-section-new .snapshot-cta-button {
        font-size: 18px !important;
        padding: 16px 40px !important;
    }

    .geo-transform-detail-section-new::before {
        font-size: 150px;
        right: -10%;
    }

    .geo-transform-detail-section-new .section-headline {
        font-size: 32px !important;
    }

    .geo-transform-detail-section-new .section-subheadline {
        font-size: 18px !important;
        margin-bottom: 30px !important;
    }

    .geo-transform-detail-section-new .snapshot-intro,
    .geo-transform-detail-section-new .snapshot-body {
        font-size: 16px !important;
    }

    .geo-transform-detail-section-new .snapshot-subsection {
        padding: 28px 30px;
    }

    .geo-transform-detail-section-new .subsection-headline {
        font-size: 24px !important;
    }

    .geo-transform-detail-section-new .subsection-body {
        font-size: 16px !important;
    }

    .geo-transform-detail-section-new .snapshot-bullets li {
        font-size: 15px !important;
        padding: 10px 12px 10px 40px !important;
    }

    .geo-transform-detail-section-new .snapshot-cta-button {
        font-size: 18px !important;
        padding: 16px 40px !important;
    }

    .ai-snapshot-detail-section-new::before {
        font-size: 150px;
        left: -10%;
    }

    .ai-snapshot-detail-section-new .section-headline {
        font-size: 32px !important;
    }

    .ai-snapshot-detail-section-new .section-subheadline {
        font-size: 18px !important;
        margin-bottom: 30px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-intro,
    .ai-snapshot-detail-section-new .snapshot-body {
        font-size: 16px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-subsection {
        padding: 28px 30px;
    }

    .ai-snapshot-detail-section-new .subsection-headline {
        font-size: 24px !important;
    }

    .ai-snapshot-detail-section-new .subsection-body {
        font-size: 16px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-bullets li {
        font-size: 15px !important;
        padding: 10px 12px 10px 40px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-cta-button {
        font-size: 18px !important;
        padding: 16px 40px !important;
    }

    .ai-shapes-section-new::before {
        font-size: 100px;
        top: -20px;
        left: -20px;
    }

    .core-services-section-new::before {
        font-size: 100px;
        bottom: -20px;
        right: -20px;
    }

    .ai-shapes-section-new .section-container,
    .pr-quotes-section-new .section-container,
    .core-services-section-new .section-container {
        padding: 0 10px;
    }

    .ai-shapes-section-new .section-headline,
    .core-services-section-new .section-headline {
        font-size: 28px !important;
        margin-bottom: 20px !important;
        line-height: 1.3;
    }

    .ai-shapes-section-new .section-content>p,
    .core-services-section-new .services-intro {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }

    .ai-shapes-section-new .ai-shapes-bullets {
        max-width: 100%;
        margin-top: 25px !important;
    }

    .ai-shapes-section-new .ai-shapes-bullets li {
        font-size: 15px !important;
        padding: 14px 16px 14px 42px !important;
        margin-bottom: 12px !important;
        border-left-width: 3px;
        border-radius: 8px;
    }

    .ai-shapes-section-new .ai-shapes-bullets li:before {
        font-size: 18px !important;
        left: 14px !important;
    }

    .ai-shapes-section-new .ai-shapes-bullets li:hover {
        transform: translateX(5px);
    }

    .pr-quote-card {
        padding: 30px 25px;
        margin-bottom: 25px;
    }

    .pr-quote {
        font-size: 20px !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
    }

    .pr-quote::before {
        font-size: 50px;
        top: 18px;
        left: 18px;
    }

    .pr-author {
        font-size: 16px !important;
    }

    .pr-source {
        font-size: 14px !important;
    }

    .services-grid {
        gap: 20px;
        margin-top: 35px !important;
    }

    .service-card {
        padding: 28px 25px;
    }

    .service-title {
        font-size: 22px !important;
        margin-bottom: 12px !important;
    }

    .service-description {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {

    .ai-shapes-section-new,
    .pr-quotes-section-new,
    .core-services-section-new,
    .ai-snapshot-detail-section-new,
    .geo-transform-detail-section-new,
    .topical-authority-detail-section-new {
        padding: 35px 10px !important;
    }

    .topical-authority-detail-section-new::before {
        font-size: 100px;
    }

    .topical-authority-detail-section-new .section-headline {
        font-size: 26px !important;
    }

    .topical-authority-detail-section-new .section-subheadline {
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }

    .topical-authority-detail-section-new .snapshot-intro,
    .topical-authority-detail-section-new .snapshot-body {
        font-size: 14px !important;
    }

    .topical-authority-detail-section-new .snapshot-subsection {
        padding: 25px 20px;
        margin: 25px 0;
    }

    .topical-authority-detail-section-new .subsection-headline {
        font-size: 20px !important;
    }

    .topical-authority-detail-section-new .subsection-body {
        font-size: 14px !important;
    }

    .topical-authority-detail-section-new .snapshot-bullets li {
        font-size: 13px !important;
        padding: 10px 12px 10px 38px !important;
    }

    .topical-authority-detail-section-new .snapshot-cta-button {
        font-size: 16px !important;
        padding: 14px 35px !important;
    }

    .geo-transform-detail-section-new::before {
        font-size: 100px;
    }

    .geo-transform-detail-section-new .section-headline {
        font-size: 26px !important;
    }

    .geo-transform-detail-section-new .section-subheadline {
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }

    .geo-transform-detail-section-new .snapshot-intro,
    .geo-transform-detail-section-new .snapshot-body {
        font-size: 14px !important;
    }

    .geo-transform-detail-section-new .snapshot-subsection {
        padding: 25px 20px;
        margin: 25px 0;
    }

    .geo-transform-detail-section-new .subsection-headline {
        font-size: 20px !important;
    }

    .geo-transform-detail-section-new .subsection-body {
        font-size: 14px !important;
    }

    .geo-transform-detail-section-new .snapshot-bullets li {
        font-size: 13px !important;
        padding: 10px 12px 10px 38px !important;
    }

    .geo-transform-detail-section-new .snapshot-cta-button {
        font-size: 16px !important;
        padding: 14px 35px !important;
    }

    .ai-snapshot-detail-section-new::before {
        font-size: 100px;
    }

    .ai-snapshot-detail-section-new .section-headline {
        font-size: 26px !important;
    }

    .ai-snapshot-detail-section-new .section-subheadline {
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-intro,
    .ai-snapshot-detail-section-new .snapshot-body {
        font-size: 14px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-subsection {
        padding: 25px 20px;
        margin: 25px 0;
    }

    .ai-snapshot-detail-section-new .subsection-headline {
        font-size: 20px !important;
    }

    .ai-snapshot-detail-section-new .subsection-body {
        font-size: 14px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-bullets li {
        font-size: 13px !important;
        padding: 10px 12px 10px 38px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-cta-button {
        font-size: 16px !important;
        padding: 14px 35px !important;
    }

    .ai-shapes-section-new::before {
        font-size: 70px;
        top: -15px;
        left: -15px;
    }

    .core-services-section-new::before {
        font-size: 70px;
        bottom: -15px;
        right: -15px;
    }

    .ai-shapes-section-new .section-container,
    .pr-quotes-section-new .section-container,
    .core-services-section-new .section-container {
        padding: 0 5px;
    }

    .ai-shapes-section-new .section-headline,
    .core-services-section-new .section-headline {
        font-size: 22px !important;
        margin-bottom: 15px !important;
    }

    .ai-shapes-section-new .section-content>p,
    .core-services-section-new .services-intro {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    .ai-shapes-section-new .ai-shapes-bullets {
        margin-top: 20px !important;
    }

    .ai-shapes-section-new .ai-shapes-bullets li {
        font-size: 13px !important;
        padding: 12px 14px 12px 38px !important;
        margin-bottom: 10px !important;
        border-radius: 6px;
    }

    .ai-shapes-section-new .ai-shapes-bullets li:before {
        font-size: 16px !important;
        left: 12px !important;
    }

    .pr-quote-card {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-left-width: 3px;
    }

    .pr-quote {
        font-size: 18px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }

    .pr-quote::before {
        font-size: 40px;
        top: 15px;
        left: 15px;
    }

    .pr-author {
        font-size: 15px !important;
    }

    .pr-source {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .services-grid {
        gap: 18px;
        margin-top: 30px !important;
    }

    .service-card {
        padding: 25px 20px;
        border-top-width: 4px;
    }

    .service-card:hover {
        transform: translateY(-4px);
    }

    .service-title {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .service-description {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 360px) {

    .ai-shapes-section-new,
    .pr-quotes-section-new,
    .core-services-section-new,
    .ai-snapshot-detail-section-new,
    .geo-transform-detail-section-new,
    .topical-authority-detail-section-new {
        padding: 30px 8px !important;
    }

    .topical-authority-detail-section-new .section-headline {
        font-size: 22px !important;
    }

    .topical-authority-detail-section-new .section-subheadline {
        font-size: 15px !important;
    }

    .topical-authority-detail-section-new .snapshot-subsection {
        padding: 20px 15px;
    }

    .topical-authority-detail-section-new .subsection-headline {
        font-size: 18px !important;
    }

    .topical-authority-detail-section-new .snapshot-bullets li {
        font-size: 12px !important;
    }

    .topical-authority-detail-section-new .snapshot-cta-button {
        font-size: 15px !important;
        padding: 12px 30px !important;
    }

    .geo-transform-detail-section-new .section-headline {
        font-size: 22px !important;
    }

    .geo-transform-detail-section-new .section-subheadline {
        font-size: 15px !important;
    }

    .geo-transform-detail-section-new .snapshot-subsection {
        padding: 20px 15px;
    }

    .geo-transform-detail-section-new .subsection-headline {
        font-size: 18px !important;
    }

    .geo-transform-detail-section-new .snapshot-bullets li {
        font-size: 12px !important;
    }

    .geo-transform-detail-section-new .snapshot-cta-button {
        font-size: 15px !important;
        padding: 12px 30px !important;
    }

    .ai-snapshot-detail-section-new .section-headline {
        font-size: 22px !important;
    }

    .ai-snapshot-detail-section-new .section-subheadline {
        font-size: 15px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-subsection {
        padding: 20px 15px;
    }

    .ai-snapshot-detail-section-new .subsection-headline {
        font-size: 18px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-bullets li {
        font-size: 12px !important;
    }

    .ai-snapshot-detail-section-new .snapshot-cta-button {
        font-size: 15px !important;
        padding: 12px 30px !important;
    }

    .ai-shapes-section-new::before,
    .core-services-section-new::before {
        font-size: 50px;
    }

    .ai-shapes-section-new .section-headline,
    .core-services-section-new .section-headline {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }

    .ai-shapes-section-new .section-content>p,
    .core-services-section-new .services-intro {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .ai-shapes-section-new .ai-shapes-bullets li {
        font-size: 12px !important;
        padding: 10px 12px 10px 35px !important;
    }

    .ai-shapes-section-new .ai-shapes-bullets li:before {
        font-size: 14px !important;
        left: 10px !important;
    }

    .pr-quote-card {
        padding: 20px 15px;
    }

    .pr-quote {
        font-size: 16px !important;
    }

    .pr-quote::before {
        font-size: 35px;
        top: 12px;
        left: 12px;
    }

    .pr-author {
        font-size: 14px !important;
    }

    .pr-source {
        font-size: 12px !important;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-title {
        font-size: 18px !important;
    }

    .service-description {
        font-size: 13px !important;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {

    .service-card,
    .pr-quote-card,
    .ai-shapes-section-new .ai-shapes-bullets li,
    .ai-snapshot-detail-section-new .snapshot-cta-button,
    .geo-transform-detail-section-new .snapshot-cta-button,
    .topical-authority-detail-section-new .snapshot-cta-button {
        -webkit-tap-highlight-color: rgba(255, 193, 7, 0.2);
    }

    /* Ensure text is readable on mobile */
    .ai-shapes-section-new .section-content>p,
    .core-services-section-new .services-intro,
    .service-description,
    .pr-quote {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}