/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

h2, h3 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #454546;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.main-header {
    background-color: #454546;
    padding: 10px 0;
}

.main-header__title {
    text-align: center;
    color: white;
    font-size: 2.5em;
    margin: 0;
}

.menu {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.menu__item {
    margin-right: 20px;
}

.menu__link {
    color: white;
    font-size: 1.2em;
    padding: 10px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.menu__link:hover {
    border-color: white;
}

/* Contact Section */
.contact-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 40px auto;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.contact-info a {
    color: #454546;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 1.2em;
    color: #454546;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    font-size: 1.1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #454546;
    outline: none;
}

.contact-form button {
    background-color: #454546;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #333;
}

/* Footer */
.main-footer {
    background-color: #454546;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.footer__contact, .footer__links, .footer__social {
    margin-bottom: 20px;
}

.footer__contact p, .footer__links p {
    font-size: 1.1em;
}

.footer__social a {
    font-size: 1.5em;
    margin-right: 15px;
    color: white;
    transition: color 0.3s ease;
}

.footer__social a:hover {
    color: #d1d1d1;
}

.footer__copyright {
    font-size: 1em;
    color: #d1d1d1;
    margin-top: 30px;
}

/* Media Queries */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .contact-container {
        padding: 20px;
    }

    .contact-form label, .contact-form input, .contact-form textarea {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .contact-info p, .footer__contact p {
        font-size: 1em;
    }
}
