/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
}

/* Header */
header {
    background-color: #00d084;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header nav {
    margin-top: 10px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2em;
}

header nav a:hover {
    text-decoration: underline;
}


/* Sections */
section {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h2 {
    margin-top: 0;
    color: #756537;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form select, form textarea, form button {
    font-size: 1em;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

form input:focus, form select:focus, form textarea:focus {
    border-color: #00d084;
    box-shadow: 0 0 5px rgba(1, 82, 82, 0.5);
}

form button {
    background-color: #00d084;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #00d084;
}


/* Offers Section */
.offer {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.offer:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.offer p {
    margin: 5px 0;
    font-size: 0.95em;
    color: #555;
}

.offer a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
}

.offer a:hover {
    text-decoration: underline;
}


/* Footer */
footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Section Contact */
#contact {
    background-color: #fff;
    padding: 100px;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    color: #756537;
    margin-bottom: 15px;
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact form input,
#contact form textarea,
#contact form button {
    font-size: 1em;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

#contact form input:focus,
#contact form textarea:focus {
    border-color: #00d084;
    box-shadow: 0 0 5px rgba(1, 70, 77, 0.5);
}

#contact form button {
    background-color: #00d084;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact form button:hover {
    background-color: #00d084;
}

/* results */
#results {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

#results h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #756537;
    text-align: center;
}



