.contact-page-container {
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.contact-form-wrapper {
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}
.contact-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}
.contact-header p {
    font-size: 16px;
    color: #666;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.contact-form .input-group {
    flex: 1;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}
.contact-form .submit-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Dosya Yükleme Alanı Stilleri */
.dosya-upload-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.dosya-upload-container:hover,
.dosya-upload-container.dragover {
    border-color: #007bff;
    background-color: #e9f5ff;
}

.dosya-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #888;
}
.dosya-prompt i {
    font-size: 24px;
}

.dosya-adi {
    font-weight: bold;
    color: #333;
}