/* Genel container */
.contact-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

/* Başlık */
.contact-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-title-line {
    width: 60px;
    height: 3px;
    background: #7a0000;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

/* Label */
form label {
    display: block;
    margin: 12px 0 6px;
    font-weight: 600;
    color: #444;
    font-size: 1.4rem;
    font-family: comic;
}

/* Input ve textarea */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.2s ease-in-out;
}

form input:focus,
form textarea:focus {
    border-color: #211233;
    outline: none;
}

/* Textarea yüksekliği */
form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Buton */
form button {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 20px;
    background: #7a0000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

form button:hover {
    background: #850000;
}
@media screen and (max-width: 600px) {
    .contact-container {
    margin: 20px 10px;
}
}