/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #000;
    margin-bottom: 20px;
}

p {
    color: #000;
    margin-bottom: 20px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

/* Product Image */
.product-image {
    text-align: center;
    margin-bottom: 30px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Price and Shipping Styles */
.price-shipping {
    text-align: center;
    margin: 20px 0;
}

.price-shipping .price {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 10px;
}

.price-shipping .shipping {
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #d35400;
    text-decoration: none;
}

/* Product Intro Section */
.product-intro {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.product-intro h2 {
    font-size: 2rem;
    color: #000;
}

.product-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Product Features Section */
.product-features {
    background: #ecf0f1;
    padding: 40px 0;
}

.product-features h2 {
    text-align: center;
    font-size: 2rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.product-features ul li {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    padding: 40px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
}

.testimonials blockquote {
    background: #ecf0f1;
    padding: 20px;
    border-left: 5px solid #3498db;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.testimonials blockquote p {
    margin: 0;
}

.testimonials blockquote em {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #2c3e50;
}

/* Final Call-to-Action Section */
.cta {
    background: #b2b7ce;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Footer Styles */
footer {
    background: #8c95b6;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #000;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .product-intro h2, .product-features h2, .testimonials h2, .cta h2 {
        font-size: 1.5rem;
    }

    .product-intro p, .product-features ul li, .testimonials blockquote, .cta p {
        font-size: 1rem;
    }

    .price-shipping .price {
        font-size: 1.3rem;
    }

    .price-shipping .shipping {
        font-size: 1rem;
    }
}