
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    transition: background 0.3s, color 0.3s;
}

.nav-links li a:hover {
    background-color: #3498db;
    color: white;
    border-radius: 5px;
}

main {
    padding: 30px 10%;
}

.intro h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #2c3e50;
}

.content-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.content-box .text {
    flex: 1;
    padding-right: 20px;
}

.content-box .image img {
    max-width: 150px;
}

.contacts {
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contacts h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    margin-right: 15px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #e0e0e0;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #555;
}

.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;
}

.license-section {
    max-width: 800px;
    margin: 60px auto 40px;
    text-align: center;
}

.license-section h2 {
    color: #006d77;
    font-size: 28px;
    margin-bottom: 20px;
}

.license-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
