/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.main-container {
    max-width: 400px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* Header */
.top-banner {
    background-color: #000;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
}

/* Hero Image */
.hero-image {
    width: 100%;
    display: block;
}

/* Purple Question Box */
.question-box {
    background: linear-gradient(to bottom, #8e008e, #1a001a);
    color: white;
    padding: 30px 20px;
    margin: 10px;
    border-radius: 15px;
}

.question-box h2 {
    font-size: 22px;
    line-height: 1.4;
}

/* Subtext */
.sub-text {
    color: #666;
    font-size: 18px;
    margin: 15px 0;
    font-weight: bold;
}

/* Action Button */
.order-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #300030, #8e008e);
    color: white;
    text-decoration: none;
    margin: 10px;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.2s;
}

.order-button:hover {
    transform: scale(1.02);
}

.icon {
    margin-right: 10px;
}
/* Features Styling */
.features-container {
    padding: 10px;
    background-color: #fff;
}

.feature-card {
    display: flex;
    align-items: center;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.feature-card.purple-border {
    border-color: #8e008e;
}

.check-icon {
    background: #000;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
}

.check-icon.purple {
    background: #8e008e;
}

.feature-card p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Problem Section Styling */
.problem-section {
    background-color: #8e008e;
    padding: 30px 15px;
    color: white;
    text-align: center;
}

.problem-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.problem-box {
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.1);
}

.question-icon {
    background: #fff;
    color: #8e008e;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.problem-box p {
    font-size: 16px;
    line-height: 1.5;
}
.problem-cards-container {
    background-color: #8e008e; /* Matches the background in the image */
    padding: 0 15px 30px 15px;
}

.problem-cards-container .problem-box {
    margin-bottom: 20px;
    background-color: transparent; /* Keeping it consistent with the border look */
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Adjusting the text inside cards for better readability */
.problem-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}
/* Darker Problem Section */
.conclusion-section {
    background: linear-gradient(to bottom, #400040, #000000);
    padding: 20px 15px;
    text-align: center;
}

.dark-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 30px;
}

.final-statement {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    padding: 0 10px;
}

/* Success Image Styling */
.success-section {
    background-color: #ffffff;
    padding-top: 20px;
}

.success-image {
    width: 100%;
    display: block;
    object-fit: cover;
}
/* Statement Box Styling */
.statement-container {
    padding: 20px;
    background-color: #ffffff;
}

.statement-box {
    border: 3px solid #8e008e; /* Matching the purple border */
    border-radius: 20px;
    padding: 25px;
    text-align: left;
}

.statement-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    font-weight: 600;
}

.highlight {
    color: #8e008e; /* Highlighted purple text from the image */
}
/* Product Intro Styling */
.product-intro-container {
    padding: 20px;
    background-color: #ffffff;
}

.intro-card {
    border: 2px solid #8e008e;
    border-radius: 15px;
    padding: 20px;
}

.intro-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-icon {
    background: #8e008e;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.intro-header p {
    color: #8e008e;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.intro-box {
    border: 3px solid #8e008e;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
}

.intro-box h3 {
    color: #000;
    font-size: 20px;
    font-weight: 800;
}

/* Gradient Order Button */
.action-container {
    padding: 0 20px;
}

.order-button-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #000000, #8e008e);
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.bag-icon {
    margin-right: 15px;
    font-size: 20px;
}

/* Product Image */
.product-showcase {
    text-align: center;
    padding: 30px 0;
}

.product-image {
    max-width: 80%;
    height: auto;
}
/* Hormonal Benefit Styling */
.benefit-container {
    padding: 20px;
    background-color: #ffffff;
}

.benefit-card {
    border: 2px solid #8e008e;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
}

.benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.arrow-circle {
    background-color: #8e008e;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-title {
    color: #8e008e;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.benefit-description {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    font-weight: 500;
}/* How It Works Styling */
.how-it-works-container {
    padding: 20px;
    background-color: #ffffff;
}

.works-card {
    border: 2px solid #8e008e;
    border-radius: 15px;
    padding: 20px;
}

.works-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.works-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.works-icon.question {
    background-color: #8e008e;
}

.works-icon.check {
    background-color: #8e008e;
}

.works-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #8e008e;
    font-weight: bold;
    text-align: left;
}

.works-item .highlight-text {
    font-size: 18px;
    text-decoration: underline;
}

/* Bliss Showcase Styling */
.bliss-showcase {
    text-align: center;
    padding: 10px 0;
}

.bliss-image {
    width: 90%;
    max-width: 450px;
    height: auto;
}
/* Reduction Section Styling */
.reduction-container {
    padding: 20px;
    background-color: #ffffff;
}

.reduction-card {
    border: 2px solid #8e008e;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    margin-bottom: 20px;
}

.reduction-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.down-arrow-circle {
    background-color: #8e008e;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-right: 15px;
    flex-shrink: 0;
}

.reduction-title {
    color: #8e008e;
    font-size: 22px;
    font-weight: 800;
}

.reduction-description {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    font-weight: 500;
}

/* Reusing existing .how-it-works-container and .works-card from the previous step */
.accordion-section {
    background: linear-gradient(to bottom, #8e24aa, #1a0a2a);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.accordion-title {
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: bold;
}

.accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

details {
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
}

summary {
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    list-style: none; /* Removes default arrow */
    position: relative;
    font-weight: 500;
}

/* Custom Arrow Icon */
summary::before {
    content: '⌵'; 
    float: left;
    margin-right: 15px;
    font-weight: bold;
    transition: transform 0.3s;
}

/* Rotate arrow when open */
details[open] summary::before {
    transform: rotate(180deg);
}

.details-content {
    padding: 0 20px 20px 50px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: -5px;
    padding-top: 15px;
}

details[open] {
    background: rgba(255, 255, 255, 0.1);
}
/* Order Form Section */
.order-form-section {
    background-color: #e2f3e1; /* Light green from your image */
    padding: 30px 15px;
    border-top: 2px solid #8e008e;
}

.form-card {
    text-align: center;
}

.form-product-image {
    width: 60%;
    max-width: 200px;
    margin-bottom: 15px;
}

.pricing-container {
    margin-bottom: 20px;
}

.old-price {
    color: #ff0000;
    text-decoration: line-through;
    font-size: 22px;
    font-weight: bold;
    display: block;
}

.new-price {
    color: #2e7d32;
    font-size: 30px;
    font-weight: 900;
}

.trust-badges img {
    width: 100%;
    max-width: 280px;
    margin-bottom: 20px;
}

.order-form {
    display: flex;
    flex-direction: column;
}

.order-form label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000;
}

.order-form input {
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #000;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
}

.submit-btn {
    background-color: #437d28; /* Dark green button */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #35631f;
}