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

body {
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

/* Header */
header {
    background: #222;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin-left: 2rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #ff9900;
}

/* Hero */
#hero {
    text-align: center;
    padding: 4rem 1rem;
    background: #ffe7c4;
}

#hero img {
    max-width: 400px;
    margin-top: 2rem;
}

#hero .btn {
    display: inline-block;
    background: #ff9900;
    color: #fff;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

#hero .btn:hover {
    background: #e68a00;
}

/* Sections */
.section {
    padding: 4rem 1rem;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.section:nth-of-type(even) {
    background: #f1f1f1;
}

.section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #222;
}

.section p, .section ul {
    max-width: 800px;
    margin: 1rem auto;
    text-align: center;
}

.section img {
    display: block;
    margin: 2rem auto;
    max-width: 100%;
    border-radius: 10px;
}

ul {
    list-style: disc;
}

ul li {
    margin: 0.5rem 0;
}

/* Pricing */
.pricing ul {
    text-align: center;
}

.pricing .old {
    text-decoration: line-through;
    color: #999;
}

.pricing .new {
    color: #ff6600;
    font-weight: bold;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-buttons .btn {
    text-decoration: none;
    background: #ff9900;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
}

.contact-buttons .btn:hover {
    background: #e68a00;
}

.contact-buttons .whatsapp {
    background: #25d366;
}

.contact-buttons .whatsapp:hover {
    background: #1da851;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #222;
    color: #fff;
}
