.content{
    padding: 0rem 0rem 4rem;
}
     .solution-content {
        padding: 0 50px 0px 50px;
        border-radius: 24px;
        position: relative;
        overflow: hidden;
    }

    .solution-content::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: linear-gradient(135deg, #0e2486 0%, #2034ad 100%);
        border-radius: 50%;
        pointer-events: none;
    }

    .solution-content::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(35, 61, 99, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.solution-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #233D63 0%, #2034ad 100%);
    padding: 60px 50px;
    margin: 0 -50px 50px -50px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 10px 40px rgba(35, 61, 99, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 300px;
}

.solution-header-content {
    flex: 1;
    max-width: 55%;
}

.solution-header-image {
    flex: 0 0 40%;
    max-width: 500px;
}

.solution-header-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.solution-title {
    font-size: 2.6em;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solution-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 100%;
}

.section-title {
    font-size: 1.9em;
    font-weight: 700;
    color: #233D63;
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    border-radius: 20px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    display: none;
}

.feature-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
}
.feature-content{
padding: 28px;
}
.feature-title {
    font-weight: 700;
    color: #233D63;
    margin-bottom: 12px;
    font-size: 1.15em;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.feature-text {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95em;
    position: relative;
    z-index: 1;
    flex: 1;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.wide {
        grid-column: span 2;
    }
}

.target-list-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.target-list-right {
    flex: 0 0 45%;
    max-width: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.target-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.target-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-image.active {
    opacity: 1;
}

.target-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.target-item:hover,
.target-item.active {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-color: #0071b8;
    transform: translateX(8px);
}

.target-item.active {
    box-shadow: 0 4px 20px rgba(0, 113, 184, 0.15);
}

    .target-bullet {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #0071b8 0%, #233D63 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 0.85em;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .target-text {
        color: #475569;
        font-size: 1.05em;
        line-height: 1.6;
    }

    .benefits-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
        position: relative;
        z-index: 1;
    }

    .benefit-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 16px;
        padding: 32px 28px;
        color: #233D63;
        border: 1px solid rgba(226, 232, 240, 0.8);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .benefit-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(14, 36, 134, 0.04) 0%, transparent 70%);
        border-radius: 50%;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        background: #233D63;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        box-shadow: 0 8px 20px rgba(14, 36, 134, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .benefit-icon svg {
        width: 30px;
        height: 30px;
        fill: #ffffff;
    }

    .benefit-title {
        font-weight: 700;
        font-size: 1.15em;
        margin-bottom: 10px;
        color: #233D63;
        position: relative;
        z-index: 2;
    }

    .benefit-text {
        color: #64748b;
        line-height: 1.6;
        font-size: 0.95em;
        position: relative;
        z-index: 2;
    }

    .cta-section {
        background: #233D63;
        border-radius: 24px;
        padding: 64px 56px 10px;
        margin-top: 50px;
        text-align: center;
        position: relative;
        z-index: 1;
        overflow: hidden;

    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><line x1="0" y1="30" x2="60" y2="30" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><line x1="30" y1="0" x2="30" y2="60" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
        pointer-events: none;
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
        border-radius: 50%;
        pointer-events: none;
    }

    .cta-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.4;
        pointer-events: none;
        }
        50% {
            transform: translate(-20px, 40px) rotate(-3deg);
        }
        75% {
            transform: translate(40px, -20px) rotate(3deg);
        }
    }

    .cta-content {
        position: relative;
        z-index: 2;
    }

    .cta-icon-top {
        width: 60px;
        height: 60px;
        margin: 0 auto 24px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .cta-icon-top svg {
        width: 32px;
        height: 32px;
        fill: #ffffff;
    }

    .cta-text {
        font-size: 1.35em;
        color: #ffffff;
        line-height: 1.9;
        max-width: 720px;
        margin: 0 auto 16px;
        font-weight: 500;
        letter-spacing: 0.01em;
        position: relative;
        z-index: 2;
    }

    .cta-text:last-of-type {
        margin-bottom: 32px;
    }

    .cta-text-highlight {
        position: relative;
        display: inline-block;
        font-weight: 600;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
        padding: 2px 8px;
        border-radius: 4px;
    }

    .cta-arrow {
        width: 48px;
        height: 48px;
        margin: 24px auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
        animation: bounce 2s ease-in-out infinite;
    }

    .cta-arrow svg {
        width: 32px;
        height: 32px;
        fill: #ffffff;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        transition: all 0.3s ease;
    }

    .cta-arrow:hover svg {
        transform: scale(1.15);
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-12px);
        }
        60% {
            transform: translateY(-6px);
        }
    }
