
.more-for-you-section {
    background-color: #e9ecef;
    padding: 2rem 0;
}

.more-for-you-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: left;
}

.more-for-you-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    padding: .5rem;
}

.more-for-you-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    color: #28a745;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    border: 2px solid #4CAF50;
    flex-shrink: 0;
}

.svg-icon {
    width: 2.5rem;
    height: 2.5rem;
    fill: currentColor;
}

.more-for-you-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4CAF50;
    flex-grow: 1;
}

.more-for-you-btn {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #333;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.more-for-you-btn:hover {
    background-color: #FFA000;
    border-color: #FFA000;
    color: #333;
}

@media (max-width: 767.98px) {
    .more-for-you-heading {
        font-size: 1.8rem;
        text-align: center;
    }
    .svg-icon {
        width: 2rem;
        height: 2rem;
    }
    .icon-circle-wrapper {
        width: 3.5rem;
        height: 3.5rem;
    }
    .more-for-you-card {
        padding: 1rem;
    }
    .more-for-you-btn {
        width: 100%;
    }
}

.farm-split-cta-banner {
    background-image: linear-gradient(225deg, #66BB6A 0%, #33691E 50%, #FFB300 100%);
    padding: 40px 0;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.farm-split-cta-banner .container {
    max-width: 1200px;
}

.farm-split-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.farm-split-text {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.farm-split-form {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.farm-split-input {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    flex-grow: 1;
    height: calc(2.2rem + 1.6rem);
    min-height: calc(2.2rem + 1.6rem);
    min-width: 180px;
}

.farm-split-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.farm-split-input:focus {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    color: #fff;
}

.farm-split-btn {
    background-color: #FFB300;
    border-color: #FFB300;
    color: #333;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    height: calc(2.2rem + 1.6rem);
    min-height: calc(2.2rem + 1.6rem);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.farm-split-btn:hover {
    background-color: #FFA000;
    border-color: #FFA000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.farm-split-privacy-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 767.98px) {
    .farm-split-cta-banner {
        padding: 30px 0;
    }
    .farm-split-title {
        font-size: 1.8rem;
    }
    .farm-split-text {
        font-size: 0.95rem;
    }
    .col-md-7, .col-md-5 {
        width: 100%;
        max-width: 100%;
    }
    .farm-split-form {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    .farm-split-input,
    .farm-split-btn {
        width: 100%;
        max-width: 300px;
        min-width: unset;
    }
    .text-md-start {
        text-align: center !important;
    }
    .mb-4.mb-md-0 {
        margin-bottom: 1.5rem !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .farm-split-form {
        flex-direction: column;
    }
}