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

header {
    background-color: #1b5e20;
    color: white;
    padding: 40px;
    text-align: center;
}

header .logo img {
    height: 150px;
    display: block;
    margin: 0 auto;
}

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

nav {
    margin-top: 20px;
}

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

nav .menu-item:hover {
    background-color: #66bb6a;
}

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

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 {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    border: 2px solid #004d40;
}

footer {
    background-color: #1b5e20;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