.target-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
    display: grid;
}
@media (max-width: 768px) {
    .solution-content {
        padding: 0 20px 30px 20px;
    }

    .solution-header {
        margin: 0 -20px 30px -20px;
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .solution-header-content {
        max-width: 100%;
    }

    .solution-header-image {
        flex: 0 0 auto;
        max-width: 280px;
        margin-top: 30px;
    }

    .solution-title {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefit-icon svg {
        width: 26px;
        height: 26px;
    }

    .cta-section {
        padding: 48px 24px 10px;
        margin-top: 40px;
    }

    .cta-icon-top {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
    }

    .cta-icon-top svg {
        width: 28px;
        height: 28px;
    }

    .cta-text {
        font-size: 1.15em;
        margin-bottom: 14px;
        line-height: 1.7;
    }

    .cta-text:last-of-type {
        margin-bottom: 28px;
    }

    .cta-arrow {
        width: 40px;
        height: 40px;
    }

    .cta-arrow svg {
        width: 28px;
        height: 28px;
    }

.features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-card.wide {
    grid-column: span 1;
}

.benefits-container {
    grid-template-columns: 1fr;
}
.target-list {
    grid-template-columns: 1fr;
}
.target-list-right {
    display: none;
}

.target-list-left {
    width: 100%;
}
}

@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.wide {
        grid-column: span 2;
    }
    
    .target-list-right {
        flex: 0 0 40%;
    }
}

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.target-item, .benefit-card {
    animation: fadeInUp 0.5s ease-out forwards;
}
.faq-section {
        margin-top: 60px;
        position: relative;
        z-index: 1;
    }

    .accordion {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .accordion__item {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 16px;
        border: 1px solid rgba(226, 232, 240, 0.8);
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(35, 61, 99, 0.08);
    }

    .accordion__item:hover {
        box-shadow: 0 4px 16px rgba(35, 61, 99, 0.12);
        transform: translateY(-2px);
    }

    .accordion__item_show {
        box-shadow: 0 6px 20px rgba(0, 113, 184, 0.15);
        border-color: #0071b8;
    }

    .accordion__title {
        padding: 22px 28px;
        font-weight: 700;
        font-size: 1.15em;
        color: #233D63;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        transition: all 0.3s ease;
    }

    .accordion__title:hover {
        background: rgba(0, 113, 184, 0.03);
    }

    .accordion__item_show .accordion__title {
        color: #0071b8;
        background: rgba(0, 113, 184, 0.05);
    }

    .accordion__title::after {
        content: '+';
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #233D63;
        font-weight: bold;
        font-size: 1.2em;
        transition: all 0.3s ease;
        flex-shrink: 0;
        margin-left: 16px;
    }

    .accordion__item_show .accordion__title::after {
        content: '-';
        background: linear-gradient(135deg, #0071b8 0%, #233D63 100%);
        color: white;
        transform: rotate(0deg);
    }

    .accordion__content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        padding: 0 28px;
        color: #64748b;
        line-height: 1.65;
        font-size: 0.98em;
    }

    .accordion__item_show .accordion__content {
        max-height: 500px;
        padding: 0 28px 24px;
    }

    .accordion__content p {
        margin: 12px 0;
    }

    .accordion__content p:first-child {
        margin-top: 8px;
    }

    @media (max-width: 768px) {
        .accordion__title {
            padding: 18px 20px;
            font-size: 1.05em;
        }
        
        .accordion__content {
            padding: 0 20px;
        }
        
        .accordion__item_show .accordion__content {
            padding: 0 20px 20px;
        }
        
        .faq-section {
            margin-top: 40px;
        }
    }
