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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .red-heading {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.main-header {
    background-color: #8B0000;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.main-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.main-header p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
}

section {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
    background-color: #fffacd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 5px solid #8B0000;
}

.img-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

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

.product-img {
    max-width: 300px;
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.05);
}

.pain-img, .action-gif {
    border: 3px solid #8B0000;
}

.full-width {
    width: 100%;
    max-width: 600px;
}

.half-width {
    width: 48%;
    max-width: 300px;
}

.red-heading {
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #8B0000;
    display: inline-block;
    padding-bottom: 5px;
}

.pain-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.checklist, .benefits-list {
    list-style-type: none;
    text-align: left;
    margin: 1rem auto;
    max-width: 600px;
}

.checklist li, .benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.checklist li {
    border-left: 4px solid #8B0000;
}

.benefits-list li {
    border-left: 4px solid #228B22;
}

.icon {
    font-size: 1.5rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.highlight-red {
    color: #8B0000;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 1.5rem 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B0000, #ff0000);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 1.5rem 0;
    box-shadow: 0 6px 12px rgba(139,0,0,0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    max-width: 100%;
    word-wrap: break-word;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff0000, #8B0000);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(139,0,0,0.5);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(139, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(139, 0, 0, 0); }
}

.pricing-section {
    background-color: #f9f9f9;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 3rem 1rem 1.5rem; /* Increased top padding */
    width: 100%;
    max-width: 260px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.card:hover {
    transform: translateY(-10px);
}

.card.recommended {
    border: 3px solid #8B0000;
    box-shadow: 0 8px 16px rgba(139,0,0,0.2);
    transform: scale(1.05);
    padding-top: 3.5rem; /* Ensure badge doesn't overlap */
}

.card.recommended:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B0000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    white-space: nowrap; /* Prevent text wrapping */
    z-index: 10;
}

.card h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.card img {
    max-width: 120px;
    margin-bottom: 1rem;
}

.card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8B0000;
    margin-bottom: 0.5rem;
}

.order-form-section {
    background-color: #fff;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: 3rem auto;
}

.delivery-banner {
    background-color: #228B22;
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}

.delivery-banner h3 {
    font-size: 1.2rem;
}

.order-form {
    padding: 2rem;
    background-color: #fafafa;
}

.order-form h3 {
    color: #8B0000;
    margin-bottom: 0.5rem;
}

.form-warning {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 5px rgba(139,0,0,0.2);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.3rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .half-width {
        width: 100%;
        max-width: 100%;
    }
    .pricing-cards {
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .main-header h1 {
        font-size: 1.8rem;
    }
    .red-heading {
        font-size: 1.5rem;
    }
    .highlight-text {
        font-size: 1.1rem;
    }
    .cta-button {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    .card {
        max-width: 100%;
    }
    .card.recommended {
        transform: scale(1);
    }
    .card.recommended:hover {
        transform: translateY(-5px);
    }
    .order-form {
        padding: 1.5rem 1rem;
    }
}


