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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
}

p {
    margin-bottom: 20px;
}

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

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.dark-bg {
    background-color: #2a1a5e;
    color: #fff;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: #ff6b00;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff8c3f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-center {
    text-align: center;
    margin: 40px 0;
}

/* Header/Hero Section */
.hero {
    background-color: #2a1a5e;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2a1a5e;
}

/* Product Info Section */
.product-info {
    padding: 80px 0;
}

.product-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-text {
    flex: 1;
    padding-right: 40px;
}

.product-image {
    flex: 1;
    text-align: center;
}

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

/* Unique Features Section */
.unique-features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Peptide Info Section */
.peptide-info {
    padding: 80px 0;
}

.peptide-content {
    max-width: 800px;
    margin: 0 auto;
}

.peptide-text {
    text-align: center;
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.ingredients-table {
    max-width: 800px;
    margin: 0 auto 50px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ingredient-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.ingredient-row:last-child {
    border-bottom: none;
}

.ingredient-name, .ingredient-benefit {
    padding: 15px 20px;
}

.ingredient-name {
    flex: 1;
    font-weight: 700;
    background-color: #f0f0f0;
}

.ingredient-benefit {
    flex: 2;
}

.guarantee {
    text-align: center;
    margin-bottom: 50px;
}

.ingredients-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ingredient-detail {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #ff6b00;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.name {
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Science Section */
.science {
    padding: 80px 0;
    text-align: center;
}

.science p {
    max-width: 800px;
    margin: 0 auto;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Footer */
footer {
    background-color: #2a1a5e;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content, .product-content {
        flex-direction: column;
    }
    
    .hero-text, .product-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .benefits-grid, .features-grid, .ingredients-details, .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .benefits-grid, .features-grid, .ingredients-details, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredient-row {
        flex-direction: column;
    }
    
    .ingredient-name, .ingredient-benefit {
        width: 100%;
    }
}
