/* Resetare stiluri de bază */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header stilizat */
header {
    background: #004085;
    color: white;
    text-align: center;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 26px;
}

/* Conținut principal */
main {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Stilizare secțiuni */
section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 22px;
    color: #004085;
}

p {
    font-size: 16px;
}

/* Footer stilizat */
footer {
    text-align: center;
    padding: 15px;
    background: #004085;
    color: white;
    font-size: 14px;
    margin-top: 30px;
}

/* Formular de contact */
form {
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: bold;
    margin-top: 10px;
}

form input, form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form textarea {
    height: 120px;
    resize: none;
}

form button {
    margin-top: 15px;
    padding: 10px;
    background: #004085;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

form button:hover {
    background: #003366;
}

/* Responsivitate pentru mobil */
@media (max-width: 768px) {
    main {
        width: 90%;
        padding: 15px;
    }
}
