:root {
    --primary-color: #2e7d32;
    /* Natural Green */
    --secondary-color: #f57f17;
    /* Honey Orange */
    --accent-color: #8bc34a;
    /* Light Green */
    --text-color: #333;
    --bg-color: #f9f9f9;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 600px;
    /* Mobile-first/Landing page width */
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Header/Hero */
.hero {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 15px;
}

.hero h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-intro {
    text-align: center;
    padding: 20px;
    background: #fff;
}

.product-intro h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.product-intro p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 2.5rem;
    color: #1a237e;
    /* Deep Blue from image */
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
}

.highlight-box {
    background-color: #e8f5e9;
    border: 2px dashed var(--primary-color);
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    text-align: center;
}

/* Form Section */
.order-section {
    padding: 20px;
    background-color: #f0f4f8;
    /* Light blueish bg from image area */
    border: 2px dashed #2962ff;
    margin: 15px;
    border-radius: 15px;
}

.form-title {
    color: #2962ff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    text-align: right;
}

/* Button styles removed - using image */

.trust-badges {
    padding: 20px 0;
    text-align: center;
}

/* Symptoms Section */
.symptoms-section {
    padding: 10px 0;
    text-align: center;
}

.symptoms-section img {
    max-width: 100%;
}

/* Info Section */
.info-section {
    width: 100%;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    font-size: 30px;
}