/* ============================================
   SEO PAGE - PREMIUM BRAND-ALIGNED DESIGN
   All colors match DMHut's Grape theme (#7A1E4F)
   ============================================ */

:root {
    --grape-primary: #7A1E4F;
    --grape-hover: #5d1a3d;
    --grape-soft: rgba(122, 30, 79, 0.05);
    --grape-soft-md: rgba(122, 30, 79, 0.1);
    --text-navy: #343f52;
    --text-muted: #60697b;
}

/* --- Hero Section: Premium Floating Badge Design --- */
.seo-hero-premium {
    position: relative;
    overflow: hidden;
}

.seo-hero-title {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.seo-hero-figure {
    position: relative;
}

.seo-floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 30px 60px rgba(122, 30, 79, 0.15);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-content {
    display: flex;
    align-items: center;
}

.badge-content i {
    font-size: 2rem;
}

/* --- Problem Section: Numbered Card Grid --- */
.seo-problem-section {
    position: relative;
}

.seo-problem-card {
    background: #fff;
    border: 2px solid rgba(122, 30, 79, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.seo-problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--grape-primary);
    box-shadow: 0 25px 50px rgba(122, 30, 79, 0.12);
}

.problem-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(122, 30, 79, 0.08);
    line-height: 1;
}

.problem-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--grape-soft-md);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.problem-icon-wrapper i {
    font-size: 2rem;
    color: var(--grape-primary);
}

.seo-problem-card:hover .problem-icon-wrapper {
    background: var(--grape-primary);
}

.seo-problem-card:hover .problem-icon-wrapper i {
    color: #fff;
}

/* --- Approach Section: Timeline Style --- */
.seo-approach-section {
    position: relative;
}

.seo-approach-timeline {
    position: relative;
}

.approach-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 60px;
}

.approach-item:last-child {
    margin-bottom: 0;
}

.approach-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--grape-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(122, 30, 79, 0.3);
    z-index: 2;
}

.marker-number {
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
}

.approach-item::before {
    content: "";
    position: absolute;
    left: 29px;
    top: 70px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--grape-primary), rgba(122, 30, 79, 0.1));
}

.approach-item:last-child::before {
    display: none;
}

.approach-content-box {
    background: #fff;
    border: 1px solid rgba(122, 30, 79, 0.08);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
}

.approach-content-box:hover {
    border-color: var(--grape-primary);
    box-shadow: 0 20px 40px rgba(122, 30, 79, 0.08);
}

/* --- Deliverables Section: Card Grid --- */
.seo-deliverables-section {
    position: relative;
}

.seo-deliverable-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    height: 100%;
}

.seo-deliverable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: rgba(122, 30, 79, 0.2);
}

.deliverable-icon {
    width: 80px;
    height: 80px;
    background: var(--grape-soft-md);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.deliverable-icon i {
    font-size: 2.5rem;
    color: var(--grape-primary);
}

.seo-deliverable-card:hover .deliverable-icon {
    background: var(--grape-primary);
    transform: scale(1.1);
}

.seo-deliverable-card:hover .deliverable-icon i {
    color: #fff;
}

/* Featured Deliverable Card */
.seo-card-featured {
    background: linear-gradient(135deg, var(--grape-primary) 0%, var(--grape-hover) 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(122, 30, 79, 0.2);
}

.seo-card-featured h4,
.seo-card-featured p {
    color: #fff;
}

.seo-card-featured .deliverable-icon {
    background: rgba(255, 255, 255, 0.2);
}

.seo-card-featured .deliverable-icon i {
    color: #fff;
}

.seo-card-featured:hover {
    transform: scale(1.08);
}

/* --- Case Study Section (Redesigned) --- */
.seo-case-study-section {
    position: relative;
}

.case-study-visual-wrapper {
    position: relative;
    height: 100%;
}

.case-study-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.case-study-image-container img {
    width: 100%;
    transition: transform 0.6s ease;
}

.case-study-image-container:hover img {
    transform: scale(1.05);
}

.case-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--grape-primary) 0%, var(--grape-hover) 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(122, 30, 79, 0.3);
}

.badge-inner {
    display: flex;
    align-items: center;
}

.badge-inner i {
    font-size: 2rem;
}

