body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2e7d32;
    color: white;
    padding: 20px;
    text-align: center;
}

header .title h1 {
    font-size: 32px;
    margin: 0;
}

header .title h2 {
    font-size: 18px;
    margin-top: 5px;
    color: #66bb6a;
}

header .telephone {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}

nav {
    margin-top: 15px;
}

nav .menu-item {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #388e3c;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

nav .menu-item:hover {
    background-color: #004d40;
}

.contact-info {
    background-color: #004d40;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

main {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.text-section {
    margin-bottom: 20px;
}

.text-section p, .text-section ul {
    line-height: 1.8;
    color: #333;
}

.image-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    border: 2px solid #004d40;
}

footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 12px;
}
