/* Marketing Recap specific styles */
    .marketing-content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .marketing-intro {
        text-align: center;
        margin-bottom: 3rem;
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        border-left: 4px solid #FFF600;
    }

    .marketing-intro p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .marketing-intro p:last-child {
        margin-bottom: 0;
    }

    .teaser-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(135deg, #FFF600 0%, #FF6600 100%);
        color: #000000 !important;
        font-weight: 700;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 0.5rem;
    }

    .teaser-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 246, 0, 0.4);
        background: linear-gradient(135deg, #FF6600 0%, #FFF600 100%);
        color: #ffffff;
    }

    .banners-showcase {
        display: grid;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .banner-item {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 2rem;
        border: 2px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .banner-item:hover {
        border-color: rgba(255, 246, 0, 0.3);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .banner-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .banner-header h3 {
        color: #FFF600;
        font-size: 1.3rem;
        margin: 0;
        font-weight: 700;
    }

    .banner-size {
        color: #FFA500;
        font-size: 0.9rem;
        font-weight: 600;
        background: rgba(255, 165, 0, 0.1);
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
    }

    .banner-display {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: center;
    }

    .banner-image {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .banner-description p {
        line-height: 1.6;
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .banner-specs {
        list-style: none;
        display: grid;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 1rem;
        background: rgba(255, 246, 0, 0.05);
        border-radius: 6px;
        border-left: 3px solid #FFF600;
    }

    .banner-specs li {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .banner-specs strong {
        color: #FFF600;
        margin-right: 0.5rem;
    }

    .campaign-summary {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        padding: 2rem;
        border-left: 4px solid #4CAF50;
    }

    .campaign-summary h3 {
        color: #FFF600;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        text-align: center;
    }

    .results-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .result-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 1.5rem;
        text-align: center;
        border: 2px solid rgba(76, 175, 80, 0.3);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .result-label {
        color: #cccccc;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .result-value {
        color: #4CAF50;
        font-size: 1.3rem;
        font-weight: 700;
    }

    .summary-text {
        font-size: 1.05rem;
        line-height: 1.7;
        text-align: center;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .marketing-content {
            padding: 1rem;
        }
        
        .marketing-intro {
            padding: 1rem;
        }
        
        .marketing-intro p {
            font-size: 1rem;
        }
        
        .banner-item {
            padding: 1.5rem;
        }
        
        .banner-header {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .banner-display {
            padding: 1rem;
        }
        
        .banner-header h3 {
            font-size: 1.1rem;
        }
        
        .results-grid {
            grid-template-columns: 1fr;
        }
        
        .campaign-summary {
            padding: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .banners-showcase {
            gap: 2rem;
        }
        
        .banner-item {
            padding: 1rem;
        }
        
        .banner-header h3 {
            font-size: 1rem;
        }
        
        .banner-size {
            font-size: 0.8rem;
        }
        
        .banner-display {
            padding: 0.75rem;
        }
        
        .result-value {
            font-size: 1.1rem;
        }
        
        .teaser-link {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            color: #000000;
        }
    }
/* Teaser page specific styles */
    .teaser-content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .teaser-intro {
        text-align: center;
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        border-left: 4px solid #FFF600;
    }

    .teaser-intro p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0;
    }

    .teaser-display {
        margin: 0 auto 3rem;
        max-width: 800px;
        text-align: center;
    }

    .teaser-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        margin-bottom: 1.5rem;
    }

    .teaser-display figcaption {
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        border: 2px solid rgba(255, 246, 0, 0.3);
    }

    .teaser-display figcaption p {
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }

    .teaser-display figcaption p:first-child {
        color: #FFF600;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .teaser-display figcaption p:last-child {
        margin-bottom: 0;
        font-size: 0.9rem;
        color: #cccccc;
    }

    .teaser-details {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 2rem;
        border-left: 4px solid #FFA500;
    }

    .teaser-details h3 {
        color: #FFF600;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .teaser-details > p {
        line-height: 1.7;
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .teaser-specs {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    .teaser-specs h4 {
        color: #FFA500;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .teaser-specs ul {
        list-style: none;
        display: grid;
        gap: 0.75rem;
    }

    .teaser-specs li {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .teaser-specs strong {
        color: #FFF600;
        margin-right: 0.5rem;
    }

    .back-link {
        text-align: center;
    }

    .btn-back {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background: rgba(255, 246, 0, 0.1);
        color: #FFF600;
        font-weight: 700;
        text-decoration: none;
        border-radius: 8px;
        border: 2px solid rgba(255, 246, 0, 0.3);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-back:hover {
        background: rgba(255, 246, 0, 0.2);
        border-color: rgba(255, 246, 0, 0.5);
        transform: translateY(-2px);
        color: #FFF600;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .teaser-content {
            padding: 1rem;
        }
        
        .teaser-intro {
            padding: 1rem;
        }
        
        .teaser-intro p {
            font-size: 1rem;
        }
        
        .teaser-display figcaption {
            padding: 1rem;
        }
        
        .teaser-display figcaption p:first-child {
            font-size: 1.2rem;
        }
        
        .teaser-details {
            padding: 1.5rem;
        }
        
        .teaser-specs {
            padding: 1rem;
        }
    }

    @media (max-width: 480px) {
        .teaser-intro p {
            font-size: 0.95rem;
        }
        
        .teaser-display figcaption p:first-child {
            font-size: 1.1rem;
        }
        
        .teaser-details h3 {
            font-size: 1.1rem;
        }
        
        .btn-back {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
    }