.iletisim-wrapper {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.header-section {
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.header-section h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.6);
}

.map-container iframe {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.contact-info-form {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-box, .contact-right {
    flex: 1;
    min-width: 300px;
}

.contact-info-box h3,
.contact-right h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
    text-decoration: none;
}

.contact-info-box {
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0; 
}

.contact-info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
    color: #333;
    font-weight: bold;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #333;
}

.contact-info-list li i {
    font-size: 2rem;
    margin-right: 0.8rem;
    color: #a2781b;
}

.contact-info-list li strong {
    margin-right: 0.5rem;
    font-weight: bold;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-right input,
.contact-right textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-right textarea {
    resize: vertical;
}

.contact-right button {
    background-color: #a2781b;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-right button:hover {
    background-color: #825d15;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}