/* General Reset */
body, h1, h2, h3, p, ul, li, table, th, td, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body & Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #ff0000, #007BFF); /* Gradient roșu → albastru */
    color: white;
    padding: 10px 20px;
}

header .logo {
    max-width: 150px; /* Dimensiunea siglei */
    height: auto;
}

.header-content {
    flex: 1;
    text-align: center; /* Centrează moto-ul și numele */
}

header h1 {
    font-size: 1.8em;
    margin: 0;
    line-height: 1.2;
}

header p {
    font-size: 1em;
    margin-top: 5px;
}

header .admin-login {
    padding: 10px 20px;
    background-color: white;
    color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

header .admin-login:hover {
    background-color: #ff0000;
    color: white;
}

/* Navigation Styles */
nav ul {
    background-color: #ff0000;
    overflow: hidden;
    color: white;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    padding: 15px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
}

nav ul li a:hover {
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
}

/* Main Content Styles */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.8em;
    <h2 style="text-align: justify; margin-left: 20px; margin-right: 20px;">Contactează-ne</h2>
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: white;
}

table th {
    background-color: #007BFF;
    color: white;
    font-weight: bold;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Section Styles */
section {
    margin-bottom: 30px;
}

ul {
    list-style: disc inside;
    margin: 10px 0;
    padding: 0 20px;
}

ul li {
    margin: 5px 0;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto; /* Împinge footer-ul jos */
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}
