/* Resetare de bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stiluri generale */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
	
}

/* Header */
header {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background-image: url("background.jpg");
}

h2 {
    color: #fff;
    margin-bottom: 20px;
	font-size: 35px;
}

h3 {
	color: #fff;
	font-size: 30px;
}

p {
	color: #fff;
    margin-bottom: 20px;
	font-size: 21px;
}

li {
	color: #fff;
	font-size: 25px;
}

label {
	color: #fff;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 8px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
}

form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Map */
#map {
    margin-top: 20px;
    text-align: center;
}

iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-popup a {
    color: #fff;
    text-decoration: underline;
}

.cookie-popup button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-popup button:hover {
    background-color: #0056b3;
}