/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Urgency Banner */
.urgency-banner {
    background-color: #ff4444;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Order Form Styles */
.order-form-section {
    padding: 40px 20px;
    background: #f8f9fa;
}

.order-form-layout {
    display: flex;
    justify-content: center;
    width: 100%;
}

.order-form-content {
    width: 100%;
    max-width: 500px;
}

.order-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.order-form input,
.order-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.order-form input::placeholder {
    color: #666;
}

.order-form button {
    width: 100%;
    padding: 15px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-form button:hover {
    background: #ff0000;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .order-form-section {
        padding: 20px 15px;
    }

    .order-form {
        padding: 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .order-form input,
    .order-form select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 15px;
        margin-bottom: 12px;
        -webkit-appearance: none; /* Removes default styling on iOS */
        appearance: none;
    }

    .order-form button {
        padding: 16px;
        font-size: 18px;
        margin-top: 10px;
    }

    /* Improve touch targets */
    .order-form input[type="radio"],
    .order-form input[type="checkbox"] {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    /* Improve readability */
    .order-form label {
        font-size: 16px;
        margin-bottom: 8px;
        display: block;
    }

    /* Fix select dropdown appearance */
    .order-form select {
        background: white;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        padding-right: 30px;
    }
}

/* Bundle Box Styles */
.bundle-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.bundle-box {
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    padding-top: 35px;
    padding-bottom: 35px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bundle-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #1e88e5;
    background-color: #f8fbff;
}

.bundle-box.selected {
    border-color: #1e88e5;
    background-color: #e3f2fd;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bundle-box.selected::after {
    content: "Odabrano";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e88e5;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    white-space: nowrap;
}

.bundle-box h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.bundle-box .price {
    font-size: 1.8em;
    font-weight: bold;
    color: #1e88e5;
    margin: 10px 0;
}

.bundle-box .description,
.bundle-box .bonus {
    color: #666;
    font-size: 0.9em;
    margin: 5px 0;
}

.bundle-box .bonus {
    color: #28a745;
    font-weight: 500;
}

.bundle-box .popular-tag {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    white-space: nowrap;
    font-weight: bold;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .bundle-boxes {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bundle-box {
        padding: 15px;
    }

    .bundle-box .price {
        font-size: 1.5em;
    }
}

/* Problem Headline */
.problem-headline {
    color: #ff4444;
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.solution-text {
    font-size: 1.4em;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: white;
    padding: 60px 0;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 3.5em;
    color: #ff4444;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.hero-text h1::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    z-index: -1;
    filter: blur(10px);
}

.hero-text .subheadline {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-text {
        padding: 0;
    }

    .problem-headline {
        font-size: 2em;
    }

    .solution-text {
        font-size: 1.2em;
    }

    .subheadline {
        font-size: 1em;
    }

    .hero-text h1 {
        font-size: 2.5em;
        padding: 15px 20px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%232c5282" fill-opacity="0.05"/></svg>');
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tablet and mobile adjustments */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 30px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-content {
    padding: 0;
}

.stars {
    color: #ffc107;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.review-text {
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1e88e5;
}

.reviewer h4 {
    color: #333;
    margin-bottom: 5px;
}

.reviewer p {
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .review-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Sales Copy Section */
.sales-copy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sales-copy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.expert-quote {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.doctor-portrait {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1e88e5;
}

blockquote {
    font-size: 1.2em;
    color: #333;
    font-style: italic;
    line-height: 1.6;
}

cite {
    display: block;
    margin-top: 10px;
    color: #1e88e5;
    font-weight: 500;
    font-style: normal;
}

@media (max-width: 768px) {
    .expert-quote {
        flex-direction: column;
        text-align: center;
    }

    .doctor-portrait {
        margin-bottom: 20px;
    }
}

/* Bundle Deals Section */
.bundle-deals-section {
    padding: 80px 0;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bundle-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 2px solid transparent;
}

.bundle-card .price {
    font-size: 2.2em;
    font-weight: bold;
    color: #1e88e5;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bundle-card .save {
    font-size: 0.5em;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 4px 8px;
    border-radius: 15px;
    font-weight: 500;
}

.bundle-card .description {
    color: #666;
    font-size: 1.1em;
    margin: 15px 0;
    font-weight: 500;
}

.bundle-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.bundle-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.bundle-card ul li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.savings-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: left;
}

.savings-info p {
    color: #28a745;
    font-size: 0.9em;
    margin: 5px 0;
    font-weight: 500;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    background-color: #f8fbff;
    border-color: #1e88e5;
}

.bundle-card.selected {
    border-color: #1e88e5;
    background-color: #e3f2fd;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e88e5;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .bundle-card {
        padding: 20px;
    }

    .bundle-card .price {
        font-size: 1.8em;
    }

    .bundle-card .description {
        font-size: 1em;
    }

    .savings-info {
        padding: 12px;
    }

    .savings-info p {
        font-size: 0.85em;
    }
}

/* Remove before/after image styles */
.before-after-container,
.before-after-images,
.before-image,
.after-image,
.image-label {
    display: none;
}

/* Update review card styles */
.review-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 30px;
}

.review-content {
    padding: 0;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%231e88e5" fill-opacity="0.1"/></svg>');
    pointer-events: none;
}

.how-it-works-section h2 {
    color: #1e88e5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.step img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.step .content {
    padding: 20px;
}

.step i {
    font-size: 2.5em;
    color: #1e88e5;
    margin: 20px 0;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.trust-elements {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.payment-icons {
    display: flex;
    gap: 20px;
    font-size: 2em;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ff4444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: #ff2222;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bundle-button {
    display: inline-block;
    padding: 12px 25px;
    background: #1e88e5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.bundle-button:hover {
    background: #1565c0;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.trust-signals p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.secure-text {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .trust-signals p {
        margin: 0;
    }

    .secure-text {
        padding: 0 15px;
    }
}

/* Countdown Timer */
.countdown-timer {
    text-align: center;
    margin-bottom: 30px;
}

#timer {
    font-size: 2em;
    font-weight: bold;
    color: #ff4444;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .sales-copy-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-image,
    .sales-copy-image {
        order: -1;
    }

    .benefits-grid,
    .reviews-grid,
    .bundle-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .trust-elements {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expert-quote {
        flex-direction: column;
        text-align: center;
    }

    .doctor-portrait {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.benefit-item,
.review-card,
.bundle-card,
.step {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Floating Buy Button */
.floating-buy-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 1s infinite;
}

.floating-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff4444 0%, #ff2222 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    transition: all 0.3s ease;
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
    background: linear-gradient(135deg, #ff2222 0%, #ff0000 100%);
}

.floating-cta .main-text {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.floating-cta .sub-text {
    font-size: 0.8em;
    opacity: 0.9;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hide floating button on small screens */
@media (max-width: 768px) {
    .floating-buy-button {
        bottom: 10px;
        right: 10px;
    }

    .floating-cta {
        padding: 10px 20px;
    }

    .floating-cta .main-text {
        font-size: 1em;
    }

    .floating-cta .sub-text {
        font-size: 0.7em;
    }
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.problems-section h2 {
    text-align: center;
    color: #333;
    font-size: 2.2em;
    margin-bottom: 50px;
}

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

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #ff4444;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.problem-card i {
    font-size: 2.5em;
    color: #ff4444;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.problem-card ul {
    list-style: none;
    padding: 0;
}

.problem-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.problem-card ul li:before {
    content: "•";
    color: #ff4444;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.problems-cta {
    text-align: center;
    margin-top: 50px;
}

.urgency-text {
    font-size: 1.4em;
    color: #ff4444;
    font-weight: 500;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }

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

    .problem-card ul li {
        text-align: left;
    }
}

/* Life-Changing Benefits Section */
.life-benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
}

.life-benefits-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #1e88e5;
    margin-bottom: 30px;
}

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

.lead-text {
    font-size: 1.4em;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

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

.life-benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 4px solid #1e88e5;
}

.life-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.life-benefit-card i {
    font-size: 2.5em;
    color: #1e88e5;
    margin-bottom: 20px;
}

.life-benefit-card h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.life-benefit-card p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.life-benefit-card ul {
    list-style: none;
    padding: 0;
}

.life-benefit-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.life-benefit-card ul li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.social-proof {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #1e88e5;
    margin-bottom: 10px;
}

.stat-text {
    color: #666;
    font-size: 1.1em;
    line-height: 1.4;
}

.benefits-cta {
    text-align: center;
    margin-top: 50px;
}

.motivation-text {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@media (max-width: 1024px) {
    .life-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .life-benefits-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 20px 0;
        border-bottom: 1px solid #eee;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* Floating Contact Styles */
.floating-contact {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-contact.visible {
    opacity: 1;
    visibility: visible;
    animation: slideDown 0.5s ease;
}

.floating-contact-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 16px;
}

.floating-contact-button i {
    font-size: 20px;
}

.floating-contact-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

/* Contact Form Popup Styles */
.contact-form-popup {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 30px;
}

.contact-form-popup.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.form-header h3 {
    font-size: 1.5em;
    color: #1e88e5;
    margin: 0;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #ff4444;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1e88e5;
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #1e88e5;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form button:hover {
    background: #1565c0;
    transform: translateY(-1px);
}

.contact-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .contact-form-popup {
        width: 90%;
        max-width: 350px;
        padding: 20px;
        top: 70px;
    }

    .form-header h3 {
        font-size: 1.3em;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 10px 12px;
    }
}

/* Centralize all headings */
h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

/* Thank You Page Styles */
.thankyou-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-content h1 {
    color: #1e88e5;
    margin-bottom: 20px;
}

.order-details {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.order-details h2 {
    color: #333;
    margin-bottom: 15px;
}

#orderSummary p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #666;
}

/* Free Shipping Banner */
.free-shipping-banner {
    background: linear-gradient(135deg, #2c5282, #4299e1);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.free-shipping-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    animation: shine 3s infinite;
}

.free-shipping-banner span {
    display: inline-block;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.free-shipping-banner .sparkle {
    display: inline-block;
    margin: 0 8px;
    animation: sparkle 1.5s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .free-shipping-banner {
        font-size: 1rem;
        padding: 10px 0;
    }
} 