body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f8f8;
}

header {
    position: relative;
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-image {
    position: relative;
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
}

header h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    background: rgba(44, 62, 80, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1rem;
    }
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #2c3e50;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

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

nav ul li a:hover {
    color: #1abc9c;
}

main {
    padding: 2rem 1rem;
}

.content {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 2rem;
}

h2 {
    color: #2c3e50;
    border-bottom: 2px solid #1abc9c;
    padding-bottom: 0.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th,
table td {
    text-align: left;
    padding: 0.5rem;
    border-bottom: 1px solid #ccc;
}

table th {
    background: #f0f0f0;
    font-weight: bold;
}

table td {
    background: #fff;
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact label {
    margin-top: 10px;
}

#contact input,
#contact textarea {
    padding: 0.5rem;
    margin-top: 5px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#contact button {
    padding: 0.7rem;
    margin-top: 10px;
    background: #1abc9c;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
}

#contact button:hover {
    background: #16a085;
}

footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}