body {
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    color: #e0dfdc;
    background-color: rgb(24, 17, 27);
}

.header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    padding: 20px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #a19079;
}

.header-logo {
    position: absolute;
    top: 10px;
    left: 20px;
}

.header-logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    background: rgba(20, 20, 20, 0.85);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.nav a {
    color: #d4c2a8;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
}

.nav a:hover {
    background: #a19079;
    color: #fff;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

h1 {
    text-align: center;
    color: #ecbdbd;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.contact-block {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(40, 40, 40, 0.8);
    border-left: 5px solid #a19079;
    border-radius: 8px;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.contact-block:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.contact-block h2 {
    color: #c9a9a6;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin: 12px 0;
    font-size: 1.1em;
}

.contact-list a {
    color: #ffdbb5;
    text-decoration: none;
    border-bottom: 1px dashed #ffdbb5;
    transition: 0.3s;
}

.contact-list a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #f0f0f0;
    font-family: inherit;
    resize: vertical;
}

button {
    background-color: #a19079;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #8a745f;
}

label {
    font-weight: bold;
    color: #d6c8b5;
}

.footer-note {
    margin-top: 40px;
    font-style: italic;
    text-align: center;
    color: #bbb;
}

.footer h4 {
    color: #676770;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer__desc {
    padding: 35px 0;
}

.footer__desc li a {
    color: #668CAD;
    font-size: 13px;
    line-height: 1.5;
}

.footer__desc li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__desc li {
    height: 30px;
    position: relative;
}

.footer__desc li::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #D5D5E0;
}

.footer__desc li + li {
    margin-top: 6px;
}

.footer__social li::before {
    width: calc(100% - 34px);
}

.footer__social img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-right: 10px;
}

.footer__desc-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1162px;
    padding: 0 20px;
    margin: 0 auto;
}

.footer__desc-container > * {
    width: 30%;
}

.footer__copy {
    text-align: center;
    padding: 1px 0;
    background: #383838;
    color: #9E9E9E;
}

.footer__copy p {
    color: #9E9E9E;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .header {
        font-size: 20px;
        padding: 15px;
        position: relative;
    }

    .header-logo {
        top: 10px;
        left: 10px;
    }

    .header-logo-image {
        width: 30px;
        height: 30px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 200px;
        height: 100%;
        background: rgba(20, 20, 20, 0.95);
        flex-direction: column;
        padding: 20px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav.active {
        display: flex;
        transform: translateX(0);
    }

    .nav a {
        padding: 10px;
        font-size: 14px;
        color: #d4c2a8;
        border-bottom: 1px solid #a19079;
    }

    .nav a:hover {
        background: #a19079;
        color: #fff;
    }

    .hamburger {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: #d4c2a8;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .container {
        margin: 20px;
        padding: 20px;
    }

    h1 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .contact-block {
        margin: 20px 0;
        padding: 15px;
    }

    .contact-list li {
        font-size: 1em;
    }

    .footer__desc-container {
        flex-direction: column;
        padding: 15px;
    }

    .footer__desc-container > * {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer h4 {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .footer__desc li a {
        font-size: 12px;
    }

    .footer__social img {
        width: 20px;
        height: 20px;
    }

    .footer__copy {
        font-size: 12px;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .header {
        font-size: 18px;
        padding: 10px;
    }

    .header-logo-image {
        width: 25px;
        height: 25px;
    }

    .nav {
        width: 160px;
    }

    .nav a {
        font-size: 12px;
        padding: 8px;
    }

    .hamburger {
        width: 25px;
        height: 18px;
    }

    .hamburger span {
        height: 2px;
        margin-bottom: 4px;
    }

    .container {
        margin: 15px;
        padding: 15px;
    }

    h1 {
        font-size: 1.8em;
    }

    .contact-block {
        padding: 10px;
    }

    .contact-list li {
        font-size: 0.9em;
    }

    input[type="email"],
    textarea {
        padding: 8px;
    }

    button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .footer h4 {
        font-size: 14px;
    }

    .footer__desc li a {
        font-size: 11px;
    }

    .footer__copy {
        font-size: 10px;
    }
}