body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f8f9fa;
}

/* Header’ın altında düzgün konumlanması için boşluk */
main.container {
    max-width: 1100px;
    margin: 100px auto 60px; /* header için üstten boşluk eklendi */
    padding: 20px;
    text-align: center;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Form alanı */
.contact-form, .contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1 1 45%;
}

.contact-form h3, .contact-info h3 {
    color: #d84315;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #ff7043;
    outline: none;
}

/* Gönder butonu */
.btn-send {
    background: linear-gradient(135deg, #ff6f61, #d84315);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background: linear-gradient(135deg, #e64a19, #bf360c);
    transform: translateY(-2px);
}

/* Bilgi kısmı */
.contact-info p {
    margin: 10px 0;
    color: #555;
    line-height: 1.6;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    main.container {
        margin-top: 80px;
        padding: 15px;
    }
}
