body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    text-align: center;
    scroll-behavior: smooth;
    padding-top: 60px;
    color: #f1f1f1;
}

.navbar {
    background: #292929;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar .logo img {
    height: 80px;
    width: auto;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    justify-content: flex-end;
}

.navbar .nav-links li {
    display: inline;
}

.navbar .nav-links a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #f59e42;
}

.register-btn {
    background: #f59e42;
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s ease, color 0.3s ease;
}

.register-btn:hover {
    background: #4c9e9e;
    color: white;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-top: 20px;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .register-btn {
        margin-top: 20px;
        width: 100%;
        padding: 12px 0;
    }

    .burger {
        display: flex;
    }
}

.contact-section {
    padding: 50px 20px;
    background-color: #1e1e1e;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #f59e42;
}

.contact-section p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1.1em;
    color: #f1f1f1;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #333;
    color: #f1f1f1;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .submit-btn {
    background-color: #f59e42;
    color: white;
    padding: 12px 25px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

.contact-form .submit-btn:hover {
    background-color: #4c9e9e;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-top: 20px;
}

.phone-container {
    width: 100%;
    max-width: 600px;
    margin: 30px auto 50px;
    text-align: center;
}

.phone-container a {
    color: #f59e42;
    text-decoration: none;
    font-size: 1.2em;
}

.phone-container a:hover {
    text-decoration: underline;
}

footer {
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.footer-links li {
    display: inline-block;
    margin: 0 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer p {
    margin: 10px 0 0;
}
