.dropdown-button:hover .dropdown-arrow,
.dropdown-button:focus .dropdown-arrow {
    stroke: white !important;
}/* Form Grubu */
.form-group {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Dropdown Butonu */
.custom-dropdown {
    position: relative;
    width: 300px;
}

.dropdown-button {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid #293b84;
    font-size: 16px;
    background-color: #ffffff;
    color: #293b84;
    cursor: pointer;
    text-align: center;
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dropdown-button:hover,
.dropdown-button:focus {
    border-color: #44ac3b;
    outline: none;
    background-color: #44ac3b;
    color: white;
    box-shadow: 0 4px 8px rgba(68, 172, 59, 0.2);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.dropdown-button[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menü */
.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    scrollbar-width: thin;
}

.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 3px;
}

.dropdown-content.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 15px;
    cursor: pointer;
    color: #293b84;
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background-color: rgba(68, 172, 59, 0.1);
    color: #44ac3b;
    border-radius: 8px;
}

.dropdown-item.selected {
    background-color: rgba(68, 172, 59, 0.1);
    color: #44ac3b;
    font-weight: 500;
}

/* İkon stilleri */
.item-icon {
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    color: currentColor;
    vertical-align: middle;
}

.dropdown-button-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Butonu */
.hero-button {
    background: #44ac3b;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
    text-transform: capitalize;
    width: 300px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(68, 172, 59, 0.2);
}

.hero-button:hover {
    background: #35862E;
    color: white;
    box-shadow: 0 6px 12px rgba(53, 134, 46, 0.3);
    transform: translateY(-2px);
}

/* Küçük Cihazlar için (Alt Alta Geçiş) */
@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    .custom-dropdown {
        width: 100%;
    }
    .dropdown-button {
        text-align: center;
        justify-content: center;
    }
    .dropdown-button-text {
        flex: 1;
        text-align: center;
    }
    .hero-button {
        width: 100%;
        text-align: center;
    }
}