/* Google Ads Page Styles */
/* Main container - renamed from .google-ads to avoid conflicts */
main.wov-google-ads-page,
.wov-google-ads-page {
    display: block !important;
    background-color: var(--light-gray);
    min-height: calc(100vh - 100px);
    margin-top: 100px;
    overflow-x: hidden;
}

/* Hero Section */
.google-ads__hero {
    display: flex;
    /* align-items: center; */
    position: relative;
    padding: 4rem 2rem;
    padding-top: 10px;
    position: relative;
    height: calc(100vh - 120px);
}
.google-ads__hero-bg {
    position: absolute;
    /* top: 100px;
     */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.google-ads__hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.03) 50%,
        rgba(0, 0, 0, 0.08) 100%
    );
    opacity: 1;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.google-ads__hero-bg.cut::after {
    opacity: 0;
}

.google-ads__hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Initial state - full height */
.google-ads__hero-bg.initial {
    height: calc(100vh - 130px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
}

.google-ads__hero-bg.initial img {
    transform: scale(1.02);
}

/* Final state - cut to half */
.google-ads__hero-bg.cut {
    height: 50vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.google-ads__hero-bg.cut img {
    transform: scale(1);
}

.google-ads__hero-content {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.google-ads__title {
    font-size: 65px;
    font-weight: 900;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateY(40px);
    animation: slideInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
    letter-spacing: -3px;
    transition: color 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 60px;
}

.google-ads__title.dark {
    color: var(--dark-gray);
}

.google-ads__title-span {
    text-transform: none;
    font-style: italic;
    font-size: 65px;
    font-weight: 600;
}

.google-ads__subtitle {
    font-size: 22px;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
    letter-spacing: -0.04em;
    font-weight: 900;
    opacity: 0;
    transform: translateY(40px);
    animation: slideInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.6s;
    text-transform: uppercase;
    transition: color 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-ads__subtitle.dark {
    color: var(--dark-gray);
}

.google-ads__cards {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    pointer-events: none;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.google-ads__cards.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.google-ads__card {
    width: 370px;
    background: lab(94.8% 0.01 -0.01 / 0.7);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.google-ads__cards.visible .google-ads__card {
    opacity: 1;
    transform: translateY(0);
}

.google-ads__cards.visible .google-ads__card:nth-child(1) {
    transition-delay: 0.1s;
}

.google-ads__cards.visible .google-ads__card:nth-child(2) {
    transition-delay: 0.2s;
}

.google-ads__card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.google-ads__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../assets/img/noise-texture.svg');
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.78;
    filter: blur(1.5px);
    pointer-events: none;
    z-index: 1;
    backdrop-filter: blur(55px);
}

.google-ads__card > * {
    position: relative;
    z-index: 2;
}

.google-ads__card-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark-gray);
    font-style: italic;
    letter-spacing: -0.04em;
}

.google-ads__card-text {
    font-size: 22px;
    color: var(--dark-gray);
    line-height: 1.5;
    margin-top: 30px;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.google-ads__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.google-ads__card-list li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 22px;
    color: var(--dark-gray);
    line-height: 1.1;
    margin-top: 30px;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.google-ads__card-list li::before {
    content: '•';
    color: var(--dark-gray);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.google-ads__floating-note {
    background: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 50%;
    width: 370px;
    height: 450px;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: var(--primary-green);
    line-height: 1.4;
    opacity: 0;
    transform: scale(0.85) rotate(-5deg);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.google-ads__cards.visible .google-ads__floating-note {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition-delay: 0.3s;
}

.google-ads__floating-note:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.google-ads__card-oval {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Middle Section */
.google-ads__middle {
    /* margin-top: 160px; */
    padding: 2rem 2rem 4rem;
    text-align: center;
}

.google-ads__middle-title {
    padding: 0 26%;
    font-size: 60px;
    font-weight: 900;
    color: var(--dark-gray);
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.05em;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    line-height: 1.1;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
}

/* Bottom Section */
.google-ads__bottom {
    max-width: 1000px;
    background: var(--dark-gray);
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    border-radius: 10px;
    margin-top: -20px;
    height: 592px;
}

.google-ads__bottom-ellipse {
    position: absolute;
    left: -180px;
}

.google-ads__bottom-content {
    max-width: 1170px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.google-ads__bottom::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.google-ads__bottom-list {
    margin-left: 300px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    padding-right:30px;
}

.google-ads__list-item {
    margin-bottom: 1rem;
}

.google-ads__list-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.google-ads__list-text {
    font-size: 22px;
    color: var(--light-gray);
    line-height: 1.1;
    margin: 0;
    font-weight: 400;
}
.google-ads__list-text-span {
    font-weight: 900;
    font-style: italic;
}
.google-ads__list-text-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
}
.google-ads__list-text-list li {
    font-size: 22px;
    color: var(--light-gray);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.04em;
    padding-left: 1.5rem;

    
}
.google-ads__list-text-list li::before {
    content: '•';
    color: var(--light-gray);
    font-weight: bold;
    margin-left: -1rem;
    margin-right: 8px;
}

/* Benefits Section */
.google-ads__benefits {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.google-ads__benefits-content {
    max-width: 1170px;
    margin: 0 auto;
}

.google-ads__benefits-title {
    font-size: 60px;
    font-weight: 900;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.04em;
    position: relative;
}

.google-ads__benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.google-ads__benefit-item {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    width: 0;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.google-ads__benefit-item.animate {
    width: 100%;
    opacity: 1;
}

.google-ads__benefit-item:nth-child(1) { transition-delay: 0.1s; }
.google-ads__benefit-item:nth-child(2) { transition-delay: 0.2s; }
.google-ads__benefit-item:nth-child(3) { transition-delay: 0.3s; }
.google-ads__benefit-item:nth-child(4) { transition-delay: 0.4s; }
.google-ads__benefit-item:nth-child(5) { transition-delay: 0.5s; }

.google-ads__benefit-icon {
    width: 100px;
    height: 100px;
    background: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-ads__benefit-icon img {
    width: 40px;
    height: 40px;
}

.google-ads__benefit-text {
    flex: 1;
    font-size: 18px;
    height: 100px;
    display: flex;
    padding-left: 28px;
    align-items: center;
    border-radius: 100px;
    background: var(--dark-gray);
    color: var(--light-gray);
    line-height: 1.4;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.google-ads__benefit-text.last {
    border-radius: 100px 0 0 100px;
}

.google-ads__benefit-title {
    font-weight: 700;
    font-style: italic;
}

.google-ads__benefit-highlight {
    color: var(--primary-green);
    font-weight: 700;
}

.google-ads__benefit-check {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--dark-gray);
    border: 10px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
    position: absolute;
    right: 6px;
}

.google-ads__benefit-check img {
    width: 40px;
    height: 40px;
}

/* Workflow Section */
.google-ads__workflow {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
    margin-top: 2rem;
    padding-bottom: 0;
}

.google-ads__workflow-content {
    max-width: 1170px;
    margin: 0 auto;
}

.google-ads__workflow-title {
    font-size: 60px;
    font-weight: 900;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 110px;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.04em;
}

.google-ads__workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.google-ads__workflow-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.google-ads__workflow-card {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    height: 243px;
    opacity: 0;
    transform: translateY(50px);
}

.google-ads__workflow-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.google-ads__workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.google-ads__workflow-number {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -50px;
    left: 50%;
    transform: translate(-50%, 0px);
    color: var(--primary-green);
    background: linear-gradient(135deg, #2E3230 0%, #242725 80%, #171918 100%);
    border: 10px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-style: italic;
    font-size: 22px;
    font-weight: 900;
    z-index: 11;
}

.google-ads__workflow-icon-img {
    width: 24px;
    height: 24px;
}

.google-ads__workflow-icons {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -50px;
    left: 50%;
    transform: translate(-50%, 0px);
    background: linear-gradient(135deg, #2E3230 0%, #242725 80%, #171918 100%);
    border: 10px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.google-ads__workflow-icons .google-ads__workflow-icon {
    position: static;
    width: auto;
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
    transform: none;
    margin-bottom: 0;
}

.google-ads__workflow-details {
    width: 100%;
    margin-top: 75px;
}

.google-ads__workflow-text {
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.04em;
    line-height: 1.1;
}
.google-ads__workflow-highlight {
    font-weight: 900;
    font-style: italic;
}

.google-ads__workflow-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.google-ads__cta-button {
    background: linear-gradient(180deg, #7AFFB3 0%, #4DE68A 100%);
    color: var(--dark-gray);
    padding: 1rem 2rem;
    border: 1px solid #60FFA0;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 
        0.5px 0.5px 0 #2e323025,
        -0.5px -0.5px 0 #2e323025,
        0.5px -0.5px 0 #2e323025,
        -0.5px 0.5px 0 #2e323025;
    font-size: 22px;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.google-ads__cta-button:hover {
    background: linear-gradient(180deg, #8AFFC3 0%, #5DFF9A 100%);
    border-color: #60FFA0;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.google-ads__cta-button:active,
.google-ads__cta-button.button-pressed {
    transform: translateY(2px) scale(0.95);
    background: linear-gradient(180deg, #6AFFA3 0%, #3DE67A 100%);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) saturate(1.1);
}

/* Results Section */
.google-ads__results {
    background-color: var(--light-gray);
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 0;
    overflow-x: hidden;
}
.footer.footer--google-ads .footer__content {
    border-radius: 10px
}

.google-ads__results-content {
    padding: 0 10px;
    width: 100%;
    overflow-x: hidden;
}

.google-ads__results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    min-height: 400px;
    position: relative;
    overflow-x: hidden;
}

.google-ads__results-panel {
    background: var(--dark-gray);
    border-radius: 10px;
    padding: 3rem;
    display: flex;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.google-ads__results-panel--left {
    justify-content: right;
}

.google-ads__results-panel--right {
    justify-content: left;
    border-radius: 10px;
    transform: translateX(100px);
}

.google-ads__results-panel.animate {
    opacity: 1;
    transform: translateX(0);
}

.google-ads__results-title {
    text-align: end;
    color: white;
    font-size: 65px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.google-ads__results-title-line {
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: -0.06em;
    margin-bottom: 0.5rem;
}

.google-ads__results-content-text {
    color: white;
}

.google-ads__results-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.google-ads__results-list li {
    max-width: 500px;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.1;
}

.google-ads__results-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--light-gray);
    font-size: 20px;
    font-weight: bold;
}

.google-ads__results-subtitle {
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    letter-spacing: -0.04rem;
}

.google-ads__results-description {
    max-width: 500px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.04rem;
    margin: 0;
    color: white;
}

/* Footer */
.footer--google-ads {
    margin-top: 0;
}

.footer--google-ads .footer__content {
    border-radius: 0;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .google-ads__cards {
        flex-direction: column;
    }
    
    .google-ads__bottom-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .google-ads__bottom::before {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 2rem;
    }
    
    .google-ads__bottom-list {
        margin-left: 0;
        padding-right: 0;
    }
    
    .google-ads__floating-note {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 2rem auto 0;
        width: 150px;
        height: 150px;
        font-size: 12px;
    }
    
    .google-ads__benefits-title {
        font-size: 45px;
    }
    
    .google-ads__workflow-title {
        font-size: 45px;
    }
    
    .google-ads__workflow-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .google-ads__results-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .google-ads__results-grid::before {
        display: none;
    }
    
    .google-ads__results-panel {
        border-radius: 15px;
        padding: 2rem;
    }
    
    .google-ads__results-panel--right {
        border-radius: 15px;
    }
    
    .google-ads__results-title-line {
        font-size: 32px;
    }

}

@media (max-width: 768px) {
    .wov-google-ads-page {
        padding: 0 10px;
        overflow-x: hidden;              /* prevent horizontal scroll */
    }

    /* Ensure inner elements don't exceed viewport width */
    .wov-google-ads-page, .wov-google-ads-page * {
        box-sizing: border-box;
    }

    .google-ads__hero {
        padding: 0;
        min-height: 80vh;
        margin-top: 50px;
    }
    
    .google-ads__hero-bg {
        display: none;
    }

    /* On mobile, show cards immediately without animation */
    .google-ads__cards {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .google-ads__card {
        opacity: 1;
        transform: translateY(0);
    }

    /* On mobile, title and subtitle should be dark immediately */
    .google-ads__title,
    .google-ads__subtitle {
        color: var(--dark-gray);
    }
    
    .google-ads__list-item,
    .google-ads__list-text-list li {
        font-size: 18px;
    }
    
    .google-ads__hero-bg-mobile {
        background: url(../../assets/img/mobileadsbg.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
        top: 500px;
    }
    
    .google-ads__workflow-number {
        top: -64px;
    }
    
    .google-ads__results-panel--left {
        justify-content: start;
    }
    .google-ads__results-title {
        display: flex;
        text-align: left;
        justify-content: center;
        flex-direction: column;
        margin: 0 auto;
        font-size: 32px;
    }
    
    .google-ads__workflow-cta {
        margin-top: 0;
        height: 60px;
    }
    
    .google-ads__bottom-ellipse {
        left: unset;
        width: 100%;
        left: 0;
        bottom: -340px;
    }
    
    .google-ads__results-content {
        padding: 0;
    }
    
    .google-ads__title {
        font-size: 32px;
        font-weight: 900;
        letter-spacing: -0.04em;
        margin-bottom: 0;
    }
    .google-ads__title-span {
        font-size: 32px;
        font-weight: 600;
        letter-spacing: -0.04em;
        margin-bottom: 1rem;
    }
    
    .google-ads__subtitle {
        font-size: 18px;
        margin-bottom: 2rem;
        text-transform: none; 
        white-space: normal;
        overflow-wrap: anywhere;
        padding: 0 40px;
    }
    
    .google-ads__card {
        width: 100%;
        padding: 30px;
    }
    
    .google-ads__card-title {
        padding-right: 30%;
        font-size: 22px;
        line-height: 1.1;
    }
    
    .google-ads__card-text,
    .google-ads__card-list li {
        line-height: 1.1;
        font-size: 18px;
        font-weight: 400;
    }
    
    .google-ads__middle {
        margin-top: 264px;
    }
    
    .google-ads__middle-title {
        font-size: 40px;
        white-space: normal;      /* allow wrapping at spaces */
        word-break: normal;       /* prevent word breaking - words stay together */
        overflow-wrap: normal;    /* wrap only at word boundaries */
        padding: 0 10px; 
    }
    
    .google-ads__card:nth-child(1) {
        order: 1;
        margin-bottom: 210px;
    }
    .google-ads__card:nth-child(2) {
        order: 3;
    }
    .google-ads__card-oval {
        order: 2;
        position: absolute;
        top: 100px;
        z-index: 1;
    }
    .google-ads__card {
        z-index: 2;
    }
    .google-ads__card-list {
        font-size: 18px;
        font-weight: 400;
        letter-spacing: -0.04em;
    }
    
    .google-ads__floating-note {
        height: 450px;
        width: 100%;
    }
    
    .google-ads__floating-note p {
        font-size: 18px;
        padding: 60px;
    }
    
    .google-ads__benefits-list {
        gap: 0;
    }
    
    .google-ads__bottom {
        max-width: unset;
        height: 760px;
        padding: 2rem 1rem;
    }
    
    .google-ads__bottom::before {
        width: 200px;
        height: 200px;
    }
    
    .google-ads__list-title {
        font-size: 18px;
    }
    
    .google-ads__list-text {
        font-size: 18px;
    }
    
    .google-ads__benefits {
        margin-top: 360px;
        padding: 0;
        margin-left: 0;                   /* was -54px */
    }
    
    .google-ads__benefits-title {
        font-size: 32px;
        margin-bottom: 2rem;
    }
    
    .google-ads__benefit-item {
        margin-top: -10px;
        padding: 0 1.5rem;
        padding-right: 0;
    }
    
    .google-ads__benefit-text.last {
        border-radius: 100px;
    }
    
    .google-ads__benefit-check {
        display: none;
    }
    
    .google-ads__benefit-icon {
        width: 100px;
        height: 100px;
    }
    
    .google-ads__benefit-icon img {
        width: 40px;
        height: 40px;
    }
    
    .google-ads__benefit-text {
        font-size: 16px;
        margin-left: -42px;
        border: 10px solid;
        height: 132px;
        display: block;
        white-space: unset;
        padding: 22px 10px 30px 34px;
        line-height: 1.1;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .google-ads__benefit-check {
        width: 35px;
        height: 35px;
    }
    
    .google-ads__benefit-check img {
        width: 18px;
        height: 18px;
    }
    
    .google-ads__workflow {
        padding: 0;
    }
    
    .google-ads__workflow-title {
        font-size: 32px;
        margin-bottom: 90px;
    }
    
    .google-ads__workflow-column {
        gap: 10px;
    }
    
    .google-ads__workflow-card {
        padding: 1rem 1.5rem;
        min-height: 70px;
        height: 200px;
        padding-top: 30px;
    }
    
    .google-ads__workflow-highlight {
        font-size: 18px;
    }
    
    .google-ads__workflow-text {
        width: 80%;
        height: 60px;
        font-size: 18px;
    }
    
    .google-ads__cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 22px;
        letter-spacing: 0.3px;
        width: 100%;
        height: 60px;
    }
    
    .google-ads__results-panel--right {
        height: 100%;
        padding: 30px 10px;
    }
    
    .google-ads__results {
        padding: 0;
        margin: 10px 0;
        margin-bottom: 60px;
        width: 100%;
    }
    
    .google-ads__results-panel {
        height: 200px;
    }
    .google-ads__results-panel.google-ads__results-panel--right {
        height: 100%;
    }
    
    .google-ads__results-title-line {
        font-size: 32px;
    }
    
    .google-ads__results-subtitle {
        font-size: 20px;
    }
    
    .google-ads__results-list li {
        font-size: 18px;
    }
    
    .google-ads__results-description {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .google-ads__subtitle {
        font-size: 18px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    
    .google-ads__middle-title {
        font-size: 32px;
        padding: 0 30px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    
    .google-ads__bottom::before {
        width: 150px;
        height: 150px;
    }
    
    .google-ads__benefit-check {
        width: 30px;
        height: 30px;
    }
    
    .google-ads__benefit-check img {
        width: 16px;
        height: 16px;
    }
    
    .google-ads__workflow-title {
        font-size: 32px;
    }
    
    .google-ads__workflow-column {
        gap: 10px;
    }
    
    .google-ads__workflow-card {
        padding: 0.8rem 1rem;
        min-height: 60px;
        padding-top: 30px;
    }
    
    .google-ads__workflow-description {
        font-size: 12px;
    }
    
    .google-ads__cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 22px;
        letter-spacing: 0.2px;
    }
    
    .google-ads__results-title-line {
        font-size: 32px;
    }
    
    .google-ads__results-subtitle {
        font-size: 18px;
    }
    
    .google-ads__results-list li {
        font-size: 18px;
    }
    
    .google-ads__results-panel--right {
        height: 100%;
    }
    
    .google-ads__results-description {
        font-size: 18px;
    }
}

/* Final override to ensure google-ads page is always visible - must be at the end */
main.wov-google-ads-page,
.wov-google-ads-page {
    display: block !important;
}
