body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8; /* Açık gri arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}
/* Radyo butonları için özel stil */
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #a0aec0; /* Tailwind gray-400 */
    background-color: white;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 8px;
}
input[type="radio"]:checked {
    border-color: #007c8b; /* Kumtel kurumsal rengi */
}
input[type="radio"]:checked::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #007c8b; /* Kumtel kurumsal rengi */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Honeypot field for bots - visually hidden but present in HTML */
.honeypot-field {
    position: absolute;
    left: -9999px; /* Move far off-screen */
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.social-media-list {
    list-style: none;
    padding: 2%;
    margin: 0;
}
.social-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 1.25rem;
    color: #007c8b;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
    position: relative;
    text-decoration: none;
}
.social-icon-box:hover, .social-icon-box:focus {
    background: #007c8b;
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(0,124,139,0.12);
    transform: translateY(-2px) scale(1.08);
    outline: none;
}
.social-icon-box .icon {
    pointer-events: none;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}