/* Main styles for affiliate landing pages */
.affiliate-landing-page {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.landing-header {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.landing-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.social-proof {
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: bold;
}

.product-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 1rem;
}

.product-image {
    flex: 1 1 400px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-details {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #e74c3c;
}

.price .original-price {
    text-decoration: line-through;
    color: #7f8c8d;
    margin-right: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

.sales-copy {
    padding: 2rem 1rem;
    font-size: 1.1rem;
}

.key-features {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 1rem;
}

.key-features h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.key-features ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.key-features li {
    margin-bottom: 0.5rem;
}

.landing-footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
    background-color: #2c3e50;
    color: white;
}

.landing-footer .cta-button {
    background-color: #e74c3c;
    font-size: 1.2rem;
}

.landing-footer .cta-button:hover {
    background-color: #c0392b;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .product-showcase {
        flex-direction: column;
    }
    
    .landing-header h1 {
        font-size: 1.8rem;
    }
}