/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: #fff;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
    color: #4CAF50;
    font-size: 1.8em;
    margin-bottom: 10px;
}

header p {
    font-size: 1em;
    margin-bottom: 20px;
}

.header-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #FF5722;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #E64A19;
}

/* Main Content Sections */
main section {
    background-color: #fff;
    margin: 20px 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

main section h2 {
    color: #4CAF50;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

main section ul {
    list-style: none;
    padding: 0;
}

main section ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

main section ul li::before {
    content: '✅'; /* Checkmark for positive lists */
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.problems-solved ul li::before {
    content: '❌'; /* X mark for problems */
    color: #F44336;
}

/* Recipe Grid */
.recipe-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.recipe-item {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.recipe-item h3 {
    color: #388E3C;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.recipe-item p {
    font-size: 0.9em;
    color: #555;
}

.recipe-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Bonuses Section */
.bonuses .bonus-item {
    background-color: #ffe0b2;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.bonuses .bonus-item h3 {
    color: #FB8C00;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.bonuses .bonus-item p {
    font-weight: bold;
    color: #E65100;
}

.bonuses .bonus-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Offer Section */
.offer {
    text-align: center;
    background-color: #c8e6c9;
    padding: 25px;
}

.offer h2 {
    color: #2E7D32;
    font-size: 1.6em;
}

.offer p {
    margin-bottom: 5px;
}

.offer .old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 1em;
}

.offer .installments {
    font-size: 1.3em;
    color: #D32F2F;
    font-weight: bold;
}

.offer .cash-price {
    font-size: 1.5em;
    color: #D32F2F;
    font-weight: bold;
    margin-bottom: 15px;
}

.offer .offer-expires {
    color: #F44336;
    font-weight: bold;
    margin-top: 15px;
}

/* Guarantee Section */
.guarantee {
    text-align: center;
    background-color: #bbdefb;
}

.guarantee h2 {
    color: #1976D2;
}

.guarantee ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin-top: 15px;
}

.guarantee ul li {
    flex: 1 1 45%; /* Two columns on mobile */
    margin: 5px;
    text-align: center;
    padding-left: 0;
}

.guarantee ul li::before {
    content: none; /* Remove checkmark for guarantee icons */
}

/* FAQ Section */
.faq .faq-item {
    background-color: #f1f8e9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.faq .faq-item h3 {
    color: #33691E;
    font-size: 1.1em;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

/* Responsive Adjustments (Mobile-first is already applied, this is for larger screens) */
@media (min-width: 768px) {
    .recipe-grid {
        grid-template-columns: 1fr 1fr;
    }

    .guarantee ul li {
        flex: 1 1 20%; /* More columns on larger screens */
    }
}

@media (min-width: 1024px) {
    .recipe-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

