.ds-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    background-color: #030712;
    color: #ffffff;
}

.ds-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.ds-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ds-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}

.ds-title .accent-text {
    background: linear-gradient(90deg, #00d4ff, #007aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ds-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.ds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ds-grid {
        grid-template-columns: 1fr;
    }
    .ds-title {
        font-size: 32px;
    }
}

.ds-card {
    background-color: #091020;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.ds-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.15);
    transform: translateY(-4px);
}

.ds-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 2;
    padding-right: 20px;
}

.ds-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

.ds-card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.ds-card-arrow-wrapper {
    display: flex;
    align-items: center;
}

.ds-card-arrow {
    transition: transform 0.3s ease;
}

.ds-card:hover .ds-card-arrow {
    transform: translateX(6px);
}

.ds-card-image-box {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.ds-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.ds-card-img-svg {
    width: 130px;
    height: 130px;
    filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.2));
}
