/* Genel stil tanımlarını koruyarak responsive ayarlar */
body {
    font-family: 'Bree Serif', serif;
    background-color: #f2f7f8;
}

.trend-container {
    max-width: 78.2rem;
    width: 100%;
    margin: 120px auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-sizing: border-box;
    height: auto;
}

.trend-slider {
    position: relative;
    background-color: #ddf3f0;
    color: #373737;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    overflow: hidden;
    font-family: 'Bree Serif', serif;
}

.trend-slider-text {
    transition: opacity 0.5s ease-in-out;
}

.trend-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
}

.trend-slider-btn:hover {
    background: rgba(0, 0, 0, 0.4);
}

.trend-slider-btn.trend-prev {
    left: 1rem;
}

.trend-slider-btn.trend-next {
    right: 1rem;
}

.trend-benefits {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trend-benefit-box {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
}

.trend-benefit-box img {
    width: 60px;
    margin-bottom: 10px;
}

.trend-prices h2 {
    color: #007782;
    margin-bottom: 20px;
    text-align: center;
}

.trend-prices table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.trend-prices th,
.trend-prices td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #ddd;
    font-family: "Inter", sans-serif;
    font-style: normal;
}

.trend-prices th {
    background: #e0f7f8;
    color: #007782;
}

.trend-how {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: none !important;
    opacity: 1 !important;
    display: block !important;
    animation: none !important;
    visibility: visible !important;
}

.trend-how h2 {
    color: #007782;
    margin-bottom: 10px;
}

.trend-how ol {
    padding-left: 1.5rem;
}

.trend-how li {
    margin-bottom: 0.8rem;
    font-style: normal;
    font-family: "Inter", sans-serif;
}

.trend-footer {
    text-align: center;
}

.trend-footer a {
    color: #007782;
    text-decoration: underline;
}

.trend-action {
    text-align: center;
    margin-top: 1.5rem;
}

.trend-btn {
    display: inline-block;
    background-color: #007782;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: normal;
    text-decoration: none;
    transition: background 0.3s;
}

.trend-btn:hover {
    background-color: #005f63;
    color: white;
}

.visibility-options2536 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.visibility-option2536 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.visibility-option2536:hover {
    background-color: #eef7f6;
    border-color: #007782;
}

.visibility-option2536 input[type="radio"] {
    transform: scale(1.3);
    accent-color: #007782;
}

.info2536 {
    display: flex;
    flex-direction: column;
}

.info2536 .price2536 {
    font-weight: normal;
    font-size: 1.1rem;
    color: #333;
}

.info2536 p {
    margin: 0.2rem 0 0;
    color: #666;
    font-size: 0.95rem;
}

.odm-card-body h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #007782;
    text-align: center;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
}

/* Mobil cihazlar için (max-width: 768px) */
@media only screen and (max-width: 768px) {
    .trend-container {
        margin: 60px auto;
        /* Üstten boşluğu azalt */
        padding: 1rem;
        /* Daha az padding */
        width: 90%;
        /* Tam genişlikten biraz daralt */
    }

    .trend-slider {
        padding: 1rem;
        font-size: 1.2rem;
        /* Küçült */
        margin-bottom: 1.5rem;
    }

    .trend-slider-btn {
        font-size: 1.5rem;
        /* Butonları küçült */
        padding: 0.3rem 0.8rem;
    }

    .trend-benefits {
        flex-direction: column;
        /* Dikey hizala */
        align-items: center;
    }

    .trend-benefit-box {
        min-width: 120px;
        /* Daha küçük kutular */
        margin-bottom: 1rem;
    }

    .trend-benefit-box img {
        width: 50px;
        /* Resimleri küçült */
    }

    .trend-prices th,
    .trend-prices td {
        padding: 0.8rem;
        /* Daha az padding */
        font-size: 0.9rem;
        /* Yazıyı küçült */
    }

    .trend-prices h2 {
        font-size: 1.3rem;
        /* Başlığı küçült */
        margin-bottom: 15px;
    }

    .trend-how {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .trend-how h2 {
        font-size: 1.3rem;
        /* Başlığı küçült */
    }

    .trend-how li {
        font-size: 0.85rem;
        /* Yazıyı küçült */
    }

    .trend-btn {
        padding: 10px 20px;
        /* Buton padding'ini azalt */
        font-size: 0.9rem;
    }

    .visibility-option2536 {
        padding: 1rem;
        flex-direction: column;
        /* Dikey hizala */
        align-items: flex-start;
    }

    .visibility-option2536 input[type="radio"] {
        transform: scale(1.1);
        /* Küçült */
        margin-bottom: 0.5rem;
        /* Altına boşluk ekle */
    }

    .info2536 .price2536 {
        font-size: 1rem;
        /* Küçült */
    }

    .info2536 p {
        font-size: 0.85rem;
        /* Küçült */
    }

    .odm-card-body h2 {
        font-size: 1.5rem;
        /* Başlığı küçült */
    }
}

/* Tablet cihazlar için (769px - 1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .trend-container {
        margin: 80px auto;
        /* Üstten boşluğu biraz azalt */
        padding: 1.5rem;
        width: 95%;
        /* Hafif daralt */
    }

    .trend-slider {
        padding: 1.5rem;
        font-size: 1.4rem;
        /* Hafif küçült */
        margin-bottom: 1.8rem;
    }

    .trend-slider-btn {
        font-size: 1.8rem;
        /* Hafif küçült */
        padding: 0.4rem 0.9rem;
    }

    .trend-benefit-box {
        min-width: 140px;
        /* Hafif küçült */
    }

    .trend-benefit-box img {
        width: 55px;
        /* Resimleri hafif küçült */
    }

    .trend-prices th,
    .trend-prices td {
        padding: 0.9rem;
        /* Hafif azalt */
        font-size: 0.95rem;
        /* Hafif küçült */
    }

    .trend-prices h2 {
        font-size: 1.5rem;
        /* Hafif küçült */
        margin-bottom: 18px;
    }

    .trend-how {
        padding: 1.2rem;
        margin-bottom: 1.8rem;
    }

    .trend-how h2 {
        font-size: 1.4rem;
        /* Hafif küçült */
    }

    .trend-how li {
        font-size: 0.9rem;
        /* Hafif küçült */
    }

    .visibility-option2536 {
        padding: 1.1rem;
    }

    .visibility-option2536 input[type="radio"] {
        transform: scale(1.2);
        /* Hafif küçült */
    }

    .info2536 .price2536 {
        font-size: 1.05rem;
        /* Hafif küçült */
    }

    .info2536 p {
        font-size: 0.90rem;
        /* Hafif küçült */
    }

    .odm-card-body h2 {
        font-size: 1.7rem;
        /* Hafif küçült */
    }
}

/* Daha büyük ekranlar için genel ayar (isteğe bağlı) */
@media only screen and (min-width: 1025px) {
    .trend-container {
        padding: 2.5rem;
    }

    .trend-slider {
        font-size: 1.8rem;
    }

    .trend-prices h2 {
        font-size: 1.8rem;
    }

    .odm-card-body h2 {
        font-size: 2rem;
    }
}