/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

/* Header Styles */
.header {
    background-color: #5d2d7d;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 36px;
    line-height: 1.3;
}

/* Content Styles */
.content {
    padding: 0 20px;
}

.intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.before-image {
    flex: 0 0 40%;
    text-align: center;
}

.intro-text {
    flex: 0 0 55%;
}

.image-caption {
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

.story p, .results p, .benefits p {
    margin-bottom: 20px;
}

.after-image {
    text-align: center;
    margin: 30px 0;
}

.after-image img, .before-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
}

.product-image {
    text-align: center;
    margin: 30px 0;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

/* Call to Action Styles */
.cta {
    text-align: center;
    margin: 50px 0;
}

.cta p {
    margin-bottom: 20px;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background-color: #ffe300;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 5px;
    margin: 20px 0;
    transition: background-color 0.3s;
    width: 80%;
    text-align: center;
}

.cta-button:hover {
    background-color: #d6bf00;
}

/* Footer Styles */
.footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 10px;
    color: #5d2d7d;
    text-decoration: none;
}

.disclaimer {
    color: #777;
    font-size: 12px;
    line-height: 1.4;
}

.disclaimer p {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .intro {
        flex-direction: column;
    }
    
    .before-image, .intro-text {
        flex: 0 0 100%;
    }
    
    .before-image {
        margin-bottom: 20px;
    }
    
    .header h1 {
        font-size: 28px;
    }
    
    .cta-button {
        width: 100%;
        font-size: 20px;
        padding: 15px 20px;
    }
}

/* Text Emphasis */
strong {
    color: #5d2d7d;
    font-weight: bold;
}
