body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f9f9;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #006d77;
    padding: 15px 50px;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #83c5be;
}

.hero {
    text-align: center;
    padding: 50px;
    background: linear-gradient(to right, #83c5be, #edf6f9);
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.info {
    padding: 40px;
    max-width: 800px;
    margin: auto;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contacts {
    text-align: center;
    margin: 30px 0;
}

.contacts h2 {
    margin-bottom: 20px;
}

.whatsapp-button, .telegram-button {
    display: inline-block;
    padding: 12px 20px;
    margin: 10px;
    font-size: 18px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out;
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #1da851;
}

.telegram-button {
    background-color: #0088cc;
}

.telegram-button:hover {
    background-color: #0077b5;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #006d77;
    color: white;
}
