:root {
    --muqi-teqsti: #655449;
    --header: #69473c;
    --gia-teqsti: #c0b3ac;
    --kanis-feri: #fff6ed;
}

body {
    margin: 0;
    background-color: var(--kanis-feri);
    color: var(--muqi-teqsti);
    padding: 2em;
}

h1 {
    text-align: center;
    color: var(--header);
    padding: 2em 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em;
    max-width: 1200px;
    margin: auto;
}

.contact-form, .contact-info {
    flex: 1 1 400px;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.044);
    padding: 2em;
}

label {
    display: block;
    margin-bottom: .5em;
    font-weight: bold;
    color: var(--muqi-teqsti);
}

input, textarea {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1.2em;
    border: 1px solid var(--gia-teqsti);
    border-radius: 8px;
    font-size: 1em;
}

textarea {
    resize: vertical;
    height: 120px;
}

button {
    background-color: var(--header);
    color: white;
    padding: 0.9em 2em;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: var(--muqi-teqsti);
}

.contact-info p {
    margin-bottom: 1em;
    line-height: 1.6;
    font-size: 1em;
}

.contact-info strong {
    display: block;
    margin-bottom: 0.4em;
    color: var(--header);
}

@media (max-width: 768px) {
    .contact-container {
    flex-direction: column;
    }
}