/* Animate on scroll için başlangıç durumları */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transform: translateY(20px); /* Default animation */
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: #18ba9b;
    display: block;
    line-height: 1;
}

.feature-box {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .feature-box.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .feature-box h3 {
        margin-top: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25em;
    }

    .feature-box p {
        flex-grow: 1;
        margin-bottom: 20px;
        font-size: 0.95em;
        line-height: 1.6;
    }

.cta-section {
    background-color: #f7f7f7;
    padding: 40px 0px;
    text-align: center;
    margin-top: 30px;
    font-size: medium;
    margin-bottom:50px;

}

    .cta-section h2 {
        margin-bottom: 20px;
    }

.animate-on-scroll { /* Başlangıç stilleri ilgili sınıflarda tanımlı */
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -15px;
    margin-right: -15px;
}

    .features-row > [class*='col-'] {
        display: flex;
        padding-left: 15px;
        padding-right: 15px;
    }
