body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #111111;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    font-size: 0.9rem;
    background-color: #ffffff;
    color: #111111;
}

header i {
    margin-right: 5px;
    color: #c40000;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: #ffffff;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #111111;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #c40000;
}

/* Footer */
footer {
    font-size: 0.95rem;
    background-color: #111111;
    color: #f2f2f2;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 12%;
}

.contact-left,
.contact-right {
    flex: 1 1 48%;
}

.contact-left img {
    text-align: center;
    width: 100%;
    border-radius: 10px;
}

.contact-right {
    text-align: left;
}

.office-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.label {
    font-size: 16px;
    color: black;
    font-weight: bolder;
    margin-bottom: 5px;
}

.value {
    font-size: 16px;
    color: black;
}

.contact-link {
    font-size: 16px;
    color: black;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-link:hover,
.contact-link:focus {
    color: #e2c351;
    /* Renk değişmesin */
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-media a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-media a:hover img {
  transform: scale(1.2);
}

/* Responsive Düzenlemeler */
@media (max-width: 767.98px) {
    header .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .navbar-brand img {
        height: 40px;
    }

    footer .text-md-right {
        text-align: center !important;
        margin-top: 1rem;
    }

    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .contact-right {
        text-align: center;
        margin: 0 auto;
    }

    .contact-header h1 {
        font-size: 36px;
        text-align: center;
    }

    .contact-form-container {
        width: 90%;
        padding: 25px;
    }

    .contact-form-container h2 {
        font-size: 1.5rem;
    }
}

/* Genel İletişim Formu Stili */
.contact-form-section {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.contact-form-container {
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-form-container p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 1rem;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2e86c1;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.submit-btn {
    background-color: #000000;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a6b97;
}