body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #e7ecff 0%, #e9ffe9 100%);
    min-height: 100vh;
}

.button-container {
    background: #ffffff;
    border-radius: 20px;
    width: 92%;
    max-width: 1000px;
    margin: 60px auto 10px auto; /* Navbar için üst boşluk eklendi */
    padding: 60px 50px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    border: 2px solid #e0e0e0;
}

.button-container h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 0.8px;
}

.button-container p {
    font-size: 1.15rem;
    color: #444;
    font-weight: 400;
    text-align: justify;
}

.button-container p b {
    color: #0d6efd;
    font-weight: 700;
}

.button-container span {
    display: block;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #d90429;
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 10px;
    text-align: center;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.7s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .button-container {
        margin: 100px auto 30px auto;
        padding: 30px 20px;
        font-size: 1rem;
        width: 95%;
    }

    .button-container h3 {
        font-size: 1.4rem;
    }

    .button-container p {
        font-size: 1rem;
    }

    .button-container span {
        font-size: 1rem;
    }

    .info-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .button-container {
        margin: 90px auto 20px auto;
        padding: 25px 15px;
    }

    .button-container h3 {
        font-size: 1.2rem;
    }

    .info-icon {
        font-size: 1.8rem;
    }
}