.case-client-card {
    background: #fff;
    border: 1px solid rgba(122, 30, 79, 0.08);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.case-client-card:hover {
    border-color: var(--grape-primary);
    box-shadow: 0 15px 30px rgba(122, 30, 79, 0.08);
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: var(--grape-soft-md);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-avatar i {
    font-size: 1.8rem;
    color: var(--grape-primary);
}

.case-content-wrapper {
    padding-left: 3rem;
}

.case-challenge-box,
.case-solution-box {
    background: var(--grape-soft);
    border-left: 4px solid var(--grape-primary);
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
}

.case-solution-box {
    background: #fff;
    border: 1px solid rgba(122, 30, 79, 0.1);
    border-left: 4px solid var(--grape-primary);
}

.result-stat-card {
    background: #fff;
    border: 1px solid rgba(122, 30, 79, 0.08);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.result-stat-card:hover {
    border-color: var(--grape-primary);
    box-shadow: 0 15px 30px rgba(122, 30, 79, 0.1);
    transform: translateY(-5px);
}

.stat-icon-mini {
    width: 50px;
    height: 50px;
    background: var(--grape-soft-md);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon-mini i {
    font-size: 1.5rem;
    color: var(--grape-primary);
}

.stat-value-large {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-navy);
}

.impact-highlights {
    background: var(--grape-soft);
    padding: 2rem;
    border-radius: 1rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.impact-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.impact-item span {
    font-size: 0.95rem;
    color: var(--text-navy);
}

/* Quick Metrics Grid */
.quick-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.metric-mini-box {
    background: #fff;
    border: 1px solid rgba(122, 30, 79, 0.08);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-mini-box:hover {
    border-color: var(--grape-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(122, 30, 79, 0.08);
}

.metric-icon {
    width: 45px;
    height: 45px;
    background: var(--grape-soft-md);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.metric-icon i {
    font-size: 1.25rem;
    color: var(--grape-primary);
}

.metric-mini-box h6 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--grape-primary);
    margin-bottom: 0.5rem;
}

/* Client Quote Box */
.case-quote-box {
    background: linear-gradient(135deg, var(--grape-primary) 0%, var(--grape-hover) 100%);
    padding: 2rem 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    color: #fff;
    box-shadow: 0 20px 40px rgba(122, 30, 79, 0.2);
}

.quote-icon {
    font-size: 2.5rem;
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.case-quote-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-author h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.quote-author p {
    opacity: 0.8;
    font-style: normal;
}

/* --- Final CTA Section --- */
.seo-final-cta {
    position: relative;
}

.seo-cta-box {
    background: linear-gradient(135deg, var(--grape-primary) 0%, var(--grape-hover) 100%);
    border-radius: 2rem;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.seo-cta-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.btn-white {
    background: #fff !important;
    color: var(--grape-primary) !important;
    border: none !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f8f9fa !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

/* --- Global Brand Overrides --- */
.text-grape {
    color: var(--grape-primary) !important;
}

.btn-grape {
    background-color: var(--grape-primary) !important;
    border-color: var(--grape-primary) !important;
    color: #fff !important;
}

.btn-grape:hover {
    background-color: var(--grape-hover) !important;
    border-color: var(--grape-hover) !important;
}

.btn-outline-grape {
    color: var(--grape-primary) !important;
    border-color: var(--grape-primary) !important;
    background: transparent !important;
}

.btn-outline-grape:hover {
    background-color: var(--grape-primary) !important;
    color: #fff !important;
}

.btn-soft-grape {
    background-color: var(--grape-soft-md) !important;
    color: var(--grape-primary) !important;
}

.bullet-soft-primary i {
    background-color: var(--grape-soft-md) !important;
    color: var(--grape-primary) !important;
}

.hover-grape:hover {
    color: var(--grape-primary) !important;
}

/* Modal Styling */
#modal-audit .form-control:focus {
    border-color: var(--grape-primary);
    box-shadow: 0 0 0 0.25rem rgba(122, 30, 79, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .seo-floating-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 2rem;
    }

    .approach-item {
        padding-left: 80px;
    }

    .approach-marker {
        width: 50px;
        height: 50px;
    }

    .marker-number {
        font-size: 1.2rem;
    }

    .approach-item::before {
        left: 24px;
    }

    /* Fixed alignment for Quick Links */
    .ps-lg-12 {
        padding-left: 0.75rem !important;
    }

    .seo-card-featured {
        transform: scale(1);
    }

    .case-study-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {
    .problem-number {
        font-size: 2rem;
    }

    .approach-content-box {
        padding: 2rem 1.5rem;
    }

    .seo-deliverable-card {
        padding: 2.5rem 2rem;
    }
}


/* Fix for Twitter/X Logo Visibility */
.uil-twitter::before,
.x-social-icon i::before {
    content: "\edc5" !important;
    /* The 'X' icon Unicode for Unicons */
    font-family: "unicons" !important;
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    color: #ffffff;
    /* Ensures it's white */
    opacity: 1 !important;
}

/* Fix Space Inconsistency */
.offset-lg-1 {
    margin-left: 8.33333333% !important;
    /* Standard Bootstrap offset */
}

/* Ensure the container uses flexbox for alignment */
.nav.social.social-white {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    /* This creates exactly equal 20px space between every icon */
}

/* Reset anchor tags to ensure they don't have inherited margins */
.nav.social.social-white a {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    line-height: 1 !important;
}

/* Align the SVG Twitter-X icon perfectly with FontIcons */
.x-social-icon {
    height: 14px;
    /* Matches the SVG height for a tight bounding box */
}

.x-social-icon svg {
    display: block;
    fill: #ffffff !important;
    /* Ensures the X is white */
}

/* Ensure Unicons match the visual center */
.nav.social.social-white i {
    font-size: 1rem;
    display: block;
    line-height: 1;
}

.widget-title {
    margin-bottom: 1.25rem !important;
    font-size: 0.95rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: #ffffff !important;
}

footer .fs-sm,
footer address,
footer p,
footer li a {
    font-size: 0.85rem !important;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Hover effect */
.hover-grape:hover {
    color: #7a1e4f !important;
}

/* Enhanced Responsive Design for SEO Page */

/* General responsive adjustments */
@media (max-width: 991px) {
    .display-2 {
        font-size: 2.5rem !important;
    }

    .display-3 {
        font-size: 2.25rem !important;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 1.75rem !important;
    }

    .display-6 {
        font-size: 1.5rem !important;
    }

    .lead {
        font-size: 1.1rem !important;
    }

    .fs-lg {
        font-size: 1.1rem !important;
    }

    .fs-20 {
        font-size: 1.2rem !important;
    }

    .py-14 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-md-17 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    /* Adjust section spacing on smaller screens */
    .mb-10 {
        margin-bottom: 3rem !important;
    }

    .mb-12 {
        margin-bottom: 3rem !important;
    }

    /* Stack columns on medium screens */
    .order-2.order-lg-1 {
        order: 0 !important;
    }

    .order-1.order-lg-2 {
        order: 0 !important;
    }

    /* Adjust button sizes */
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }

    /* Adjust hero section */
    .seo-hero-title {
        font-size: 2.5rem !important;
    }

    /* Ensure hero image scales properly */
    .seo-hero-figure img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .seo-cta-box {
        padding: 3rem 2rem;
    }

    /* Timeline approach section */
    .approach-item {
        padding-left: 60px;
    }

    .approach-item::before {
        left: 29px;
    }

    /* Case study section */
    .case-content-wrapper {
        padding-left: 0;
        margin-top: 2rem;
    }

    /* Adjust grid items */
    .gx-lg-8 {
        --bs-gutter-x: 1rem;
    }

    .gy-6 {
        --bs-gutter-y: 2rem;
    }
}

@media (max-width: 767px) {
    .display-2 {
        font-size: 2rem !important;
    }

    .display-3 {
        font-size: 1.75rem !important;
    }

    .display-4 {
        font-size: 1.5rem !important;
    }

    .display-5 {
        font-size: 1.25rem !important;
    }

    .display-6 {
        font-size: 1.2rem !important;
    }

    .lead {
        font-size: 1rem !important;
    }

    .fs-lg {
        font-size: 1rem !important;
    }

    .fs-20 {
        font-size: 1rem !important;
    }

    .py-14,
    .py-md-17 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mb-10,
    .mb-12 {
        margin-bottom: 2rem !important;
    }

    /* Stack all columns on small screens */
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-10,
    .col-lg-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Adjust button for mobile */
    .btn {
        margin-bottom: 0.5rem;
    }

    /* Full-width buttons only for specific sections, not hero */
    .seo-problem-card .btn,
    .seo-deliverable-card .btn,
    .seo-cta-box .btn {
        width: 100%;
    }

    /* Keep hero buttons as inline-flex with proper gap */
    .seo-hero-premium .d-flex.gap-3 .btn {
        flex: 0 0 auto;
        width: auto;
        margin-bottom: 0;
    }

    @media (max-width: 767px) {
        .seo-hero-premium .d-flex.gap-3 {
            display: flex !important;
            flex-direction: column;
        }

        .seo-hero-premium .d-flex.gap-3 .btn {
            width: 100%;
            margin-bottom: 0.5rem;
        }
    }

    .btn-lg {
        padding: 0.75rem 1.25rem !important;
        font-size: 1rem !important;
    }

    /* Specific adjustment for hero buttons */
    .seo-hero-premium .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }

    /* Adjust grid items */
    .seo-deliverable-card {
        margin-bottom: 2rem;
    }

    /* Adjust timeline approach */
    .approach-item {
        padding-left: 0;
        margin-bottom: 3rem;
    }

    .approach-marker {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 1.5rem;
    }

    .approach-item::before {
        display: none;
    }

    .approach-content-box {
        padding: 2rem 1.5rem;
    }

    /* Center align text on mobile */
    .text-center.text-lg-start {
        text-align: center !important;
    }

    /* Adjust spacing */
    .gx-lg-8,
    .gy-lg-10 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.5rem;
    }

    /* Adjust hero section */
    .seo-hero-title {
        font-size: 2rem !important;
    }

    /* Adjust hero image for mobile */
    .seo-hero-figure img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Case study section */
    .case-study-image-container {
        margin-bottom: 2rem;
    }

    .case-study-visual-wrapper {
        margin-bottom: 2rem;
    }

    /* Quick metrics grid */
    .quick-metrics-grid {
        grid-template-columns: 1fr;
    }

    /* Result stats */
    .result-stat-card {
        margin-bottom: 1.5rem;
    }

    /* Fixed alignment for Quick Links (Mobile) */
    .ps-lg-12 {
        padding-left: 0.75rem !important;
    }
}

@media (max-width: 575px) {
    .display-2 {
        font-size: 1.75rem !important;
    }

    .display-3 {
        font-size: 1.5rem !important;
    }

    .display-4 {
        font-size: 1.25rem !important;
    }

    .display-5 {
        font-size: 1.1rem !important;
    }

    /* Further reduce padding on extra small screens */
    .p-10 {
        padding: 1.5rem !important;
    }

    .p-8 {
        padding: 1.5rem !important;
    }

    .p-7 {
        padding: 1.5rem !important;
    }

    /* Adjust stat cards */
    .seo-problem-card {
        padding: 2rem 1.5rem;
    }

    .seo-deliverable-card {
        padding: 2rem 1.5rem;
    }

    /* Reduce font sizes further */
    .fs-sm {
        font-size: 0.75rem !important;
    }

    .widget-title {
        font-size: 0.85rem !important;
    }

    footer .fs-sm,
    footer address,
    footer p,
    footer li a {
        font-size: 0.75rem !important;
    }

    /* Adjust hero section */
    .seo-hero-title {
        font-size: 1.5rem !important;
    }

    /* Adjust CTA */
    .seo-cta-box {
        padding: 2rem 1.5rem;
    }

    /* Case study adjustments */
    .case-quote-box {
        padding: 1.5rem;
    }

    .impact-highlights {
        padding: 1.5rem;
    }
}

/* Balance spacing between content and image columns */
.row.gx-lg-8.align-items-center {
    margin-left: -15px;
    margin-right: -15px;
}

.row.gx-lg-8.align-items-center>.col-lg-5,
.row.gx-lg-8.align-items-center>.col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Prevent horizontal scrolling */
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Responsive video embeds if any */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Ensure images scale properly */
img {
    max-width: 100%;
    height: auto;
}

/* More specific hero image styling */
.seo-hero-figure img {
    max-width: 100%;
    /* Make it responsive */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
    /* Center it */
    object-fit: contain;
    /* Ensure proper scaling */
}

/* Mobile View Fixes (Screens smaller than 768px) */
@media (max-width: 767.98px) {

    /* 1. Fix Button Size */
    .seo-hero-premium .btn-lg {
        padding: 0.6rem 1.2rem !important;
        /* Smaller than standard btn-lg */
        font-size: 0.9rem !important;
        /* Smaller text */
        letter-spacing: normal !important;
    }

    /* 2. Ensure buttons don't stack awkwardly */
    .seo-hero-premium .d-flex {
        justify-content: center;
        /* Centers buttons on mobile */
    }

    /* Fix Hero Image Scaling */
    .seo-hero-figure {
        margin-top: 30px;
        /* Adds space between text and image */
        text-align: center;
    }

    .seo-hero-figure img {
        max-width: 100% !important;
        /* Prevents the image from being massive on mobile */
        height: auto;
        margin: 0 auto;
    }
}