/* solutions-section */

.solutions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e5f2ff 0%, white 100%);
    position: relative;
}

.solutions-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.solutions-section .hero-content {
    text-align: center;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-section .hero-content h2 {
    font-size: 35px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.solutions-section .hero-description {
    font-size: 18px;
    color: #184780;
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 400;
    text-align: start;
}

.solutions-section .hero-subtitle {
    font-size: 18px;
    color: #0d234b;
    font-weight: 500;
    opacity: 0.8;
    text-align: start;
}

.solutions-section .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.solutions-section .solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(13, 35, 75, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #e9ecf0;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.solutions-section .solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(13, 35, 75, 0.15);
}

.solutions-section .solution-card-background {
    width: 100%;
    height: 195px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solutions-section .solution-card:hover .solution-card-background {
    transform: scale(1.05);
}

.solutions-section .solution-card-content {
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
}

.solutions-section .solution-card-content-container {
    flex-grow: 1;
    padding-top: 8px;
}

.solutions-section .solution-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.solutions-section .solution-card-description {
    font-size: 16px;
    color: #184780;
    line-height: 1.6;
}

.solutions-section .solution-card-button {
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solutions-section .solution-card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.solutions-section .solution-card-button:hover::before {
    left: 100%;
}

.solutions-section .solution-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 35, 75, 0.3);
}

.solutions-section .solution-card-button:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }

    .solutions-section .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .solutions-section .solution-card {
        height: auto;
        min-height: 420px;
    }

    .solutions-section .hero-content {
        margin-bottom: 60px;
    }

    .solutions-section .hero-description {
        font-size: 1.1rem;
    }

    .solutions-section .solution-card-content {
        padding: 24px 20px;
    }

    .solutions-section .solution-card-content::before {
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .solutions-section .container {
        padding: 0 16px;
    }

    .solutions-section .solutions-grid {
        gap: 20px;
    }

    .solutions-section .solution-card {
        min-height: 400px;
    }

    .solutions-section .solution-card-background {
        height: 180px;
    }
}

/* Animation for cards appearing */
.solutions-section .solution-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.solutions-section .solution-card:nth-child(1) {
    animation-delay: 0.1s;
}

.solutions-section .solution-card:nth-child(2) {
    animation-delay: 0.2s;
}

.solutions-section .solution-card:nth-child(3) {
    animation-delay: 0.3s;
}

.solutions-section .solution-card:nth-child(4) {
    animation-delay: 0.4s;
}

.solutions-section .solution-card:nth-child(5) {
    animation-delay: 0.5s;
}

.solutions-section .solution-card:nth-child(6) {
    animation-delay: 0.6s;
}

.solutions-section .solution-card:nth-child(7) {
    animation-delay: 0.7s;
}

.solutions-section .solution-card:nth-child(8) {
    animation-delay: 0.8s;
}

.solutions-section .solution-card:nth-child(9) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* solutions-section */


/* solution-why-section */
.solution-why-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.solution-why-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.solution-why-section .intro-content {
    text-align: center;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.solution-why-section .intro-content h2 {
    font-size: 35px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.solution-why-section .intro-content p {
    font-size: 18px;
    color: #184780;
    margin-bottom: 16px;
    opacity: 0.9;
}

.solution-why-section .features-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
}

.solution-why-section .feature-section {
    position: relative;
}

.solution-why-section .feature-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.solution-why-section .feature-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #184780 0%, #0d234b 100%);
    border-radius: 2px;
}

.solution-why-section .feature-section p {
    font-size: 1rem;
    color: #184780;
    margin-bottom: 24px;
    line-height: 1.7;
    padding-left: 20px;
}

.solution-why-section .feature-list {
    list-style: none;
    padding-left: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 0;
}

.solution-why-section .feature-list li {
    margin-bottom: 0px;
    position: relative;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: #0d234b;
    line-height: 1.6;
    max-width: 100%;
    background-color: none;
    border-radius: 0px;
    box-shadow: none;
    border-left: none;
}

.solution-why-section .feature-list li::before {
    content: none;
}

.solution-why-section .feature-list li::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 8px;
    width: 8px;
    height: 1px;
    background: #e9ecf0;
    transform: translateY(-50%);
}

.solution-why-section .feature-list li strong {
    color: #0d234b;
    font-weight: 600;
}

.solution-why-section .feature-list li:last-child {
    margin-bottom: 0;
}

/* Hover effects */
.solution-why-section .feature-section {
    transition: all 0.3s ease;
    padding: 16px;
    border-radius: 8px;
    margin: -16px;
}

.solution-why-section .feature-section:hover h3 {
    color: #184780;
}

@media (max-width: 768px) {
    .solution-why-section {
        padding: 60px 0;
    }

    .solution-why-section .container {
        padding: 0 16px;
    }

    .solution-why-section .intro-content h2 {
        font-size: 2.25rem;
    }

    .solution-why-section .intro-content p {
        font-size: 1rem;
    }

    .solution-why-section .features-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solution-why-section .feature-section h3 {
        font-size: 1.375rem;
    }
}

@media (max-width: 480px) {
    .solution-why-section .intro-content h2 {
        font-size: 1.875rem;
    }

    .solution-why-section .features-container {
        gap: 24px;
    }
}

/* solution-why-section */

/* virtualization-section */
.virtualization-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e5f2ff 100%);
    position: relative;
    overflow: hidden;
}

.virtualization-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(24, 71, 128, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.virtualization-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.virtualization-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.virtualization-section .text-content {
    padding-right: 20px;
}

.virtualization-section .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
}

.virtualization-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #184780, #0d234b);
    border-radius: 2px;
}

.virtualization-section .intro-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.virtualization-section .highlight-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0d234b;
    margin-bottom: 16px;
    display: inline-block;
}

.virtualization-section .description-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.virtualization-section .image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.virtualization-section .image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 35, 75, 0.15);
    background: #ffffff;
    padding: 20px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.virtualization-section .image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.virtualization-section .placeholder-image {
    width: 600px;
    border-radius: 12px;
    border: 2px dashed #184780;
}

.virtualization-section .placeholder-image img{
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    padding: 10px;
}

.virtualization-section .decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.virtualization-section .decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(24, 71, 128, 0.08);
}

.virtualization-section .circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.virtualization-section .circle-2 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .virtualization-section {
        padding: 60px 0;
    }

    .virtualization-section .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .virtualization-section .text-content {
        padding-right: 0;
    }

    .virtualization-section .section-title {
        font-size: 2rem;
    }

    .virtualization-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .virtualization-section .image-wrapper {
        transform: none;
    }

    .virtualization-section .image-wrapper:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .virtualization-section .container {
        padding: 0 16px;
    }

    .virtualization-section .section-title {
        font-size: 1.8rem;
    }

    .virtualization-section .intro-text, .description-text {
        font-size: 1rem;
    }

    .virtualization-section .highlight-title {
        font-size: 1.2rem;
    }
}
/* virtualization-section */

/* virtualization-category-section */
.virtualization-category-section {
    background: linear-gradient(135deg, #ffffff 0%, #e5f2ff 100%);
    position: relative;
    overflow: hidden;
    padding: 50px 20px 0px;
}

.virtualization-category-section .container {
    max-width: 1500px;
    margin: 0 auto;
}

.virtualization-category-section .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.virtualization-category-section .main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #184780, #0d234b);
    border-radius: 2px;
}

.virtualization-category-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.virtualization-category-section .method-section {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.virtualization-category-section .section-title {
    font-size: 30px;
    font-weight: 600;
    color: #0d234b;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
}

.virtualization-category-section .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, #184780, #0d234b);
    border-radius: 3px;
}

.virtualization-category-section .section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.virtualization-category-section .subsection-title {
    font-size: 26px;
    font-weight: 600;
    color: #184780;
    margin: 0px 0 16px;
    padding: 12px 0px;
}

.virtualization-category-section .sub-subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d234b;
    margin: 24px 0 12px;
}

.virtualization-category-section .mini-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #184780;
    margin: 20px 0 12px;
    padding-left: 16px;
    border-left: 3px solid #e9ecf0;
}

.virtualization-category-section .content-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.virtualization-category-section .feature-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.virtualization-category-section .use-case-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
}

.virtualization-category-section .feature-list .feature {
    position: relative;
    padding: 12px 0 12px 40px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
    border-radius: 0px;
    transition: all 0.3s ease;
    max-width: 100%;
    background-color: transparent;
    border-left: none;
    box-shadow: none;
}

.virtualization-category-section .feature-list .feature::before {
    content: '▶';
    position: absolute;
    left: 16px;
    top: 12px;
    color: #184780;
    font-size: 0.8rem;
}

.virtualization-category-section .feature-list .feature strong {
    color: #0d234b;
    font-weight: 600;
}

.virtualization-category-section .platform-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.virtualization-category-section .platform-list li {
    background: #ffffff;
    padding: 20px;
    border: 1px solid #e9ecf0;
    box-shadow: 0 4px 12px rgba(13, 35, 75, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.virtualization-category-section .platform-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #184780, #0d234b);
}

.virtualization-category-section .platform-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 35, 75, 0.12);
}

.virtualization-category-section .platform-list li strong {
    color: #0d234b;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.virtualization-category-section .platform-list .feature button {
    margin-top: 20px;
    display: block;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    outline: none;
    background: linear-gradient(45deg, #0d234b, #0b7ab1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.virtualization-category-section .platform-list .feature button:hover {
    transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: linear-gradient(45deg, #0b7ab1, #0d234b);
}

.virtualization-category-section .image-placeholder {
    background: linear-gradient(135deg, #e9ecf0 0%, #e5f2ff 100%);
    border: 2px dashed #184780;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    font-size: 1.1rem;
    color: #184780;
    font-weight: 600;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.virtualization-category-section .image-placeholder::before {
    content: '📊';
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.virtualization-category-section .use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.virtualization-category-section .use-case-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e9ecf0;
    box-shadow: 0 4px 12px rgba(13, 35, 75, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.virtualization-category-section .use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #184780, #0d234b);
}

.virtualization-category-section .use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 35, 75, 0.12);
}

.virtualization-category-section .use-case-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0d234b;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .virtualization-category-section .container {
        padding: 60px 16px;
    }

    .virtualization-category-section .main-title {
        font-size: 2.2rem;
    }

    .virtualization-category-section .method-section {
        padding: 24px;
        margin-bottom: 30px;
    }

    .virtualization-category-section .section-title {
        font-size: 1.8rem;
        padding-left: 16px;
    }

    .virtualization-category-section .section-title::before {
        width: 4px;
        height: 30px;
    }

    .virtualization-category-section .subsection-title {
        font-size: 1.4rem;
        padding: 10px 16px;
    }

    .virtualization-category-section .feature-list li {
        padding: 10px 0 10px 35px;
    }

    .virtualization-category-section .feature-list li::before {
        left: 12px;
    }

    .virtualization-category-section .platform-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .virtualization-category-section .main-title {
        font-size: 1.9rem;
    }

    .virtualization-category-section .subtitle {
        font-size: 1.1rem;
    }

    .virtualization-category-section .section-title {
        font-size: 1.6rem;
    }

    .virtualization-category-section .method-section {
        padding: 20px;
    }
}

/* virtualization-category-section */

/* virtualization-benefits-section */
.virtualization-benefits-section {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, #ffffff 0%, rgba(229, 242, 255, 0.3) 100%),
        radial-gradient(circle at 10% 20%, rgba(24, 71, 128, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(13, 35, 75, 0.02) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.virtualization-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24, 71, 128, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.virtualization-benefits-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 35, 75, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.virtualization-benefits-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.virtualization-benefits-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.virtualization-benefits-section .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 24px;
    position: relative;
    line-height: 1.2;
}

.virtualization-benefits-section .main-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #184780, #0d234b);
    border-radius: 2px;
}

.virtualization-benefits-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.virtualization-benefits-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.virtualization-benefits-section .benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(13, 35, 75, 0.08);
    border: 1px solid #e9ecf0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.virtualization-benefits-section .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #184780, #0d234b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.virtualization-benefits-section .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 35, 75, 0.15);
}

.virtualization-benefits-section .benefit-card:hover::before {
    transform: scaleX(1);
}

.virtualization-benefits-section .benefit-card:nth-child(1) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(229, 242, 255, 0.1) 100%);
}

.virtualization-benefits-section .benefit-card:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(233, 236, 240, 0.1) 100%);
}

.virtualization-benefits-section .benefit-card:nth-child(3) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(229, 242, 255, 0.15) 100%);
}

.virtualization-benefits-section .benefit-card:nth-child(4) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(233, 236, 240, 0.15) 100%);
}

.virtualization-benefits-section .benefit-card:nth-child(5) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(229, 242, 255, 0.2) 100%);
}

.virtualization-benefits-section .benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #184780, #0d234b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(24, 71, 128, 0.3);
    transition: all 0.4s ease;
}

.virtualization-benefits-section .benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(24, 71, 128, 0.4);
}

.virtualization-benefits-section .benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d234b;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.virtualization-benefits-section .benefit-card:hover .benefit-title {
    color: #184780;
}

.virtualization-benefits-section .benefit-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.virtualization-benefits-section .benefit-card:hover .benefit-description {
    color: #555;
}

.virtualization-benefits-section .highlight-accent {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #184780, transparent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.4s ease;
}

.virtualization-benefits-section .benefit-card:hover .highlight-accent {
    transform: translateX(-50%) scaleX(1);
}

.virtualization-benefits-section .decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.virtualization-benefits-section .floating-shape {
    position: absolute;
    opacity: 0.03;
    animation: float 20s ease-in-out infinite;
}

.virtualization-benefits-section .shape-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: #184780;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.virtualization-benefits-section .shape-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: #0d234b;
    border-radius: 50%;
    animation-delay: 5s;
}

.virtualization-benefits-section .shape-3 {
    bottom: 30%;
    left: 20%;
    width: 50px;
    height: 50px;
    background: #184780;
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-20px) rotate(5deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(-3deg); 
    }
    75% { 
        transform: translateY(-15px) rotate(2deg); 
    }
}

@media (max-width: 768px) {
    .virtualization-benefits-section {
        padding: 60px 0;
    }

    .virtualization-benefits-section .main-title {
        font-size: 2.2rem;
    }

    .virtualization-benefits-section .section-subtitle {
        font-size: 1.1rem;
    }

    .virtualization-benefits-section .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 30px;
    }

    .virtualization-benefits-section .benefit-card {
        padding: 28px 24px;
    }

    .virtualization-benefits-section .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .virtualization-benefits-section .benefit-title {
        font-size: 1.3rem;
    }

    .virtualization-benefits-section .benefit-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .virtualization-benefits-section .container {
        padding: 0 16px;
    }

    .virtualization-benefits-section .main-title {
        font-size: 1.9rem;
    }

    .virtualization-benefits-section .section-subtitle {
        font-size: 1rem;
    }

    .virtualization-benefits-section .benefit-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .virtualization-benefits-section .benefit-title {
        font-size: 1.2rem;
    }
}
/* virtualization-benefits-section */

/* vmware-section */
.vmware-container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Hero Section */
    .vmware-hero-section {
        background: #e9ecf0;
        color: white;
        padding: 50px 0;
        position: relative;
        overflow: hidden;
    }

    .vmware-hero-section .vmware-hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .vmware-hero-section .vmware-hero-text h2 {
        font-size: 35px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .vmware-hero-section .vmware-hero-text p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        opacity: 0.9;
        line-height: 1.7;
    }

    .vmware-hero-section .vmware-hero-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    }

    /* Content Section */
    .vmware-content-section {
        padding: 50px 0;
        background: #ffffff;
    }

    .vmware-section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .vmware-section-header h2 {
        font-size: 35px;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 20px;
    }

    .vmware-target-audience-section .vmware-section-header h2 {
        color: #ffffff;
    }

    .vmware-section-subtitle {
        font-size: 1.2rem;
        color: #c7c7c7;
        max-width: 600px;
        margin: 0 auto;
    }

    .vmware-management-section .vmware-section-subtitle,
    .vmware-content-section .vmware-section-subtitle{
        color: #666;
    }

    .vmware-content-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 40px;
    }

    .vmware-content-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(13, 35, 75, 0.1);
        border: 1px solid #e9ecf0;
        transition: all 0.3s ease;
    }

    .vmware-content-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(13, 35, 75, 0.15);
    }

    .vmware-card-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .vmware-card-icon i {
        font-size: 2rem;
        color: white;
    }

    .vmware-content-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #0d234b;
        margin-bottom: 20px;
    }

    .vmware-feature-list h4 {
        color: #184780;
        font-weight: 600;
        margin: 30px 0 20px 0;
    }

    .vmware-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding: 15px;
        background: #e5f2ff;
        border-radius: 12px;
    }

    .vmware-feature-item i {
        color: #184780;
        font-size: 1.2rem;
        margin-top: 3px;
        min-width: 20px;
    }

    .vmware-analogy-box {
        background: #e9ecf0;
        border-radius: 15px;
        padding: 25px;
        margin: 25px 0;
    }

    .vmware-analogy-box h4 {
        color: #0d234b;
        margin-bottom: 15px;
    }

    .vmware-analogy-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 15px 0;
        font-weight: 500;
    }

    .vmware-analogy-item i {
        color: #184780;
        font-size: 1.3rem;
    }

    .vmware-highlight-text {
        background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
        padding: 20px;
        border-radius: 12px;
        border-left: 4px solid #184780;
        font-weight: 500;
        margin: 20px 0;
    }

    /* Target Audience Section */
    .vmware-target-audience-section {
        background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
        padding: 50px 0;
    }

    .vmware-audience-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .vmware-audience-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(13, 35, 75, 0.1);
        transition: all 0.3s ease;
        border: 1px solid rgba(229, 242, 255, 0.5);
    }

    .vmware-audience-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(13, 35, 75, 0.15);
    }

    .vmware-audience-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #e5f2ff 0%, #184780 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }

    .vmware-audience-icon i {
        font-size: 1.8rem;
        color: white;
    }

    .vmware-audience-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #0d234b;
        margin-bottom: 15px;
    }

    .vmware-audience-card p {
        color: #666;
        line-height: 1.6;
    }

    /* Installation Section */
    .vmware-installation-section {
        padding: 50px 0;
        background: white;
    }

    .vmware-installation-content {
        display: grid;
        grid-template-columns: 1fr 500px;
        gap: 60px;
        align-items: center;
    }

    .vmware-installation-text h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 25px;
    }

    .vmware-steps-list {
        margin: 40px 0;
    }

    .vmware-step-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        align-items: flex-start;
    }

    .vmware-step-number {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        flex-shrink: 0;
    }

    .vmware-step-content {
        padding-top: 8px;
        line-height: 1.6;
    }

    .advantage-box {
        background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
        border-radius: 15px;
        padding: 25px;
        display: flex;
        gap: 15px;
        align-items: flex-start;
        margin-top: 40px;
        border: 1px solid rgba(24, 71, 128, 0.2);
    }

    .advantage-icon {
        font-size: 1.5rem;
        margin-top: 2px;
    }

    .advantage-content {
        line-height: 1.6;
    }

    .vmware-installation-image img {
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    /* Management Section */
    .vmware-management-section {
        padding: 50px 0;
        background: #e9ecf0;
    }

    .vmware-management-options {
        display: grid;
        gap: 40px;
        margin-bottom: 80px;
    }

    .vmware-management-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(13, 35, 75, 0.1);
    }

    .vmware-management-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .vmware-management-header i {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    .vmware-management-header h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #0d234b;
    }

    .vmware-use-cases h4 {
        color: #184780;
        font-weight: 600;
        margin: 25px 0 15px 0;
    }

    .vmware-custom-list {
        list-style: none;
        padding-left: 0;
    }

    .vmware-custom-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .vmware-custom-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0;
        color: #184780;
        font-weight: bold;
        width: 20px;
    }

    .vmware-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .vmware-feature-card {
        background: #e5f2ff;
        border-radius: 15px;
        padding: 25px;
        text-align: center;
        border: 1px solid rgba(24, 71, 128, 0.2);
    }

    .vmware-feature-card i {
        font-size: 2rem;
        color: #184780;
        margin-bottom: 15px;
    }

    .vmware-feature-card h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #0d234b;
        margin-bottom: 10px;
    }

    /* Comparison Section */
    .vmware-comparison-section {
        margin-top: 60px;
    }

    .vmware-comparison-section h3 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #0d234b;
        margin-bottom: 30px;
        text-align: center;
    }

    .vmware-comparison-table {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(13, 35, 75, 0.1);
    }

    .vmware-table-header {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
        color: white;
    }

    .vmware-table-header .vmware-table-cell {
        padding: 20px;
        font-weight: 600;
        text-align: center;
    }

    .vmware-table-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        border-bottom: 1px solid #e9ecf0;
    }

    .vmware-table-row:last-child {
        border-bottom: none;
    }

    .vmware-table-cell {
        padding: 20px;
        border-right: 1px solid #e9ecf0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.5;
    }

    .vmware-table-cell:last-child {
        border-right: none;
    }

    .vmware-table-row:nth-child(even) {
        background: rgba(233, 236, 240, 0.3);
    }

    .vmware-table-note {
        margin-top: 25px;
        padding: 20px;
        background: #e5f2ff;
        border-radius: 12px;
        border-left: 4px solid #184780;
        font-style: italic;
    }

    /* Perfect Match Section */
    .vmware-perfect-match-section {
        padding: 50px 0;
        background: white;
    }

    .vmware-perfect-match-content {
        display: grid;
        grid-template-columns: 1fr 500px;
        gap: 60px;
        align-items: center;
    }

    .vmware-perfect-match-text h2 {
        font-size: 35px;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 40px;
    }

    .vmware-benefits-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .vmware-benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
        background: #e9ecf0;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .vmware-benefit-item:hover {
        transform: translateX(5px);
        background: #e5f2ff;
    }

    .vmware-benefit-item i {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .vmware-perfect-match-image img {
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(13, 35, 75, 0.2);
    }

    /* FAQ Section */
    .vmware-faq-section {
        padding: 50px 0;
        background: #e9ecf0;
    }

    .vmware-faq-list {
        margin: 0 auto;
    }

    .vmware-faq-item {
        background: white;
        border-radius: 15px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(13, 35, 75, 0.1);
        overflow: hidden;
    }

    .vmware-faq-question {
        padding: 20px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .vmware-faq-question:hover {
        background: rgba(229, 242, 255, 0.5);
    }

    .vmware-faq-question h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #0d234b;
        margin: 0;
    }

    .vmware-faq-question i {
        color: #184780;
        transition: transform 0.3s ease;
    }

    .vmware-faq-item.active .vmware-faq-question i {
        transform: rotate(180deg);
    }

    .vmware-faq-answer {
        padding: 0 30px 30px;
        display: none;
        animation: fadeIn 0.3s ease;
    }

    .vmware-faq-item.active .vmware-faq-answer {
        display: block;
    }

    .vmware-faq-answer p {
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .vmware-comparison-table-faq {
        background: #f8f9fa;
        border-radius: 10px;
        overflow: hidden;
        margin: 20px 0;
    }

    .vmware-comparison-table-faq .vmware-table-header {
        background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
        font-size: 0.9rem;
    }

    .vmware-comparison-table-faq .vmware-table-cell {
        padding: 15px;
        font-size: 0.9rem;
    }

    .negative {
        color: #dc3545;
    }

    .positive {
        color: #28a745;
    }

    .warning {
        color: #ffc107;
    }

    /* CTA Section */
    .vmware-cta-section {
        padding: 50px 0;
        background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

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

    .vmware-cta-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: white;
    }

    .vmware-cta-content p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        color: #dbdbdb;
    }

    .vmware-cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .vmware-cta-button {
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
        min-width: 250px;
    }

    .vmware-cta-button.vmware-primary {
        background: white;
        color: #0d234b;
    }

    .vmware-cta-button.vmware-primary:hover {
        background: #e5f2ff;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .vmware-cta-button.vmware-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .vmware-cta-button.vmware-secondary:hover {
        background: white;
        color: #0d234b;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .vmware-cta-subtitle {
        font-size: 1rem;
        opacity: 0.8;
        max-width: 600px;
        margin: 0 auto;
        color: #dddddd;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {

        .vmware-hero-content,
        .vmware-installation-content,
        .vmware-perfect-match-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .vmware-hero-text h1 {
            font-size: 2rem;
        }

        .vmware-section-header h2 {
            font-size: 2rem;
        }

        .vmware-content-grid {
            grid-template-columns: 1fr;
        }

        .vmware-audience-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .vmware-table-header,
        .vmware-table-row {
            grid-template-columns: 1fr;
        }

        .vmware-table-cell {
            border-right: none;
            border-bottom: 1px solid #e9ecf0;
            text-align: left;
        }

        .vmware-cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .vmware-cta-button {
            min-width: 280px;
        }

        .vmware-features-grid {
            grid-template-columns: 1fr;
        }

        .vmware-management-header {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
    }

    @media (max-width: 480px) {
        .vmware-container {
            padding: 0 15px;
        }

        .vmware-hero-section,
        .vmware-content-section,
        .vmware-target-audience-section,
        .vmware-installation-section,
        .vmware-management-section,
        .vmware-perfect-match-section,
        .vmware-faq-section,
        .vmware-cta-section {
            padding: 60px 0;
        }

        .vmware-hero-text h1 {
            font-size: 1.8rem;
        }

        .vmware-content-card,
        .vmware-audience-card,
        .vmware-management-card {
            padding: 25px;
        }
    }
/* vmware-section */

/* solution-hyperv-section */
.solution-hyperv-section .hyperv-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.solution-hyperv-section .hyperv-hero-section {
    background: #fff;
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.solution-hyperv-section .hyperv-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.solution-hyperv-section .hyperv-hero-text h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-hyperv-section .hyperv-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.solution-hyperv-section .hyperv-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

/* Use Cases Section */
.solution-hyperv-section .hyperv-use-cases-section {
    padding: 50px 0;
    background: #e9ecf0;
}

.solution-hyperv-section .hyperv-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.solution-hyperv-section .hyperv-section-header h2 {
    font-size: 33px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 20px;
}

.solution-hyperv-section .hyperv-benefits-section .hyperv-section-header h2 {
    font-size: 33px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e5f2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-hyperv-section .hyperv-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.solution-hyperv-section .hyperv-benefits-section .hyperv-section-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.solution-hyperv-section .hyperv-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.solution-hyperv-section .hyperv-use-case-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(13, 35, 75, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 242, 255, 0.5);
}

.solution-hyperv-section .hyperv-use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 35, 75, 0.15);
}

.solution-hyperv-section .hyperv-use-case-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e5f2ff 0%, #184780 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.solution-hyperv-section .hyperv-use-case-icon i {
    font-size: 1.8rem;
    color: white;
}

.solution-hyperv-section .hyperv-use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d234b;
    margin-bottom: 15px;
}

.solution-hyperv-section .hyperv-use-case-card p {
    color: #666;
    line-height: 1.6;
}

/* Content Section */
.solution-hyperv-section .hyperv-content-section {
    padding: 50px 0;
    background: white;
}

.solution-hyperv-section .hyperv-content-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.solution-hyperv-section .hyperv-content-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 30px;
}

.solution-hyperv-section .hyperv-content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.solution-hyperv-section .hyperv-analogy-box {
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(24, 71, 128, 0.2);
}

.solution-hyperv-section .hyperv-analogy-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.solution-hyperv-section .hyperv-analogy-content i {
    font-size: 2rem;
    color: #184780;
    margin-top: 5px;
    flex-shrink: 0;
}

.solution-hyperv-section .hyperv-content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(13, 35, 75, 0.2);
}

/* Benefits Section */
.solution-hyperv-section .hyperv-benefits-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
}

.solution-hyperv-section .hyperv-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.solution-hyperv-section .hyperv-benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(13, 35, 75, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 242, 255, 0.5);
}

.solution-hyperv-section .hyperv-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(13, 35, 75, 0.15);
}

.solution-hyperv-section .hyperv-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.solution-hyperv-section .hyperv-benefit-icon i {
    font-size: 2rem;
    color: white;
}

.solution-hyperv-section .hyperv-benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0d234b;
    margin-bottom: 15px;
}

.solution-hyperv-section .hyperv-benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Installation Section */
.solution-hyperv-section .hyperv-installation-section {
    padding: 50px 0;
    background: white;
}

.solution-hyperv-section .hyperv-installation-content {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 60px;
    align-items: center;
}

.solution-hyperv-section .hyperv-installation-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 25px;
}

.solution-hyperv-section .hyperv-installation-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.solution-hyperv-section .hyperv-steps-list {
    margin: 40px 0;
}

.solution-hyperv-section .hyperv-step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.solution-hyperv-section .hyperv-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.solution-hyperv-section .hyperv-step-content {
    padding-top: 8px;
    line-height: 1.6;
}

.solution-hyperv-section .hyperv-step-content code {
    background: #e9ecf0;
    padding: 3px 8px;
    border-radius: 5px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    color: #0d234b;
    border: 1px solid rgba(24, 71, 128, 0.2);
}

.solution-hyperv-section .hyperv-installation-image img {
    width: 100%;
    object-fit: cover;
}

/* Management Section */
.solution-hyperv-section .hyperv-management-section {
    padding: 50px 0;
    background: #e9ecf0;
}

.solution-hyperv-section .hyperv-management-tools {
    display: grid;
    gap: 30px;
}

.solution-hyperv-section .hyperv-tool-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(13, 35, 75, 0.1);
    border: 1px solid rgba(229, 242, 255, 0.5);
}

.solution-hyperv-section .hyperv-tool-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.solution-hyperv-section .hyperv-tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-hyperv-section .hyperv-tool-icon i {
    font-size: 2rem;
    color: white;
}

.solution-hyperv-section .hyperv-tool-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0d234b;
    margin-bottom: 8px;
}

.solution-hyperv-section .hyperv-tool-tag {
    background: #e5f2ff;
    color: #184780;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.solution-hyperv-section .hyperv-tool-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.solution-hyperv-section .hyperv-tool-features h4 {
    color: #184780;
    font-weight: 600;
    margin-bottom: 20px;
}

.solution-hyperv-section .hyperv-features-list {
    display: grid;
    gap: 15px;
}

.solution-hyperv-section .hyperv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.solution-hyperv-section .hyperv-feature-item i {
    color: #184780;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 16px;
}

.solution-hyperv-section .hyperv-ideal-for {
    background: #e5f2ff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #184780;
    margin-top: 25px;
    font-style: italic;
}

.solution-hyperv-section .hyperv-analogy-highlight {
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(24, 71, 128, 0.2);
}

.solution-hyperv-section .hyperv-analogy-highlight i {
    font-size: 1.8rem;
    color: #184780;
    margin-top: 3px;
    flex-shrink: 0;
}

.solution-hyperv-section .hyperv-analogy-highlight p {
    margin: 0;
    font-weight: 500;
    color: #0d234b;
}

/* Comparison Section */
.solution-hyperv-section .hyperv-comparison-section {
    padding: 50px 0;
    background: white;
}

.solution-hyperv-section .hyperv-comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(13, 35, 75, 0.1);
    border: 1px solid #e9ecf0;
}

.solution-hyperv-section .hyperv-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
    color: white;
}

.solution-hyperv-section .hyperv-table-header .hyperv-table-cell {
    padding: 25px 20px;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

.solution-hyperv-section .hyperv-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecf0;
}

.solution-hyperv-section .hyperv-table-row:last-child {
    border-bottom: none;
}

.solution-hyperv-section .hyperv-table-cell {
    padding: 20px;
    border-right: 1px solid #e9ecf0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
}

.solution-hyperv-section .hyperv-table-cell:last-child {
    border-right: none;
}

.solution-hyperv-section .hyperv-table-row:nth-child(even) {
    background: rgba(233, 236, 240, 0.3);
}

/* FAQ Section */
.solution-hyperv-section .hyperv-faq-section {
    padding: 50px 0;
    background: #e9ecf0;
}

.solution-hyperv-section .hyperv-faq-list {
    margin: 0 auto;
}

.solution-hyperv-section .hyperv-faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(13, 35, 75, 0.1);
    overflow: hidden;
    border: 1px solid rgba(229, 242, 255, 0.5);
}

.solution-hyperv-section .hyperv-faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solution-hyperv-section .hyperv-faq-question:hover {
    background: rgba(229, 242, 255, 0.5);
}

.solution-hyperv-section .hyperv-faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0d234b;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.solution-hyperv-section .hyperv-faq-question i {
    color: #184780;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.solution-hyperv-section .hyperv-faq-item.active .hyperv-faq-question i {
    transform: rotate(180deg);
}

.solution-hyperv-section .hyperv-faq-answer {
    padding: 0 30px 30px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.solution-hyperv-section .hyperv-faq-item.active .hyperv-faq-answer {
    display: block;
}

.solution-hyperv-section .hyperv-faq-answer p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.solution-hyperv-section .faq-highlight {
    background: #e5f2ff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #184780;
}

.solution-hyperv-section .faq-highlight.warning {
    background: #fff8dc;
    border-left-color: #ffc107;
}

.solution-hyperv-section .hyperv-comparison-table-detailed {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    margin: 25px 0;
    border: 1px solid #e9ecf0;
}

.solution-hyperv-section .hyperv-comparison-table-detailed .hyperv-table-header {
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
    font-size: 1rem;
}

.solution-hyperv-section .hyperv-comparison-table-detailed .hyperv-table-cell {
    padding: 18px 15px;
    font-size: 0.95rem;
}

.solution-hyperv-section .positive {
    color: #28a745;
    font-weight: 500;
}

.solution-hyperv-section .negative {
    color: #dc3545;
    font-weight: 500;
}

/* CTA Section */
.solution-hyperv-section .hyperv-cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-hyperv-section .hyperv-cta-content {
    position: relative;
    z-index: 1;
}

.solution-hyperv-section .hyperv-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e5f2ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-hyperv-section .hyperv-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: white;
}

.solution-hyperv-section .hyperv-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.solution-hyperv-section .hyperv-cta-button {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 280px;
}

.solution-hyperv-section .hyperv-cta-button.hyperv-primary {
    background: white;
    color: #0d234b;
}

.solution-hyperv-section .hyperv-cta-button.hyperv-primary:hover {
    background: #e5f2ff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.solution-hyperv-section .hyperv-cta-button.hyperv-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.solution-hyperv-section .hyperv-cta-button.hyperv-secondary:hover {
    background: white;
    color: #0d234b;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {

    .solution-hyperv-section .hyperv-hero-content,
    .solution-hyperv-section .hyperv-content-layout,
    .solution-hyperv-section .hyperv-installation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .solution-hyperv-section .hyperv-tool-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .solution-hyperv-section .hyperv-table-header,
    .solution-hyperv-section .hyperv-table-row {
        grid-template-columns: 1fr;
    }

    .solution-hyperv-section .hyperv-table-cell {
        border-right: none;
        border-bottom: 1px solid #e9ecf0;
        text-align: left;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .solution-hyperv-section .hyperv-hero-text h1 {
        font-size: 2.2rem;
    }

    .solution-hyperv-section .hyperv-section-header h2 {
        font-size: 2rem;
    }

    .solution-hyperv-section .hyperv-content-text h2,
    .solution-hyperv-section .hyperv-installation-text h2 {
        font-size: 1.8rem;
    }

    .solution-hyperv-section .hyperv-use-cases-grid,
    .solution-hyperv-section .hyperv-benefits-grid {
        grid-template-columns: 1fr;
    }

    .solution-hyperv-section .hyperv-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .solution-hyperv-section .hyperv-analogy-content,
    .solution-hyperv-section .hyperv-analogy-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .solution-hyperv-section .hyperv-comparison-table-detailed .hyperv-table-header,
    .solution-hyperv-section .hyperv-comparison-table-detailed .hyperv-table-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .solution-hyperv-section .container {
        padding: 0 15px;
    }

    .solution-hyperv-section .hyperv-hero-section,
    .solution-hyperv-section .hyperv-use-cases-section,
    .solution-hyperv-section .hyperv-content-section,
    .solution-hyperv-section .hyperv-benefits-section,
    .solution-hyperv-section .hyperv-installation-section,
    .solution-hyperv-section .hyperv-management-section,
    .solution-hyperv-section .hyperv-comparison-section,
    .solution-hyperv-section .hyperv-faq-section,
    .solution-hyperv-section .hyperv-cta-section {
        padding: 40px 0;
    }

    .solution-hyperv-section .hyperv-hero-text h1 {
        font-size: 1.8rem;
    }

    .solution-hyperv-section .hyperv-use-case-card,
    .solution-hyperv-section .hyperv-benefit-card,
    .solution-hyperv-section .hyperv-tool-card {
        padding: 25px;
    }

    .solution-hyperv-section .hyperv-faq-question {
        padding: 20px;
    }

    .solution-hyperv-section .hyperv-faq-answer {
        padding: 0 20px 20px;
    }

    .solution-hyperv-section .hyperv-cta-content h2 {
        font-size: 2rem;
    }
}
/* solution-hyperv-section */

/* high-performance-hosting-section */
.high-performance-hosting-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PROBLEM SECTION ===== */
.high-performance-hosting-section .problem-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.high-performance-hosting-section .problem-section h2 {
    font-size: 35px;
    margin-bottom: 10px;
    color: #0d234b;
    font-weight: 700;
}

.high-performance-hosting-section .problem-section>.container>p {
    font-size: 1.1rem;
    color: #184780;
    margin-bottom: 50px;
    line-height: 1.8;
}

.high-performance-hosting-section .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.high-performance-hosting-section .problem-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(13, 35, 75, 0.1);
}

.high-performance-hosting-section .problem-image img {
    width: 100%;
    height: auto;
    display: block;
}

.high-performance-hosting-section .problem-card {
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #184780;
}

.high-performance-hosting-section .problem-card ul {
    list-style: none;
}

.high-performance-hosting-section .problem-card li {
    padding: 15px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(24, 71, 128, 0.2);
}

.high-performance-hosting-section .problem-card li:last-child {
    border-bottom: none;
}

.high-performance-hosting-section .problem-card strong {
    color: #0d234b;
    display: block;
    margin-bottom: 5px;
}

/* ===== SOLUTION SECTION ===== */
.high-performance-hosting-section .solution-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.high-performance-hosting-section .solution-section h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #0d234b;
    text-align: center;
    font-weight: 700;
}

.high-performance-hosting-section .solution-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #184780;
    line-height: 1.8;
}

.high-performance-hosting-section .pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.high-performance-hosting-section .pillar-card {
    background: #ffffff;
    border: 2px solid #e5f2ff;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.high-performance-hosting-section .pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d234b, #184780);
}

.high-performance-hosting-section .pillar-card:hover {
    border-color: #184780;
    box-shadow: 0 15px 40px rgba(13, 35, 75, 0.15);
    transform: translateY(-5px);
}

.high-performance-hosting-section .pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.high-performance-hosting-section .pillar-card h3 {
    font-size: 1.4rem;
    color: #0d234b;
    margin-bottom: 15px;
    font-weight: 600;
}

.high-performance-hosting-section .pillar-card p {
    color: #184780;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.high-performance-hosting-section .pillar-card ul {
    list-style: none;
}

.high-performance-hosting-section .pillar-card li {
    padding: 10px 0;
    color: #0d234b;
    font-size: 0.9rem;
    padding-left: 25px;
    position: relative;
}

.high-performance-hosting-section .pillar-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #184780;
    font-weight: bold;
}

/* ===== WHY CHOOSE US SECTION ===== */
.high-performance-hosting-section .why-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #e5f2ff 0%, rgba(233, 236, 240, 0.5) 100%);
}

.high-performance-hosting-section .why-section h2 {
    font-size: 35px;
    margin-bottom: 50px;
    color: #0d234b;
    font-weight: 700;
}

.high-performance-hosting-section .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.high-performance-hosting-section .why-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(13, 35, 75, 0.08);
    transition: all 0.3s ease;
}

.high-performance-hosting-section .why-item:hover {
    box-shadow: 0 15px 40px rgba(13, 35, 75, 0.15);
    transform: translateY(-5px);
}

.high-performance-hosting-section .why-item strong {
    color: #184780;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.high-performance-hosting-section .why-item p {
    color: #0d234b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== USE CASES SECTION ===== */
.high-performance-hosting-section .use-cases-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.high-performance-hosting-section .use-cases-section h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #0d234b;
    text-align: center;
    font-weight: 700;
}

.high-performance-hosting-section .use-cases-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #184780;
    line-height: 1.8;
}

.high-performance-hosting-section .tabs-container {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.high-performance-hosting-section .tab-button {
    padding: 12px 25px;
    border: 2px solid #184780;
    background-color: #ffffff;
    color: #184780;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.high-performance-hosting-section .tab-button.active {
    background-color: #184780;
    color: #ffffff;
    border-color: #0d234b;
}

.high-performance-hosting-section .tab-button:hover {
    background-color: #e5f2ff;
    color: #0d234b;
}

.high-performance-hosting-section .tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.high-performance-hosting-section .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.high-performance-hosting-section .use-case-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #e5f2ff;
    box-shadow: 0 10px 30px rgba(13, 35, 75, 0.08);
}

.high-performance-hosting-section .use-case-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 35, 75, 0.15);
    height: 100%;
}

.high-performance-hosting-section .use-case-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.high-performance-hosting-section .use-case-content h3 {
    font-size: 1.8rem;
    color: #0d234b;
    margin-bottom: 20px;
    font-weight: 700;
}

.high-performance-hosting-section .use-case-content p {
    color: #184780;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1rem;
}

.high-performance-hosting-section .use-case-content strong {
    color: #0d234b;
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.high-performance-hosting-section .use-case-content ul {
    list-style: none;
}

.high-performance-hosting-section .use-case-content li {
    padding: 12px 0;
    color: #0d234b;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.high-performance-hosting-section .use-case-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #184780;
    font-weight: bold;
}

/* ===== CONFIGURATIONS SECTION ===== */
.high-performance-hosting-section .config-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #e5f2ff 0%, rgba(233, 236, 240, 0.5) 100%);
}

.high-performance-hosting-section .config-section h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #0d234b;
    text-align: center;
    font-weight: 700;
}

.high-performance-hosting-section .config-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #184780;
    line-height: 1.8;
}

.high-performance-hosting-section .table-wrapper {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 35, 75, 0.1);
}

.high-performance-hosting-section .table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.high-performance-hosting-section .table-wrapper thead {
    background: linear-gradient(90deg, #0d234b, #184780);
    color: #ffffff;
}

.high-performance-hosting-section .table-wrapper th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.high-performance-hosting-section .table-wrapper td {
    padding: 20px;
    border-bottom: 1px solid #e5f2ff;
    color: #0d234b;
    font-size: 0.9rem;
}

.high-performance-hosting-section .table-wrapper tbody tr:hover {
    background-color: #e5f2ff;
}

.high-performance-hosting-section .table-wrapper tbody tr:last-child td {
    border-bottom: none;
}

/* ===== FAQ SECTION ===== */
.high-performance-hosting-section .faq-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.high-performance-hosting-section .faq-section h2 {
    font-size: 35px;
    margin-bottom: 50px;
    color: #0d234b;
    text-align: center;
    font-weight: 700;
}

.high-performance-hosting-section .faq-container {
    margin: 0 auto;
}

.high-performance-hosting-section .faq-item {
    background: #ffffff;
    border: 1px solid #e5f2ff;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(13, 35, 75, 0.08);
    transition: all 0.3s ease;
}

.high-performance-hosting-section .faq-item.active {
    border-color: #184780;
    box-shadow: 0 10px 30px rgba(13, 35, 75, 0.15);
}

.high-performance-hosting-section .faq-question {
    padding: 20px;
    cursor: pointer;
    background: #ffffff;
    color: #0d234b;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
}

.high-performance-hosting-section .faq-item.active .faq-question {
    background: linear-gradient(135deg, #e5f2ff, #e9ecf0);
    color: #184780;
}

.high-performance-hosting-section .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #184780;
    transition: transform 0.3s ease;
}

.high-performance-hosting-section .faq-item.active .faq-question::after {
    transform: rotate(45deg);
    content: '×';
}

.high-performance-hosting-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.high-performance-hosting-section .faq-answer-content {
    padding: 20px;
    color: #0d234b;
    line-height: 1.8;
}

.high-performance-hosting-section .faq-answer-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.high-performance-hosting-section .faq-answer-content ul {
    list-style: none;
    margin-left: 20px;
}

.high-performance-hosting-section .faq-answer-content li {
    padding: 8px 0;
    color: #184780;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.high-performance-hosting-section .faq-answer-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #184780;
    font-weight: bold;
}

/* ===== CTA SECTION ===== */
.high-performance-hosting-section .cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
    text-align: center;
}

.high-performance-hosting-section .cta-section h2 {
    font-size: 35px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.high-performance-hosting-section .cta-section p {
    font-size: 1.1rem;
    color: #e9ecf0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.high-performance-hosting-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.high-performance-hosting-section .cta-button {
    padding: 15px 40px;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    color: #0d234b;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.high-performance-hosting-section .cta-button:hover {
    background-color: #e5f2ff;
    border-color: #e5f2ff;
    color: #0d234b;
}

.high-performance-hosting-section .cta-button.secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.high-performance-hosting-section .cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #e5f2ff;
}

.high-performance-hosting-section .virtualization-button{
    padding: 10px 30px;
    border: 2px solid #0d234b;
    background-color: #ffffff;
    color: #0d234b;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.high-performance-hosting-section .virtualization-button:hover{
    background-color: #0d234b;
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .high-performance-hosting-section .problem-grid,
    .high-performance-hosting-section .use-case-card {
        grid-template-columns: 1fr;
    }

    .high-performance-hosting-section .pillars-grid {
        grid-template-columns: 1fr;
    }

    .high-performance-hosting-section .problem-section h2,
    .high-performance-hosting-section .solution-section h2,
    .high-performance-hosting-section .why-section h2,
    .high-performance-hosting-section .use-cases-section h2,
    .high-performance-hosting-section .config-section h2,
    .high-performance-hosting-section .faq-section h2,
    .high-performance-hosting-section .cta-section h2 {
        font-size: 2rem;
    }

    .high-performance-hosting-section .problem-section,
    .high-performance-hosting-section .solution-section,
    .high-performance-hosting-section .use-cases-section,
    .high-performance-hosting-section .config-section,
    .high-performance-hosting-section .faq-section,
    .high-performance-hosting-section .cta-section {
        padding: 50px 0;
    }

    .high-performance-hosting-section .use-case-card {
        padding: 30px;
    }

    .high-performance-hosting-section .pillar-card {
        padding: 25px;
    }
}
/* high-performance-hosting-section */

/*solution-ai-ml-section*/
.solution-ai-ml-section .container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Section Headers */
    .solution-ai-ml-section .section-header {
        text-align: center;
        margin-bottom: 35px;
    }

    .solution-ai-ml-section .section-label {
        display: inline-block;
        padding: 8px 20px;
        background: #e5f2ff;
        color: #184780;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .solution-ai-ml-section .section-title {
        font-size: 35px;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .solution-ai-ml-section .section-subtitle {
        font-size: 18px;
        color: #6b7280;
        max-width: 1100px;
        margin: 0 auto 24px;
        line-height: 1.8;
    }

    /* SECTION 1: CHALLENGE */
    .solution-ai-ml-section .section-challenge {
        padding: 50px 0;
        background: #ffffff;
    }

    .solution-ai-ml-section .challenge-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }

    .solution-ai-ml-section .intro-text {
        font-size: 18px;
        color: #1a1a1a;
        margin-bottom: 32px;
        line-height: 1.8;
    }

    .solution-ai-ml-section .problem-cards {
        display: grid;
        gap: 15px;
        margin-bottom: 32px;
    }

    .solution-ai-ml-section .problem-card {
        background: #ffffff;
        border: 2px solid #e9ecf0;
        border-radius: 12px;
        padding: 20px 28px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
    }

    .solution-ai-ml-section .problem-card:hover {
        border-color: #184780;
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.12);
        transform: translateY(-4px);
    }

    .solution-ai-ml-section .problem-icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #184780, #0d234b);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        color: #ffffff;
    }

    .solution-ai-ml-section .problem-card h3 {
        font-size: 20px;
        color: #0d234b;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .solution-ai-ml-section .problem-card p {
        color: #6b7280;
        font-size: 15px;
        line-height: 1.7;
    }

    .solution-ai-ml-section .emphasis-box {
        background: linear-gradient(135deg, #0d234b, #184780);
        color: #ffffff;
        padding: 17px 32px;
        border-radius: 12px;
        text-align: center;
    }

    .solution-ai-ml-section .emphasis-box p {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        color: white;
    }

    .solution-ai-ml-section .challenge-visual {
        position: sticky;
        top: 100px;
    }

    .solution-ai-ml-section .visual-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(13, 35, 75, 0.16);
    }

    .solution-ai-ml-section .visual-card img {
        width: 100%;
        height: auto;
        display: block;
    }

    .solution-ai-ml-section .visual-overlay {
        position: absolute;
        bottom: 24px;
        left: 24px;
        right: 24px;
    }

    .solution-ai-ml-section .stat-badge {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 28px;
        border-radius: 12px;
        display: inline-flex;
        flex-direction: column;
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.12);
    }

    .solution-ai-ml-section .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: #0d234b;
        line-height: 1;
        margin-bottom: 4px;
    }

    .solution-ai-ml-section .stat-label {
        font-size: 14px;
        color: #6b7280;
        font-weight: 500;
    }

    /* SECTION 2: SOLUTION */
    .solution-ai-ml-section .section-solution {
        padding: 50px 0;
        background: #e9ecf0;
    }

    .solution-ai-ml-section .solution-grid {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .solution-ai-ml-section .solution-benefits-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 15px;
    }

    .solution-ai-ml-section .solution-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(13, 35, 75, 0.16);
    }

    .solution-ai-ml-section .solution-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .solution-ai-ml-section .image-badge {
        position: absolute;
        top: 24px;
        right: 24px;
        background: linear-gradient(135deg, #184780, #0d234b);
        color: #ffffff;
        padding: 12px 24px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.12);
    }

    .solution-ai-ml-section .benefits-intro {
        font-size: 18px;
        color: #1a1a1a;
        margin-bottom: 32px;
        font-weight: 500;
    }

    .solution-ai-ml-section .benefit-item {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 24px;
        margin-bottom: 15px;
        padding: 28px;
        background: #ffffff;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .solution-ai-ml-section .benefit-item:hover {
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.12);
        transform: translateX(8px);
    }

    .solution-ai-ml-section .benefit-number {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #e5f2ff, #e9ecf0);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 700;
        color: #184780;
    }

    .solution-ai-ml-section .benefit-content h3 {
        font-size: 20px;
        color: #0d234b;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .solution-ai-ml-section .benefit-content p {
        color: #6b7280;
        font-size: 15px;
        line-height: 1.7;
    }

    /* SECTION 3: CONFIGURATION */
    .solution-ai-ml-section .section-config {
        padding: 50px 0;
        background: #ffffff;
    }

    .solution-ai-ml-section .config-comparison {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
        margin-bottom: 30px;
    }

    .solution-ai-ml-section .config-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.12);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .solution-ai-ml-section .config-card:hover {
        box-shadow: 0 8px 32px rgba(13, 35, 75, 0.16);
        transform: translateY(-8px);
    }

    .solution-ai-ml-section .config-image-wrapper {
        position: relative;
        height: 280px;
        overflow: hidden;
    }

    .solution-ai-ml-section .config-image-wrapper img {
        width: 100%;
        height: 100%;
        object-position: top;
        object-fit: cover;
    }

    .solution-ai-ml-section .config-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        color: #0d234b;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .solution-ai-ml-section .config-ai .config-badge {
        background: linear-gradient(135deg, #184780, #0d234b);
        color: #ffffff;
    }

    .solution-ai-ml-section .config-data .config-badge {
        background: linear-gradient(135deg, #0d234b, #184780);
        color: #ffffff;
    }

    .solution-ai-ml-section .config-content {
        padding: 36px;
    }

    .solution-ai-ml-section .config-content h3 {
        font-size: 26px;
        color: #0d234b;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .solution-ai-ml-section .config-description {
        font-size: 16px;
        color: #6b7280;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .solution-ai-ml-section .config-specs {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .solution-ai-ml-section .spec-item h4 {
        font-size: 16px;
        color: #0d234b;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .solution-ai-ml-section .spec-item ul {
        list-style: none;
        padding-left: 35px;
    }

    .solution-ai-ml-section .spec-sub-item h5 {
        font-size: 16px;
        color: #0d234b;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .solution-ai-ml-section .spec-item p {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.7;
    }

    .solution-ai-ml-section .cta-card {
        background: linear-gradient(135deg, #0d234b, #184780);
        border-radius: 20px;
        padding: 35px 45px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        box-shadow: 0 8px 32px rgba(13, 35, 75, 0.16);
    }

    .solution-ai-ml-section .cta-content h3 {
        font-size: 28px;
        color: #ffffff;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .solution-ai-ml-section .cta-content p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
    }

    .solution-ai-ml-section .cta-button {
        display: inline-block;
        padding: 16px 36px;
        background: #ffffff;
        color: #0d234b;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(13, 35, 75, 0.08);
    }

    .solution-ai-ml-section .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.12);
        background: #e5f2ff;
    }

    /* SECTION 4: USE CASES */
    .solution-ai-ml-section .section-use-cases {
        padding: 50px 0;
        background: #e9ecf0;
    }

    .solution-ai-ml-section .use-case-category {
        margin-bottom: 80px;
    }

    .solution-ai-ml-section .use-case-category:last-child {
        margin-bottom: 0;
    }

    .solution-ai-ml-section .category-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 3px solid #184780;
    }

    .solution-ai-ml-section .category-header img {
        width: 64px;
        height: 64px;
        border-radius: 12px;
        object-fit: cover;
        box-shadow: 0 2px 8px rgba(13, 35, 75, 0.08);
    }

    .solution-ai-ml-section .category-header h3 {
        font-size: 32px;
        color: #0d234b;
        font-weight: 700;
    }

    .solution-ai-ml-section .use-case-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 28px;
    }

    .solution-ai-ml-section .use-case-card {
        background: #ffffff;
        padding: 32px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(13, 35, 75, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
    }

    .solution-ai-ml-section .use-case-card:hover {
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.12);
        transform: translateY(-4px);
        border-color: #184780;
    }

    .solution-ai-ml-section .use-case-icon {
        width: 48px;
        height: 48px;
        background: #e5f2ff;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        color: #184780;
    }

    .solution-ai-ml-section .use-case-card h4 {
        font-size: 18px;
        color: #0d234b;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .solution-ai-ml-section .use-case-card p {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.7;
    }

    /* SECTION 5: FAQ */
    .solution-ai-ml-section .section-faq {
        padding: 50px 0;
        background: #ffffff;
    }

    .solution-ai-ml-section .faq-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .solution-ai-ml-section .faq-item {
        background: #ffffff;
        border: 2px solid #e9ecf0;
        border-radius: 12px;
        margin-bottom: 20px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .solution-ai-ml-section .faq-item:hover {
        border-color: #184780;
    }

    .solution-ai-ml-section .faq-question {
        padding: 20px 32px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        user-select: none;
    }

    .solution-ai-ml-section .faq-question h3 {
        font-size: 18px;
        color: #0d234b;
        font-weight: 600;
        margin: 0;
    }

    .solution-ai-ml-section .faq-icon {
        width: 32px;
        height: 32px;
        background: #e5f2ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #184780;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .solution-ai-ml-section .faq-answer {
        padding: 0 32px 28px;
        display: none;
    }

    .solution-ai-ml-section .faq-item.active .faq-answer {
        display: block;
    }

    .solution-ai-ml-section .faq-item.active .faq-icon {
        transform: rotate(180deg);
        background: #184780;
        color: #ffffff;
    }

    .solution-ai-ml-section .faq-answer p {
        font-size: 15px;
        color: #6b7280;
        line-height: 1.8;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .solution-ai-ml-section .section-title {
            font-size: 30px;
        }

        .solution-ai-ml-section .challenge-grid,
        .solution-ai-ml-section .solution-grid {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .solution-ai-ml-section .solution-benefits-points {
            grid-template-columns: 1fr;
        }

        .solution-ai-ml-section .challenge-visual {
            position: static;
        }

        .solution-ai-ml-section .config-comparison {
            grid-template-columns: 1fr;
            gap: 32px;
        }
    }

    @media (max-width: 768px) {
        .solution-ai-ml-section .section-title {
            font-size: 28px;
        }

        .solution-ai-ml-section .section-subtitle {
            font-size: 16px;
        }

        .solution-ai-ml-section .container {
            padding: 0 16px;
        }

        .solution-ai-ml-section .section-challenge,
        .solution-ai-ml-section .section-solution,
        .solution-ai-ml-section .section-config,
        .solution-ai-ml-section .section-use-cases,
        .solution-ai-ml-section .section-faq {
            padding: 30px 0;
        }

        .solution-ai-ml-section .section-header {
            margin-bottom: 25px;
        }

        .solution-ai-ml-section .benefit-item {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .solution-ai-ml-section .benefit-number {
            width: 64px;
            height: 64px;
            font-size: 24px;
        }

        .solution-ai-ml-section .cta-card {
            flex-direction: column;
            padding: 36px 28px;
            text-align: center;
        }

        .solution-ai-ml-section .cta-content h3 {
            font-size: 24px;
        }

        .solution-ai-ml-section .use-case-grid {
            grid-template-columns: 1fr;
        }

        .solution-ai-ml-section .category-header h3 {
            font-size: 24px;
        }

        .solution-ai-ml-section .faq-question {
            padding: 20px 24px;
        }

        .solution-ai-ml-section .faq-answer {
            padding: 0 24px 20px;
        }
    }

    @media (max-width: 480px) {
        .solution-ai-ml-section .section-title {
            font-size: 25px;
        }

        .solution-ai-ml-section .problem-card,
        .solution-ai-ml-section .benefit-item,
        .solution-ai-ml-section .use-case-card {
            padding: 20px;
        }

        .solution-ai-ml-section .config-content {
            padding: 24px;
        }
    }
/*solution-ai-ml-section*/

/*solution-media-streaming-section*/

/* Container */
.solution-media-streaming-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Section Styles */
.solution-media-streaming-section .section {
    padding: 50px 0;
}

.solution-media-streaming-section .section-header {
    margin-bottom: 30px;
}

.solution-media-streaming-section .section-header.centered {
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.solution-media-streaming-section .section-title {
    color: #0d234b;
    margin-bottom: 20px;
    font-size: 2rem;
}

.solution-media-streaming-section .section-subtitle {
    font-size: 1.125rem;
    color: #184780;
    line-height: 1.8;
}

/* Content Grid */
.solution-media-streaming-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-media-streaming-section .content-grid.reverse {
    direction: rtl;
}

.solution-media-streaming-section .content-grid.reverse > * {
    direction: ltr;
}

/* Section Images */
.solution-media-streaming-section .section-image {
    position: relative;
}

.solution-media-streaming-section .section-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(13, 35, 75, 0.12);
    transition: transform 0.3s ease;
}

.solution-media-streaming-section .section-image img:hover {
    transform: translateY(-8px);
}

/* Section 1: Problem Section */
.solution-media-streaming-section .problem-section {
    background: linear-gradient(135deg, #e5f2ff 0%, #ffffff 100%);
}

.solution-media-streaming-section .problems-list {
    display: grid;
    gap: 24px;
}

.solution-media-streaming-section .problem-content-grid .problems-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.solution-media-streaming-section .problem-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(13, 35, 75, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #184780;
}

.solution-media-streaming-section .problem-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(13, 35, 75, 0.15);
}

.solution-media-streaming-section .problem-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #184780;
    font-size: 30px;
}

.solution-media-streaming-section .problem-card h3 {
    color: #0d234b;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.solution-media-streaming-section .problem-card p {
    color: #184780;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Section 2: Solution Section */
.solution-media-streaming-section .solution-section {
    background: #ffffff;
}

.solution-media-streaming-section .features-list {
    display: grid;
}

.solution-media-streaming-section .feature-card {
    position: relative;
    padding: 20px 32px;
    padding-left: 80px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.solution-media-streaming-section .feature-number {
    position: absolute;
    left: 32px;
    top: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.solution-media-streaming-section .feature-card h3 {
    color: #0d234b;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.solution-media-streaming-section .feature-card p {
    color: #184780;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* CDN Highlight */
.solution-media-streaming-section .cdn-highlight {
    margin-top: 60px;
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
    border-radius: 16px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    color: #ffffff;
}

.solution-media-streaming-section .cdn-content h3 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.solution-media-streaming-section .cdn-content p {
    color: #e9ecf0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.solution-media-streaming-section .cdn-visual img {
    width: 100%;
    border-radius: 12px;
    opacity: 0.9;
}

/* Section 3: Hardware Section */
.solution-media-streaming-section .hardware-section {
    background: linear-gradient(180deg, #ffffff 0%, #e9ecf0 100%);
}

.solution-media-streaming-section .hardware-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.solution-media-streaming-section .hardware-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(13, 35, 75, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-media-streaming-section .hardware-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #184780 0%, #0d234b 100%);
}

.solution-media-streaming-section .hardware-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 35, 75, 0.15);
}

.solution-media-streaming-section .hardware-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #184780;
}

.solution-media-streaming-section .hardware-icon-wrapper i{
    font-size: 40px;
}

.solution-media-streaming-section .hardware-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #e5f2ff;
    color: #0d234b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.solution-media-streaming-section .hardware-card h3 {
    color: #0d234b;
    font-size: 1.25rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.solution-media-streaming-section .hardware-best-for {
    color: #184780;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.solution-media-streaming-section .hardware-specs {
    color: #184780;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Section 4: Use Cases Section */
.solution-media-streaming-section .use-cases-section {
    background: #ffffff;
}

.solution-media-streaming-section .use-cases-content .intro-text {
    font-size: 1.125rem;
    color: #184780;
    margin-bottom: 40px;
}

.solution-media-streaming-section .use-case-list {
    display: grid;
    gap: 24px;
}

.solution-media-streaming-section .use-case-item {
    display: grid;
    gap: 20px;
    padding: 28px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e9ecf0;
    transition: all 0.3s ease;
}

.solution-media-streaming-section .use-case-item:hover {
    border-color: #184780;
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(13, 35, 75, 0.08);
}

.solution-media-streaming-section .use-case-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #184780;
    flex-shrink: 0;
}

.solution-media-streaming-section .use-case-text h3 {
    color: #0d234b;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.solution-media-streaming-section .use-case-text p {
    color: #184780;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Section 5: Software Section */
.solution-media-streaming-section .software-section {
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
}

.solution-media-streaming-section .software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.solution-media-streaming-section .software-category {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(13, 35, 75, 0.08);
}

.solution-media-streaming-section .category-title {
    color: #0d234b;
    font-size: 1.5rem;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid #e5f2ff;
}

.solution-media-streaming-section .software-items {
    display: grid;
    gap: 20px;
}

.solution-media-streaming-section .software-item {
    display: grid;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e9ecf0;
    transition: all 0.3s ease;
}

.solution-media-streaming-section .software-item:hover {
    border-color: #184780;
    box-shadow: 0 4px 15px rgba(13, 35, 75, 0.1);
}

.solution-media-streaming-section .software-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #184780;
    flex-shrink: 0;
}

.solution-media-streaming-section .software-info h4 {
    color: #0d234b;
    font-size: 1.125rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.solution-media-streaming-section .software-info p {
    color: #184780;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Section 6: CTA Section */

.solution-media-streaming-section .cta-section .container{
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.solution-media-streaming-section .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 236, 240, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.solution-media-streaming-section .cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 236, 240, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.solution-media-streaming-section .cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.solution-media-streaming-section .cta-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.solution-media-streaming-section .cta-text {
    color: #e9ecf0;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.solution-media-streaming-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.solution-media-streaming-section .btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-media-streaming-section .btn-primary {
    background: #ffffff;
    color: #0d234b;
    border-color: #ffffff;
}

.solution-media-streaming-section .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.solution-media-streaming-section .btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.solution-media-streaming-section .btn-secondary:hover {
    background: #ffffff;
    color: #0d234b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Section 7: FAQ Section */
.solution-media-streaming-section .faq-section {
    background: #ffffff;
}

.solution-media-streaming-section .faq-list {
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.solution-media-streaming-section .faq-item {
    background: #ffffff;
    border: 2px solid #e9ecf0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.solution-media-streaming-section .faq-item:hover {
    border-color: #e5f2ff;
}

.solution-media-streaming-section .faq-item.active {
    border-color: #184780;
    box-shadow: 0 4px 20px rgba(13, 35, 75, 0.1);
}

.solution-media-streaming-section .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    user-select: none;
}

.solution-media-streaming-section .faq-question h3 {
    color: #0d234b;
    font-size: 1.125rem;
    margin-bottom: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.solution-media-streaming-section .faq-toggle {
    width: 32px;
    height: 32px;
    background: #e5f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #184780;
}

.solution-media-streaming-section .faq-item.active .faq-toggle {
    background: #184780;
    color: #ffffff;
    transform: rotate(180deg);
}

.solution-media-streaming-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.solution-media-streaming-section .faq-item.active .faq-answer {
    max-height: 500px;
}

.solution-media-streaming-section .faq-answer p {
    padding: 0 32px 32px 32px;
    color: #184780;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .solution-media-streaming-section .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-media-streaming-section .hardware-grid {
        grid-template-columns: 1fr;
    }

    .solution-media-streaming-section .cdn-highlight {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .solution-media-streaming-section h2 {
        font-size: 1.75rem;
    }

    .solution-media-streaming-section .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .solution-media-streaming-section .section {
        padding: 60px 0;
    }

    .solution-media-streaming-section .container {
        padding: 0 20px;
    }

    .solution-media-streaming-section h2 {
        font-size: 1.5rem;
    }

    .solution-media-streaming-section .problem-card,
    .solution-media-streaming-section .feature-card {
        padding: 24px;
    }

    .solution-media-streaming-section .feature-card {
        padding-left: 24px;
    }

    .solution-media-streaming-section .feature-number {
        position: static;
        margin-bottom: 16px;
    }

    .solution-media-streaming-section .use-case-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-media-streaming-section .software-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-media-streaming-section .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .solution-media-streaming-section .btn {
        text-align: center;
    }

    .solution-media-streaming-section .faq-question {
        padding: 20px;
    }

    .solution-media-streaming-section .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}
/*solution-media-streaming-section*/


/*solution-baas-storage-section*/
.solution-baas-storage-section .container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Section Styles */
    .solution-baas-storage-section .section-content {
        padding: 50px 0;
        background-color: #ffffff;
    }

    .solution-baas-storage-section .section-alt {
        background: linear-gradient(180deg, #e5f2ff 0%, #ffffff 100%);
    }

    .solution-baas-storage-section .section-software {
        background-color: #ffffff;
    }

    .solution-baas-storage-section .section-cta {
        padding: 50px 0;
        background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
        position: relative;
        overflow: hidden;
    }

    .solution-baas-storage-section .section-cta::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        top: -300px;
        right: -200px;
    }

    .solution-baas-storage-section .section-faq {
        padding: 100px 0;
        background-color: #e5f2ff;
    }

    /* Typography */
    .solution-baas-storage-section .section-heading {
        font-size: 35px;
        font-weight: 800;
        color: #0d234b;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .solution-baas-storage-section .section-heading .k-center {
        text-align: center;
    }

    .solution-baas-storage-section .text-body {
        font-size: 1rem;
        line-height: 1.8;
        color: #184780;
        margin-bottom: 16px;
    }

    .solution-baas-storage-section .text-body .k-center {
        text-align: center;
    }

    .solution-baas-storage-section .max-width {
        margin-left: auto;
        margin-right: auto;
    }

    .solution-baas-storage-section .margin-top {
        margin-top: 48px;
    }

    /* Section Header */
    .solution-baas-storage-section .section-header {
        margin-bottom: 40px;
    }

    /* Badge Pill */
    .solution-baas-storage-section .badge-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #e5f2ff;
        padding: 12px 24px;
        border-radius: 50px;
        margin-bottom: 24px;
        font-size: 0.875rem;
        font-weight: 600;
        color: #184780;
        border: 2px solid #e9ecf0;
    }

    .solution-baas-storage-section .badge-pill i {
        font-size: 1rem;
    }

    /* Content Grid */
    .solution-baas-storage-section .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .solution-baas-storage-section .content-grid.reverse {
        direction: rtl;
    }

    .solution-baas-storage-section .content-grid.reverse>* {
        direction: ltr;
    }

    .solution-baas-storage-section .content-text {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Image Card */
    .solution-baas-storage-section .image-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(13, 35, 75, 0.15);
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .image-card:hover {
        transform: rotate(0deg) scale(1.02);
    }

    .solution-baas-storage-section .image-card img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
    }

    /* Features Grid */
    .solution-baas-storage-section .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: 48px;
    }

    .solution-baas-storage-section .feature-box {
        background: #ffffff;
        padding: 25px;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .solution-baas-storage-section .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 32px rgba(13, 35, 75, 0.15);
        border-color: #e5f2ff;
    }

    .solution-baas-storage-section .feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
    }

    .solution-baas-storage-section .feature-icon i {
        font-size: 2rem;
        color: #ffffff;
    }

    .solution-baas-storage-section .feature-title {
        font-size: 1.375rem;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 12px;
    }

    .solution-baas-storage-section .feature-desc {
        font-size: 1rem;
        color: #184780;
        line-height: 1.7;
    }

    /* Info List */
    .solution-baas-storage-section .info-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 32px 0;
    }

    .solution-baas-storage-section .info-item {
        display: flex;
        gap: 20px;
        padding: 24px;
        background: #ffffff;
        border-radius: 8px;
        border: 2px solid #e9ecf0;
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .info-item:hover {
        border-color: #184780;
        box-shadow: 0 2px 8px rgba(13, 35, 75, 0.06);
    }

    .solution-baas-storage-section .info-icon {
        width: 48px;
        height: 48px;
        background: #e5f2ff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .solution-baas-storage-section .info-icon i {
        font-size: 1.25rem;
        color: #184780;
    }

    .solution-baas-storage-section .info-content {
        flex: 1;
    }

    .solution-baas-storage-section .info-title {
        font-size: 1.125rem;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 8px;
    }

    .solution-baas-storage-section .info-text {
        font-size: 1rem;
        color: #184780;
        line-height: 1.7;
    }

    /* Benefits Grid */
    .solution-baas-storage-section .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 48px;
    }

    .solution-baas-storage-section .benefit-card {
        background: #ffffff;
        padding: 20px 30px;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 32px rgba(13, 35, 75, 0.15);
    }

    .solution-baas-storage-section .benefit-icon-wrap {
        width: 72px;
        height: 72px;
        background: #e5f2ff;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
    }

    .solution-baas-storage-section .benefit-icon-wrap i {
        font-size: 2rem;
        color: #184780;
    }

    .solution-baas-storage-section .benefit-heading {
        font-size: 1.375rem;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 12px;
    }

    .solution-baas-storage-section .benefit-text {
        font-size: 1rem;
        color: #184780;
        line-height: 1.7;
    }

    /* Software Tabs */
    .solution-baas-storage-section .software-tabs {
        margin-top: 64px;
    }

    .solution-baas-storage-section .tab-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 48px;
    }

    .solution-baas-storage-section .tab-btn {
        padding: 14px 32px;
        background: #ffffff;
        border: 2px solid #e9ecf0;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        color: #184780;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .tab-btn:hover {
        border-color: #184780;
        color: #184780;
    }

    .solution-baas-storage-section .tab-btn.active {
        background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
        color: #ffffff;
        border-color: transparent;
    }

    .solution-baas-storage-section .tab-content {
        display: none;
    }

    .solution-baas-storage-section .tab-content.active {
        display: block;
    }

    /* Software List */
    .solution-baas-storage-section .software-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .solution-baas-storage-section .software-item {
        display: flex;
        gap: 32px;
        padding: 32px;
        background: #ffffff;
        border-radius: 16px;
        border: 2px solid #e9ecf0;
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .software-item:hover {
        border-color: #184780;
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
    }

    .solution-baas-storage-section .software-logo {
        width: 200px;
        flex-shrink: 0;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .solution-baas-storage-section .bg-black {
        background: #000000;
    }

    .solution-baas-storage-section .software-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .solution-baas-storage-section .software-info {
        flex: 1;
    }

    .solution-baas-storage-section .software-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 12px;
    }

    .solution-baas-storage-section .software-desc {
        font-size: 1rem;
        color: #184780;
        line-height: 1.7;
    }

    /* Blueprints Grid */
    .solution-baas-storage-section .blueprints-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: 48px;
    }

    .solution-baas-storage-section .blueprint-card {
        background: #ffffff;
        border-radius: 16px;
        border: 2px solid #e9ecf0;
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
    }

    .solution-baas-storage-section .blueprint-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 32px rgba(13, 35, 75, 0.15);
        border-color: #184780;
    }

    .solution-baas-storage-section .blueprint-card.featured {
        border-color: #184780;
        border-width: 3px;
    }

    .solution-baas-storage-section .popular-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
        color: #ffffff;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1px;
        z-index: 10;
    }

    .solution-baas-storage-section .blueprint-header {
        background: #e5f2ff;
        padding: 32px 24px;
    }

    .solution-baas-storage-section .blueprint-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0d234b;
        line-height: 1.3;
    }

    .solution-baas-storage-section .blueprint-body {
        padding: 32px 24px;
    }

    .solution-baas-storage-section .spec-item {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 16px 0;
        border-bottom: 1px solid #e9ecf0;
    }

    .solution-baas-storage-section .spec-item:last-of-type {
        border-bottom: none;
    }

    .solution-baas-storage-section .spec-label {
        font-size: 0.875rem;
        font-weight: 700;
        color: #0d234b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .solution-baas-storage-section .spec-value {
        font-size: 1rem;
        color: #184780;
        line-height: 1.6;
    }

    .solution-baas-storage-section .blueprint-edge {
        margin-top: 24px;
        padding: 20px;
        background: #e5f2ff;
        border-radius: 8px;
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .solution-baas-storage-section .blueprint-edge i {
        color: #184780;
        font-size: 1.25rem;
        margin-top: 2px;
    }

    .solution-baas-storage-section .blueprint-edge p {
        font-size: 0.9375rem;
        color: #0d234b;
        line-height: 1.6;
        margin: 0;
    }

    .solution-baas-storage-section .blueprint-footer {
        padding: 0 24px 32px 24px;
    }

    /* CTA Box */
    .solution-baas-storage-section .cta-box {
        margin-top: 64px;
        padding: 48px;
        background:  linear-gradient(135deg, #184780 0%, #0d234b 100%);
        border-radius: 16px;
        border: 2px solid #e9ecf0;
        text-align: center;
    }

    .solution-baas-storage-section .cta-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .solution-baas-storage-section .cta-heading {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 16px;
    }

    .solution-baas-storage-section .cta-text {
        font-size: 1.125rem;
        color: #ffffff;
        line-height: 1.8;
        margin-bottom: 32px;
    }

    /* Services Grid */
    .solution-baas-storage-section .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: 48px;
    }

    .solution-baas-storage-section .service-box {
        background: #ffffff;
        padding: 40px 32px;
        border-radius: 16px;
        border: 2px solid #e9ecf0;
        text-align: center;
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .service-box:hover {
        transform: translateY(-8px);
        border-color: #184780;
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
    }

    .solution-baas-storage-section .service-icon-wrap {
        width: 80px;
        height: 80px;
        background: #e5f2ff;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
    }

    .solution-baas-storage-section .service-icon-wrap i {
        font-size: 2rem;
        color: #184780;
    }

    .solution-baas-storage-section .service-name {
        font-size: 1.125rem;
        font-weight: 700;
        color: #0d234b;
        line-height: 1.5;
    }

    /* CTA Section */
    .solution-baas-storage-section .cta-inner {
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .solution-baas-storage-section .cta-title {
        font-size: 3rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .solution-baas-storage-section .cta-subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .solution-baas-storage-section .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    /* Buttons */
    .solution-baas-storage-section .btn-primary {
        display: inline-block;
        padding: 16px 32px;
        background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
        color: #ffffff;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .solution-baas-storage-section .cta-btn {
        display: inline-block;
        padding: 16px 32px;
        background: #ffffff;
        color: #0d234b;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .solution-baas-storage-section .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(13, 35, 75, 0.25);
    }

    .solution-baas-storage-section .btn-primary.large {
        padding: 18px 40px;
        font-size: 1.125rem;
    }

    .solution-baas-storage-section .btn-white {
        display: inline-block;
        padding: 18px 40px;
        background: #ffffff;
        color: #0d234b;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1.125rem;
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    }

    .solution-baas-storage-section .btn-outline-white {
        display: inline-block;
        padding: 18px 40px;
        background: transparent;
        color: #ffffff;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1.125rem;
        border: 2px solid #ffffff;
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .btn-outline-white:hover {
        background: #ffffff;
        color: #0d234b;
        transform: translateY(-2px);
    }

    /* FAQ */
    .solution-baas-storage-section .faq-wrapper {
        max-width: 1100px;
        margin: 0 auto;
    }

    .solution-baas-storage-section .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .solution-baas-storage-section .faq-item {
        background: #ffffff;
        border-radius: 16px;
        border: 2px solid #e9ecf0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .faq-item:hover {
        border-color: #184780;
    }

    .solution-baas-storage-section .faq-item.active {
        border-color: #184780;
        box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
    }

    .solution-baas-storage-section .faq-question {
        padding: 20px 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
    }

    .solution-baas-storage-section .faq-question h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0d234b;
        margin: 0;
        flex: 1;
        padding-right: 24px;
    }

    .solution-baas-storage-section .faq-toggle {
        width: 32px;
        height: 32px;
        background: #e5f2ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .faq-toggle i {
        color: #184780;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .solution-baas-storage-section .faq-item.active .faq-toggle {
        background: #184780;
    }

    .solution-baas-storage-section .faq-item.active .faq-toggle i {
        color: #ffffff;
        transform: rotate(45deg);
    }

    .solution-baas-storage-section .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .solution-baas-storage-section .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 32px 28px 32px;
    }

    .solution-baas-storage-section .faq-answer p {
        font-size: 1rem;
        color: #184780;
        line-height: 1.8;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .solution-baas-storage-section .section-heading {
            font-size: 2.25rem;
        }

        .solution-baas-storage-section .features-grid,
        .solution-baas-storage-section .blueprints-grid,
        .solution-baas-storage-section .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .solution-baas-storage-section .section-content {
            padding: 40px 0;
        }

        .solution-baas-storage-section .section-cta {
            padding: 80px 0;
        }

        .solution-baas-storage-section .section-heading {
            font-size: 2rem;
        }

        .solution-baas-storage-section .text-body {
            font-size: 1rem;
        }

        .solution-baas-storage-section .content-grid,
        .solution-baas-storage-section .content-grid.reverse {
            grid-template-columns: 1fr;
            gap: 40px;
            direction: ltr;
        }

        .solution-baas-storage-section .features-grid,
        .solution-baas-storage-section .benefits-grid,
        .solution-baas-storage-section .blueprints-grid,
        .solution-baas-storage-section .services-grid {
            grid-template-columns: 1fr;
        }

        .solution-baas-storage-section .software-item {
            flex-direction: column;
        }

        .solution-baas-storage-section .software-logo {
            width: 100%;
        }

        .solution-baas-storage-section .cta-title {
            font-size: 2rem;
        }

        .solution-baas-storage-section .cta-buttons {
            flex-direction: column;
        }

        .solution-baas-storage-section .btn-white,
        .solution-baas-storage-section .btn-outline-white {
            width: 100%;
        }

        .solution-baas-storage-section .tab-buttons {
            flex-direction: column;
        }

        .solution-baas-storage-section .tab-btn {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .solution-baas-storage-section .container {
            padding: 0 16px;
        }

        .solution-baas-storage-section .section-heading {
            font-size: 1.75rem;
        }

        .solution-baas-storage-section .feature-box,
        .solution-baas-storage-section .benefit-card,
        .solution-baas-storage-section .blueprint-card {
            padding: 24px;
        }

        .solution-baas-storage-section .cta-box {
            padding: 32px 24px;
        }
    }
/*solution-baas-storage-section*/

/*solution-database-hosting-section*/
.solution-database-hosting-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-left"].animated {
    transform: translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-right"].animated {
    transform: translateX(0);
}

[data-animate="zoom-in"] {
    transform: scale(0.95);
}

[data-animate="zoom-in"].animated {
    transform: scale(1);
}

/* Section Labels */
.solution-database-hosting-section .section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #e5f2ff, #e9ecf0);
    color: #0d234b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.solution-database-hosting-section .section-header {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.solution-database-hosting-section .section-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #0d234b;
    line-height: 1.2;
    margin-bottom: 16px;
}

.solution-database-hosting-section .section-header p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.8;
}

/* Section Intro */
.solution-database-hosting-section .section-intro {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e5f2ff 100%);
    position: relative;
    overflow: hidden;
}

.solution-database-hosting-section .section-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(24, 71, 128, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solution-database-hosting-section .intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.solution-database-hosting-section .intro-label {
    display: inline-block;
    padding: 8px 20px;
    background: #0d234b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 24px;
}

.solution-database-hosting-section .intro-content h2 {
    font-size: 35px;
    font-weight: 800;
    color: #0d234b;
    line-height: 1.15;
    margin-bottom: 24px;
}

.solution-database-hosting-section .intro-content p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.solution-database-hosting-section .intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.solution-database-hosting-section .stat-item {
    text-align: center;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(13, 35, 75, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
}

.solution-database-hosting-section .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #184780;
    line-height: 1;
    margin-bottom: 8px;
}

.solution-database-hosting-section .stat-label {
    display: block;
    font-size: 14px;
    color: #4a4a4a;
    font-weight: 500;
}

.solution-database-hosting-section .intro-image {
    position: relative;
}

.solution-database-hosting-section .image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(13, 35, 75, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(13, 35, 75, 0.15);
}

.solution-database-hosting-section .image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.solution-database-hosting-section .image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
    font-weight: 600;
    color: #0d234b;
}

.solution-database-hosting-section .image-badge svg {
    color: #184780;
}

/* Section Traps */
.solution-database-hosting-section .section-traps {
    padding: 50px 0;
    background: #ffffff;
}

.solution-database-hosting-section .traps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.solution-database-hosting-section .trap-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e9ecf0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.solution-database-hosting-section .trap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(13, 35, 75, 0.12);
    border-color: #184780;
}

.solution-database-hosting-section .trap-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #e5f2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.solution-database-hosting-section .trap-icon svg {
    color: #0d234b;
}

.solution-database-hosting-section .trap-image {
    height: 220px;
    overflow: hidden;
}

.solution-database-hosting-section .trap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .trap-card:hover .trap-image img {
    transform: scale(1.05);
}

.solution-database-hosting-section .trap-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0d234b;
    margin: 24px 24px 12px;
    line-height: 1.3;
}

.solution-database-hosting-section .trap-card p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0 24px;
}

.solution-database-hosting-section .trap-warning {
    margin: 20px 24px 24px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #92400e;
}

/* Section Advantage */
.solution-database-hosting-section .section-advantage {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #e5f2ff 100%);
}

.solution-database-hosting-section .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.solution-database-hosting-section .advantage-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .advantage-item:hover {
    border-color: #184780;
    box-shadow: 0 8px 32px rgba(13, 35, 75, 0.12);
    transform: translateX(8px);
}

.solution-database-hosting-section .advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d234b, #184780);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-database-hosting-section .advantage-icon i {
    color: #ffffff;
    font-size: 30px;
}

.solution-database-hosting-section .advantage-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 8px;
}

.solution-database-hosting-section .advantage-content p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.solution-database-hosting-section .advantage-visual {
    display: flex;
    justify-content: flex-end;
}

/* Section Fortress */
.solution-database-hosting-section .section-fortress {
    padding: 50px 0;
    background: #ffffff;
}

.solution-database-hosting-section .fortress-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.solution-database-hosting-section .fortress-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e9ecf0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.solution-database-hosting-section .fortress-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(13, 35, 75, 0.12);
    border-color: #184780;
}

.solution-database-hosting-section .fortress-number {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #0d234b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
}

.solution-database-hosting-section .fortress-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.solution-database-hosting-section .fortress-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .fortress-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 35, 75, 0.8), rgba(24, 71, 128, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .fortress-overlay svg {
    color: #ffffff;
}

.solution-database-hosting-section .fortress-card:hover .fortress-overlay {
    opacity: 1;
}

.solution-database-hosting-section .fortress-card:hover .fortress-image img {
    transform: scale(1.1);
}

.solution-database-hosting-section .fortress-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0d234b;
    margin: 60px 24px 12px;
    line-height: 1.3;
}

.solution-database-hosting-section .fortress-card p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0 24px 24px;
}

/* Section Hardware */
.solution-database-hosting-section .section-hardware {
    padding: 50px 0;
    background: linear-gradient(180deg, #e5f2ff 0%, #ffffff 100%);
}

.solution-database-hosting-section .hardware-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.solution-database-hosting-section .hardware-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e9ecf0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.solution-database-hosting-section .hardware-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(13, 35, 75, 0.15);
    border-color: #184780;
}

.solution-database-hosting-section .hardware-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
}

.solution-database-hosting-section .hardware-badge.priority {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
}

.solution-database-hosting-section .hardware-badge.engine {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
}

.solution-database-hosting-section .hardware-badge.cache {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.solution-database-hosting-section .hardware-image {
    height: 240px;
    overflow: hidden;
}

.solution-database-hosting-section .hardware-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .hardware-card:hover .hardware-image img {
    transform: scale(1.05);
}

.solution-database-hosting-section .hardware-content {
    padding: 24px;
}

.solution-database-hosting-section .hardware-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.solution-database-hosting-section .hardware-content p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-database-hosting-section .hardware-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.solution-database-hosting-section .spec-item {
    padding: 12px;
    background: #e5f2ff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.solution-database-hosting-section .spec-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.solution-database-hosting-section .spec-value {
    font-size: 15px;
    font-weight: 700;
    color: #0d234b;
}

/* Section DB Engines */
.solution-database-hosting-section .section-db-engines {
    padding: 50px 0;
    background: #ffffff;
}

.solution-database-hosting-section .db-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.solution-database-hosting-section .db-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    border: 2px solid #e9ecf0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.solution-database-hosting-section .db-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(13, 35, 75, 0.12);
    border-color: #184780;
}

.solution-database-hosting-section .db-icon {
    width: 160px;
    margin: 0 auto 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .db-icon img {
    max-width: 100%;
    object-fit: contain;
    height: 100px;
}

.solution-database-hosting-section .db-card:hover .db-icon {
    transform: scale(1.1) rotate(5deg);
}

.solution-database-hosting-section .db-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 12px;
}

.solution-database-hosting-section .db-card p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-database-hosting-section .db-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.solution-database-hosting-section .feature-tag {
    padding: 6px 14px;
    background: #e5f2ff;
    color: #0d234b;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

/* Section Use Case */
.solution-database-hosting-section .section-use-case {
    padding: 50px 0;
    background: linear-gradient(135deg, #e5f2ff 0%, #ffffff 100%);
}

.solution-database-hosting-section .use-case-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.solution-database-hosting-section .use-case-content h2 {
    font-size: 35px;
    font-weight: 700;
    color: #0d234b;
    line-height: 1.2;
    margin-bottom: 16px;
}

.solution-database-hosting-section .use-case-content > p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.solution-database-hosting-section .app-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-database-hosting-section .app-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .app-list li:hover {
    border-color: #184780;
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
}

.solution-database-hosting-section .app-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #184780;
}

.solution-database-hosting-section .app-list li span {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 500;
}

.solution-database-hosting-section .use-case-visual {
    position: relative;
}

.solution-database-hosting-section .visual-card {
    border-radius: 24px;
    overflow: hidden;
}

.solution-database-hosting-section .visual-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section CTA */
.solution-database-hosting-section .section-cta {
    padding: 50px 0;
    background: linear-gradient(135deg, #0d234b, #184780);
    position: relative;
    overflow: hidden;
}

.solution-database-hosting-section .section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solution-database-hosting-section .cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solution-database-hosting-section .cta-content h2 {
    font-size: 35px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.solution-database-hosting-section .cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 48px;
}

.solution-database-hosting-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.solution-database-hosting-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
}

.solution-database-hosting-section .btn-primary {
    background: #ffffff;
    color: #0d234b;
}

.solution-database-hosting-section .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(13, 35, 75, 0.12);
}

.solution-database-hosting-section .btn-primary svg {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .btn-primary:hover svg {
    transform: translateX(4px);
}

.solution-database-hosting-section .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.solution-database-hosting-section .btn-secondary:hover {
    background: #ffffff;
    color: #0d234b;
    transform: translateY(-4px);
}

/* Section FAQ */
.solution-database-hosting-section .section-faq {
    padding: 50px 0;
    background: #ffffff;
}

.solution-database-hosting-section .faq-list {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-database-hosting-section .faq-item {
    background: #ffffff;
    border: 2px solid #e9ecf0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .faq-item:hover {
    border-color: #184780;
}

.solution-database-hosting-section .faq-item[open] {
    border-color: #184780;
    box-shadow: 0 4px 16px rgba(13, 35, 75, 0.1);
}

.solution-database-hosting-section .faq-item summary {
    padding: 24px 28px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #0d234b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-database-hosting-section .faq-item summary:hover {
    background: #e5f2ff;
}

.solution-database-hosting-section .faq-item summary i {
    flex-shrink: 0;
    color: #184780;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
}

.solution-database-hosting-section .faq-item[open] summary i {
    transform: rotate(180deg);
}

.solution-database-hosting-section .faq-answer {
    padding: 0 28px 28px;
    animation: slideDown 0.3s ease;
}

.solution-database-hosting-section .faq-answer p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solution-database-hosting-section .intro-wrapper,
    .solution-database-hosting-section .use-case-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .solution-database-hosting-section .traps-grid,
    .solution-database-hosting-section .fortress-grid,
    .solution-database-hosting-section .hardware-grid,
    .solution-database-hosting-section .db-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-database-hosting-section .advantage-item {
        grid-template-columns: 60px 1fr;
    }
    
    .solution-database-hosting-section .advantage-visual {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .solution-database-hosting-section .section-header h2,
    .solution-database-hosting-section .intro-content h2,
    .solution-database-hosting-section .use-case-content h2,
    .solution-database-hosting-section .cta-content h2 {
        font-size: 30px;
    }
    
    .solution-database-hosting-section .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .solution-database-hosting-section .traps-grid,
    .solution-database-hosting-section .fortress-grid,
    .solution-database-hosting-section .hardware-grid,
    .solution-database-hosting-section .db-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-database-hosting-section .advantage-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .solution-database-hosting-section .advantage-icon {
        margin: 0 auto;
    }
    
    .solution-database-hosting-section .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .solution-database-hosting-section .btn {
        justify-content: center;
    }
}
/*solution-database-hosting-section*/

/*solution-email-server-section*/
.solution-email-server-section .container {
            width: 100%;
            max-width: 1500px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .solution-email-server-section .section {
            padding: 50px 0;
            overflow: hidden; 
        }

        .solution-email-server-section .section:nth-of-type(even) {
            background-color: #e5f2ff;
        }

        .solution-email-server-section .section-header {
            margin-bottom: 15px;
        }

        .solution-email-server-section .section-header.centered {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .solution-email-server-section .section-badge {
            display: inline-block;
            padding: 0.35rem 0.85rem;
            background-color: #e5f2ff;
            color: #184780;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid #e2e8f0;
        }
        
        .solution-email-server-section .section:nth-of-type(even) .section-badge {
            background-color: #ffffff;
        }

        .solution-email-server-section .section-badge.danger {
            background-color: #fff1f2;
            color: #be123c;
            border-color: #fecdd3;
        }

        .solution-email-server-section .section-title {
            font-size: 35px;
            font-weight: 800;
            color: #0d234b;
            margin-bottom: 1rem;
        }

        .solution-email-server-section .intro-text {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 1100px;
        }

        .solution-email-server-section .section-header.centered .intro-text {
            margin-left: auto;
            margin-right: auto;
        }

        .solution-email-server-section .section-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 0.75rem;
        }

        .solution-email-server-section .button {
            display: inline-block;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.875rem 2rem;
            border-radius: 9999px;
            border: 2px solid transparent;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .solution-email-server-section .button.primary-large {
            background-color: #184780;
            color: #ffffff;
            font-size: 1.125rem;
            padding: 1rem 2.5rem;
        }
        .solution-email-server-section .button.primary-large:hover {
            background-color: #0d234b;
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            text-decoration: none;
        }

        .solution-email-server-section .button.secondary {
            background-color: transparent;
            color: #184780;
            border-color: #184780;
        }
        .solution-email-server-section .button.secondary:hover {
            background-color: #184780;
            color: #ffffff;
            text-decoration: none;
        }
        
        .solution-email-server-section .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .solution-email-server-section .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .solution-email-server-section .reputation-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .solution-email-server-section .highlight-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem;
            background-color: #e5f2ff;
            border-radius: 0.5rem;
            margin: 2rem 0;
        }

        .solution-email-server-section .highlight-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            background-color: #184780;
            color: #ffffff;
            border-radius: 50%;
        }
        .solution-email-server-section .highlight-text {
            font-size: 1.125rem;
            font-weight: 600;
            color: #0d234b;
            margin: 0;
        }

        .solution-email-server-section .comparison-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .solution-email-server-section .comparison-card {
            padding: 2rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.75rem;
            background-color: #ffffff;
            box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        }
        
        .solution-email-server-section .comparison-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        .solution-email-server-section .comparison-card p {
            margin: 0;
            color: #64748b;
        }

        .solution-email-server-section .card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }
        .solution-email-server-section .card-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 0.5rem;
        }
        .solution-email-server-section .card-icon.shared-icon {
            background-color: #fff1f2;
            color: #be123c;
        }

        .solution-email-server-section .card-icon.shared-icon i, 
        .solution-email-server-section .card-icon.dedicated-icon i{
            font-size: 23px;
        }

        .solution-email-server-section .card-icon.dedicated-icon {
            background-color: #e5f2ff;
            color: #184780;
        }

        .solution-email-server-section .trap-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .solution-email-server-section .problem-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .solution-email-server-section .problem-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .solution-email-server-section .problem-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0d234b;
            line-height: 1.2;
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }
        .solution-email-server-section .problem-content p {
            margin: 0;
            font-size: 1.125rem;
            font-style: italic;
            color: #0d234b;
            padding-top: 0.5rem;
        }

        .solution-email-server-section .emphasis-box {
            padding: 1.5rem;
            background-color: #ffffff;
            border-radius: 0.5rem;
            border-left: 4px solid #184780;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        }
        .solution-email-server-section .emphasis-text {
            margin: 0;
            font-weight: 600;
            color: #0d234b;
        }

        .solution-email-server-section .trap-visual .image-stack {
            position: relative;
            padding: 1rem;
        }
        .solution-email-server-section .stack-background {
            position: absolute;
            inset: 0;
            background-color: #184780;
            border-radius: 0.75rem;
            transform: rotate(-3deg);
            opacity: 0.1;
        }
        .solution-email-server-section .trap-visual .section-image {
            position: relative;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        
        .solution-email-server-section .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .solution-email-server-section .feature-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 0.75rem;
            padding: 2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .solution-email-server-section .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        
        .solution-email-server-section .feature-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .solution-email-server-section .feature-icon {
            width: 56px;
            height: 56px;
            display: grid;
            place-items: center;
            background-color: #e5f2ff;
            color: #184780;
            border-radius: 0.5rem;
        }
        .solution-email-server-section .feature-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: #dedede;
        }
        .solution-email-server-section .feature-card h3 {
            font-size: 1.375rem;
        }
        .solution-email-server-section .feature-card p {
            margin: 0;
            color: #64748b;
        }

        .solution-email-server-section .highlight-banner {
            background-color: #ffffff;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            margin: 2rem 0 3rem;
            text-align: center;
        }
        .solution-email-server-section .highlight-banner p {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 600;
            color: #0d234b;
        }

        .solution-email-server-section .auth-timeline {
            position: relative;
            margin: 2rem auto 0;
        }
        .solution-email-server-section .auth-step {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 2rem;
            position: relative;
        }

        .solution-email-server-section .step-visual {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 60px;
        }
        .solution-email-server-section .step-circle {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
            display: grid;
            place-items: center;
            background-color: #184780;
            color: #ffffff;
            border-radius: 50%;
            border: 4px solid #ffffff;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            z-index: 1;
        }
        .solution-email-server-section .step-number {
            font-size: 1.75rem;
            font-weight: 700;
        }
        .solution-email-server-section .step-line {
            width: 3px;
            flex-grow: 1;
            background-color: #e2e8f0;
            margin: -2px 0;
        }
        .solution-email-server-section .auth-step:last-child .step-line {
            display: none;
        }
        .solution-email-server-section .auth-step:last-child {
            padding-bottom: 0;
        }

        .solution-email-server-section .step-content {
            background-color: #ffffff;
            border-radius: 0.75rem;
            border: 1px solid #e2e8f0;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            margin-bottom: 2rem;
        }
        .solution-email-server-section .step-header {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .solution-email-server-section .step-header h3 {
            margin: 0;
            font-size: 1.5rem;
        }
        .solution-email-server-section .step-label {
            font-weight: 600;
            font-size: 0.875rem;
            background-color: #e5f2ff;
            color: #184780;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            border: 1px solid #e2e8f0;
            flex-shrink: 0;
            align-self: flex-start;
        }
        .solution-email-server-section .step-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .solution-email-server-section .detail-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }
        .solution-email-server-section .detail-label {
            font-weight: 600;
            color: #0d234b;
        }
        .solution-email-server-section .detail-row p {
            margin: 0;
            color: #64748b;
        }
        
        .solution-email-server-section .expert-note {
            display: grid;
            grid-template-columns: 1fr;
            background-color: #ffffff;
            border-radius: 0.75rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            overflow: hidden;
        }
        .solution-email-server-section .note-content {
            padding: 20px;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        .solution-email-server-section .note-icon {
            flex-shrink: 0;
            color: #16a34a;
            background-color: #f0fdf4;
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 50%;
        }
        .solution-email-server-section .note-icon i {
            font-size: 27px;
        }
        .solution-email-server-section .note-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #0d234b;
            margin: 0 0 0.5rem 0;
        }
        .solution-email-server-section .note-content p {
            margin: 0;
        }

        .solution-email-server-section .software-category {
            margin-bottom: 4rem;
        }
        .solution-email-server-section .category-header {
            text-align: left;
            margin: 0 auto 2.5rem auto;
        }
        .solution-email-server-section .category-title {
            font-size: 2rem;
        }
        .solution-email-server-section .category-description {
            font-size: 1.125rem;
            color: #64748b;
        }

        .solution-email-server-section .software-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .solution-email-server-section .software-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 0.75rem;
            padding: 2rem;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .solution-email-server-section .software-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        .solution-email-server-section .software-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            background-color: #e5f2ff;
            color: #184780;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            border: 1px solid #e2e8f0;
        }
        .solution-email-server-section .software-icon {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0d234b;
            background-color: #e9ecf0;
            width: 60px;
            height: 60px;
            display: grid;
            place-items: center;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .solution-email-server-section .software-card h4 {
            font-size: 1.375rem;
            margin-bottom: 0.5rem;
        }
        .solution-email-server-section .software-card p {
            margin: 0;
            color: #64748b;
        }

        .solution-email-server-section .audience-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .solution-email-server-section .audience-card {
            background-color: #ffffff;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .solution-email-server-section .audience-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        .solution-email-server-section .audience-image-wrapper {
            position: relative;
            height: 200px;
        }
        .solution-email-server-section .audience-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .solution-email-server-section .audience-overlay {
            position: absolute;
            inset: 0;
            background-color: #0d234b;
            opacity: 0.6;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .solution-email-server-section .audience-card:hover .audience-overlay {
            opacity: 0.4;
        }
        .solution-email-server-section .audience-icon {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            color: #ffffff;
            border-radius: 0.5rem;
        }
        .solution-email-server-section .audience-icon i {
            font-size: 25px;
        }
        .solution-email-server-section .audience-content {
            padding: 1.5rem;
        }
        .solution-email-server-section .audience-content h3 {
            font-size: 1.25rem;
        }
        .solution-email-server-section .audience-content p {
            margin: 0;
            color: #64748b;
        }

        .solution-email-server-section .hardware-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: stretch;
        }

        .solution-email-server-section .hardware-card {
            display: flex;
            flex-direction: column;
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .solution-email-server-section .hardware-card.featured {
            border: 2px solid #184780;
            position: relative;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        .solution-email-server-section .featured-badge {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #184780;
            color: #ffffff;
            padding: 0.35rem 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 0 0 0.5rem 0.5rem;
        }

        .solution-email-server-section .hardware-header {
            padding: 2rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .solution-email-server-section .hardware-badge {
            display: inline-block;
            font-weight: 600;
            color: #184780;
            margin-bottom: 0.5rem;
        }
        .solution-email-server-section .hardware-header h3 {
            font-size: 1.5rem;
            margin: 0;
        }

        .solution-email-server-section .hardware-body {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .solution-email-server-section .hardware-for {
            margin-bottom: 2rem;
        }
        .solution-email-server-section .hardware-for .label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #64748b;
            margin-bottom: 0.25rem;
        }
        .solution-email-server-section .hardware-for p {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: #0d234b;
        }

        .solution-email-server-section .hardware-specs {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: auto;
        }
        .solution-email-server-section .spec-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .solution-email-server-section .spec-item i {
            color: #184780;
            font-size: 20px;
        }
        .solution-email-server-section .spec-label {
            display: block;
            font-size: 0.875rem;
            color: #64748b;
        }
        .solution-email-server-section .spec-value {
            display: block;
            font-weight: 600;
            color: #0d234b;
        }
        
        .solution-email-server-section .cta-wrapper {
            text-align: center;
            margin-top: 3rem;
            background: #ffffff;
        }

        .solution-email-server-section .final-cta-section {
            background-color: #ffffff !important;
        }

        .solution-email-server-section .final-cta-section .container{
            background-color: #0d234b;
            color: #ffffff;
            padding: 50px;
            border-radius: 20px;
        }
        .solution-email-server-section .final-cta-section .section-title,
        .solution-email-server-section .final-cta-section .intro-text {
            color: #ffffff;
        }
        .solution-email-server-section .final-cta-section .intro-text {
            color: #e9ecf0;
            opacity: 0.9;
            margin: 0 auto;
        }

        .solution-email-server-section .final-cta-section .cta-content {
            text-align: center;
        }

        .solution-email-server-section .cta-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .solution-email-server-section .cta-content .button {
            margin-top: 1rem;
        }
        .solution-email-server-section .cta-content .button.primary-large:hover {
            background-color: #ffffff;
            color: #184780;
        }
        
        .solution-email-server-section .cta-visual .cta-image {
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            height: 100%;
            max-height: 400px;
        }
        
        .solution-email-server-section .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .solution-email-server-section .faq-item {
            background-color: #e5f2ff;
            border: 1px solid #e2e8f0;
            border-radius: 0.75rem;
        }
        
        .solution-email-server-section .faq-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 20px;
            cursor: pointer;
            user-select: none;
        }
        .solution-email-server-section .faq-header h3 {
            font-size: 1.125rem;
            margin: 0;
            flex-grow: 1;
        }
        
        .solution-email-server-section .faq-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            display: grid;
            place-items: center;
            background-color: #ffffff;
            color: #184780;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .solution-email-server-section .faq-item p {
            margin: 0;
            color: #334155;
            font-size: 0.95rem;
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        }
        
        .solution-email-server-section .faq-item.active .faq-header {
            padding-bottom: 1rem;
        }
        .solution-email-server-section .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        .solution-email-server-section .faq-item.active p {
            max-height: 300px;
            padding-top: 0;
            padding-bottom: 1.5rem;
        }

        /* ========================================
           RESPONSIVE STYLES - MOBILE FIRST
        ======================================== */

        /* Small Mobile Devices (320px - 479px) */
        @media (max-width: 479px) {
            .solution-email-server-section .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .solution-email-server-section .section {
                padding: 30px 0;
            }

            .solution-email-server-section .section-title {
                font-size: 24px;
                line-height: 1.3;
            }

            .solution-email-server-section .intro-text {
                font-size: 0.95rem;
            }

            .solution-email-server-section .button {
                font-size: 0.875rem;
                padding: 0.75rem 1.5rem;
                width: 100%;
                text-align: center;
            }

            .solution-email-server-section .button.primary-large {
                font-size: 1rem;
                padding: 0.875rem 1.75rem;
            }

            .solution-email-server-section .highlight-text {
                font-size: 1rem;
            }

            .solution-email-server-section .comparison-card {
                padding: 1.25rem;
            }

            .solution-email-server-section .comparison-card h3 {
                font-size: 1.1rem;
            }

            .solution-email-server-section .problem-item {
                gap: 1rem;
            }

            .solution-email-server-section .problem-number {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
            }

            .solution-email-server-section .problem-content p {
                font-size: 1rem;
            }

            .solution-email-server-section .emphasis-box {
                padding: 1rem;
            }

            .solution-email-server-section .feature-card {
                padding: 1.5rem;
            }

            .solution-email-server-section .feature-card h3 {
                font-size: 1.125rem;
            }

            .solution-email-server-section .feature-icon {
                width: 48px;
                height: 48px;
            }

            .solution-email-server-section .step-content {
                padding: 1.25rem;
            }

            .solution-email-server-section .step-header h3 {
                font-size: 1.25rem;
            }

            .solution-email-server-section .auth-step {
                gap: 1rem;
            }

            .solution-email-server-section .step-visual {
                width: 50px;
            }

            .solution-email-server-section .step-circle {
                width: 50px;
                height: 50px;
            }

            .solution-email-server-section .step-number {
                font-size: 1.5rem;
            }

            .solution-email-server-section .note-content {
                padding: 15px;
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .solution-email-server-section .category-title {
                font-size: 1.5rem;
            }

            .solution-email-server-section .category-description {
                font-size: 1rem;
            }

            .solution-email-server-section .software-card {
                padding: 1.5rem;
            }

            .solution-email-server-section .software-card h4 {
                font-size: 1.125rem;
                margin-right: 80px;
            }

            .solution-email-server-section .hardware-header,
            .solution-email-server-section .hardware-body {
                padding: 1.5rem;
            }

            .solution-email-server-section .hardware-card.featured {
                transform: scale(1);
            }

            .solution-email-server-section .final-cta-section .container {
                padding: 30px 20px;
                border-radius: 15px;
            }

            .solution-email-server-section .faq-header {
                padding: 15px;
            }

            .solution-email-server-section .faq-header h3 {
                font-size: 1rem;
            }

            .solution-email-server-section .faq-item p {
                padding: 0 1rem;
                font-size: 0.875rem;
            }

            .solution-email-server-section .faq-item.active p {
                padding-bottom: 1rem;
            }
        }

        /* Mobile Devices (480px - 767px) */
        @media (min-width: 480px) and (max-width: 767px) {
            .solution-email-server-section .section-title {
                font-size: 28px;
            }

            .solution-email-server-section .intro-text {
                font-size: 1rem;
            }

            .solution-email-server-section .comparison-wrapper {
                gap: 1.25rem;
            }

            .solution-email-server-section .features-grid {
                grid-template-columns: 1fr;
            }

            .solution-email-server-section .software-card h4 {
                margin-right: 100px;
            }
        }

        /* Tablets (768px - 1023px) */
        @media (min-width: 768px) {
            .solution-email-server-section .comparison-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-email-server-section .trap-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-email-server-section .trap-visual {
                order: -1;
            }

            .solution-email-server-section .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-email-server-section .detail-row {
                grid-template-columns: 130px 1fr;
                gap: 1rem;
            }

            .solution-email-server-section .note-content {
                padding: 20px 30px;
            }

            .solution-email-server-section .software-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-email-server-section .audience-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-email-server-section .hardware-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-email-server-section .step-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .solution-email-server-section .step-label {
                align-self: auto;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .solution-email-server-section .section-title {
                font-size: 30px;
            }

            .solution-email-server-section .category-title {
                font-size: 1.75rem;
            }

            .solution-email-server-section .hardware-card.featured {
                transform: scale(1.01);
            }
        }

        /* Large Tablets & Small Desktops (1024px - 1279px) */
        @media (min-width: 1024px) {
            .solution-email-server-section .comparison-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-email-server-section .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-email-server-section .software-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .solution-email-server-section .audience-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .solution-email-server-section .hardware-cards {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Desktops (1280px and above) */
        @media (min-width: 1280px) {
            .solution-email-server-section .features-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1400px) {
            .solution-email-server-section .software-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Hover effects only on non-touch devices */
        @media (hover: hover) and (pointer: fine) {
            .solution-email-server-section .button:hover {
                transform: translateY(-2px);
            }

            .solution-email-server-section .feature-card:hover,
            .solution-email-server-section .software-card:hover,
            .solution-email-server-section .audience-card:hover {
                transform: translateY(-5px);
            }
        }

        /* Remove hover transforms on touch devices */
        @media (hover: none) {
            .solution-email-server-section .button.primary-large:hover {
                transform: none;
            }

            .solution-email-server-section .feature-card:hover,
            .solution-email-server-section .software-card:hover,
            .solution-email-server-section .audience-card:hover {
                transform: none;
            }
        }

        /* Fix for very small screens */
        @media (max-width: 360px) {
            .solution-email-server-section .section-title {
                font-size: 22px;
            }

            .solution-email-server-section .card-icon {
                width: 40px;
                height: 40px;
            }

            .solution-email-server-section .card-icon i {
                font-size: 18px;
            }

            .solution-email-server-section .highlight-icon {
                width: 36px;
                height: 36px;
            }
        }
/*solution-email-server-section*/


/*solution-gaming-servers*/
.solution-gaming-servers .container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Intro Section */
    .solution-gaming-servers .intro-section {
        padding: 50px 0;
        background: #ffffff;
        position: relative;
    }

    .solution-gaming-servers .intro-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto 30px;
    }

    .solution-gaming-servers .section-badge {
        display: inline-block;
        padding: 8px 20px;
        background: #e5f2ff;
        color: #184780;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    .solution-gaming-servers .section-title {
        font-size: 35px;
        font-weight: 800;
        color: #0d234b;
        margin-bottom: 32px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .solution-gaming-servers .subtitle-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .solution-gaming-servers .subtitle-wrapper p {
        font-size: 1.125rem;
        color: #184780;
        line-height: 1.8;
    }

    .solution-gaming-servers .games-header {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .solution-gaming-servers .games-title {
        font-size: 2rem;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 16px;
    }

    .solution-gaming-servers .games-decoration {
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #184780, #0d234b);
        margin: 0 auto;
        border-radius: 2px;
    }

    /* Tabs Layout */
    .solution-gaming-servers .tabs-layout {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 48px;
        margin-top: 35px;
    }

    .solution-gaming-servers .tabs-sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }

    .solution-gaming-servers .game-tabs-nav {
        display: flex;
        flex-direction: column;
        gap: 12px;
        background: #ffffff;
        padding: 16px;
        border-radius: 20px;
        border: 2px solid #e9ecf0;
    }

    .solution-gaming-servers .tab-button {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 20px;
        background: #ffffff;
        border: 2px solid #e9ecf0;
        border-radius: 14px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 1rem;
        font-weight: 600;
        color: #0d234b;
        text-align: left;
        position: relative;
        overflow: hidden;
    }

    .solution-gaming-servers .tab-button::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(135deg, #184780, #0d234b);
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 0;
    }

    .solution-gaming-servers .tab-button:hover {
        border-color: #184780;
        transform: translateX(8px);
    }

    .solution-gaming-servers .tab-button:hover::before {
        width: 4px;
    }

    .solution-gaming-servers .tab-button.active {
        background: linear-gradient(135deg, #184780, #0d234b);
        color: #ffffff;
        border-color: transparent;
        box-shadow: 0 8px 24px rgba(24, 71, 128, 0.2);
        transform: translateX(8px);
    }

    .solution-gaming-servers .tab-button.active::before {
        width: 0;
    }

    .solution-gaming-servers .tab-icon {
        font-size: 1.5rem;
        min-width: 28px;
        position: relative;
        z-index: 1;
    }

    .solution-gaming-servers .tab-text {
        flex: 1;
        position: relative;
        z-index: 1;
    }

    .solution-gaming-servers .tab-arrow {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }

    .solution-gaming-servers .tab-button:hover .tab-arrow,
    .solution-gaming-servers .tab-button.active .tab-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    /* Content Area */
    .solution-gaming-servers .content-area {
        position: relative;
        min-height: 700px;
    }

    .solution-gaming-servers .game-content-panel {
        display: none;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .solution-gaming-servers .game-content-panel.active {
        display: block;
    }

    .solution-gaming-servers .game-content-panel.fade-in {
        opacity: 1;
        transform: translateY(0);
    }

    .solution-gaming-servers .game-card {
        background: #ffffff;
        border-radius: 24px;
        overflow: hidden;
        border: 2px solid #e9ecf0;
        transition: all 0.3s ease;
    }

    .solution-gaming-servers .game-card:hover {
        border-color: #e5f2ff;
        box-shadow: 0 20px 60px rgba(13, 35, 75, 0.08);
    }

    .solution-gaming-servers .game-image-wrapper {
        position: relative;
        width: 100%;
        height: 350px;
        overflow: hidden;
    }

    .solution-gaming-servers .game-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .solution-gaming-servers .game-card:hover .game-image {
        transform: scale(1.08);
    }

    .solution-gaming-servers .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(13, 35, 75, 0) 0%, rgba(13, 35, 75, 0.6) 100%);
        display: flex;
        align-items: flex-end;
        padding: 32px;
    }

    .solution-gaming-servers .game-badge {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 10px 24px;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 700;
        color: #0d234b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .solution-gaming-servers .game-info {
        padding: 25px 48px;
    }

    .solution-gaming-servers .game-title {
        font-size: 25px;
        font-weight: 800;
        color: #0d234b;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }

    .solution-gaming-servers .game-description {
        font-size: 16px;
        color: #184780;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    /* Specifications */
    .solution-gaming-servers .specs-container {
        background: #e5f2ff;
        border-radius: 20px;
        padding: 20px 36px;
        margin-bottom: 32px;
        border: 2px solid #e9ecf0;
    }

    .solution-gaming-servers .specs-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 13px;
    }

    .solution-gaming-servers .specs-icon {
        color: #184780;
    }

    .solution-gaming-servers .specs-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0d234b;
    }

    .solution-gaming-servers .specs-grid {
        display: grid;
        grid-template-columns: 1fr;
        border: 2px solid #e9ecf0;
        background: #ffffff;
        border-radius: 12px;
    }

    .solution-gaming-servers .spec-card {
        display: flex;
        padding: 9px 20px;
        transition: all 0.3s ease;
    }

    .solution-gaming-servers .spec-label {
        font-weight: 700;
        color: #0d234b;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    .solution-gaming-servers .spec-label::after {
        content: ': ';
    }

    .solution-gaming-servers .spec-value {
        color: #184780;
        font-size: 1rem;
        line-height: 1.6;
    }

    .solution-gaming-servers .spec-value::before {
        content: '\2002';
    }

    /* Advantage Box */
    .solution-gaming-servers .advantage-box {
        display: flex;
        gap: 24px;
        align-items: start;
        background: linear-gradient(135deg, #184780, #0d234b);
        color: #ffffff;
        padding: 17px 28px;
        border-radius: 20px;
        box-shadow: 0 12px 32px rgba(24, 71, 128, 0.25);
        position: relative;
        overflow: hidden;
    }

    .solution-gaming-servers .advantage-box::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .solution-gaming-servers .advantage-icon {
        font-size: 2.5rem;
        min-width: 48px;
        position: relative;
        z-index: 1;
    }

    .solution-gaming-servers .advantage-content {
        flex: 1;
        position: relative;
        z-index: 1;
    }

    .solution-gaming-servers .advantage-content strong {
        display: block;
        margin-bottom: 12px;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .solution-gaming-servers .advantage-content p {
        font-size: 1rem;
        line-height: 1.7;
        opacity: 0.95;
        color: white;
    }

    /* Beyond the Game Section */
    .solution-gaming-servers .beyond-game-section {
        padding: 0 0 50px;
        background: #ffffff;
        position: relative;
    }

    .solution-gaming-servers .beyond-game-section::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 400px;
        background: linear-gradient(0deg, #e5f2ff 0%, rgba(229, 242, 255, 0) 100%);
        z-index: 0;
    }

    .solution-gaming-servers .beyond-content {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .solution-gaming-servers .beyond-text .section-badge {
        margin-bottom: 20px;
    }

    .solution-gaming-servers .beyond-text .section-title {
        text-align: left;
        margin-bottom: 28px;
    }

    .solution-gaming-servers .beyond-intro {
        font-size: 1.25rem;
        color: #184780;
        margin-bottom: 15px;
        line-height: 1.8;
        font-weight: 500;
    }

    .solution-gaming-servers .features-grid {
        display: grid;
        gap: 10px;
    }

    .solution-gaming-servers .feature-card {
        display: flex;
        gap: 20px;
        padding: 35px;
        background: #ffffff;
        border: 2px solid #e9ecf0;
        border-radius: 20px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .solution-gaming-servers .feature-card:hover {
        border-color: #184780;
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(13, 35, 75, 0.1);
    }

    .solution-gaming-servers .feature-icon-wrapper {
        min-width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #e5f2ff, #e9ecf0);
        border-radius: 16px;
        font-size: 1.75rem;
    }

    .solution-gaming-servers .feature-content {
        flex: 1;
    }

    .solution-gaming-servers .feature-title {
        font-size: 1.125rem;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 20px;
    }

    .solution-gaming-servers .feature-text {
        font-size: 1rem;
        color: #184780;
        line-height: 1.6;
    }

    .solution-gaming-servers .cta-section {
        margin-top: 30px;
    }

    .solution-gaming-servers .cta-prompt {
        font-size: 28px;
        font-weight: 700;
        color: #0d234b;
        margin-bottom: 32px;
    }

    .solution-gaming-servers .cta-buttons-container {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .solution-gaming-servers .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 18px 36px;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 14px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        border: 2px solid transparent;
    }

    .solution-gaming-servers .cta-button svg {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .solution-gaming-servers .cta-button-primary {
        background: linear-gradient(135deg, #184780, #0d234b);
        color: #ffffff;
        box-shadow: 0 8px 24px rgba(24, 71, 128, 0.25);
    }

    .solution-gaming-servers .cta-button-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(24, 71, 128, 0.35);
    }

    .solution-gaming-servers .cta-button-primary:hover svg {
        transform: translateX(4px);
    }

    .solution-gaming-servers .cta-button-secondary {
        background: #ffffff;
        color: #0d234b;
        border-color: #0d234b;
    }

    .solution-gaming-servers .cta-button-secondary:hover {
        background: #0d234b;
        color: #ffffff;
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(13, 35, 75, 0.2);
    }

    .solution-gaming-servers .beyond-visual {
        position: relative;
    }

    .solution-gaming-servers .visual-card {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        border: 2px solid #e9ecf0;
    }

    .solution-gaming-servers .infrastructure-image {
        width: 100%;
        height: 600px;
        object-fit: cover;
        display: block;
    }

    .solution-gaming-servers .visual-stats {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-top: 2px solid #e9ecf0;
    }

    .solution-gaming-servers .stat-item {
        padding: 28px 20px;
        text-align: center;
        border-right: 2px solid #e9ecf0;
    }

    .solution-gaming-servers .stat-item:last-child {
        border-right: none;
    }

    .solution-gaming-servers .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: #0d234b;
        margin-bottom: 8px;
        letter-spacing: -0.5px;
    }

    .solution-gaming-servers .stat-label {
        font-size: 0.875rem;
        color: #184780;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .solution-gaming-servers .tabs-layout {
            grid-template-columns: 280px 1fr;
            gap: 36px;
        }

        .solution-gaming-servers .game-info {
            padding: 40px;
        }
    }

    @media (max-width: 992px) {
        .solution-gaming-servers .section-title {
            font-size: 2.5rem;
        }

        .solution-gaming-servers .tabs-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .solution-gaming-servers .tabs-sidebar {
            position: relative;
            top: 0;
        }

        .solution-gaming-servers .game-tabs-nav {
            flex-direction: row;
            overflow-x: auto;
            gap: 12px;
            padding: 16px;
            border: none;
            background: transparent;
        }

        .solution-gaming-servers .tab-button {
            min-width: 200px;
            flex-shrink: 0;
        }

        .solution-gaming-servers .tab-button:hover,
        .solution-gaming-servers .tab-button.active {
            transform: none;
        }

        .solution-gaming-servers .beyond-content {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .solution-gaming-servers .infrastructure-image {
            height: 500px;
        }
    }

    @media (max-width: 768px) {
        .solution-gaming-servers .intro-section {
            padding: 60px 0 40px;
        }

        .solution-gaming-servers .section-title {
            font-size: 2rem;
        }

        .solution-gaming-servers .subtitle-wrapper p {
            font-size: 1rem;
        }

        .solution-gaming-servers .game-image-wrapper {
            height: 300px;
        }

        .solution-gaming-servers .game-info {
            padding: 32px 24px;
        }

        .solution-gaming-servers .game-title {
            font-size: 1.75rem;
        }

        .solution-gaming-servers .specs-grid {
            grid-template-columns: 1fr;
        }

        .solution-gaming-servers .advantage-box {
            flex-direction: column;
            gap: 20px;
            padding: 28px;
        }

        .solution-gaming-servers .cta-buttons-container {
            flex-direction: column;
        }

        .solution-gaming-servers .cta-button {
            width: 100%;
            justify-content: center;
        }

        .solution-gaming-servers .beyond-game-section {
            padding: 80px 0;
        }

        .solution-gaming-servers .infrastructure-image {
            height: 400px;
        }

        .solution-gaming-servers .visual-stats {
            grid-template-columns: 1fr;
        }

        .solution-gaming-servers .stat-item {
            border-right: none;
            border-bottom: 2px solid #e9ecf0;
        }

        .solution-gaming-servers .stat-item:last-child {
            border-bottom: none;
        }
    }

    @media (max-width: 480px) {
        .solution-gaming-servers .section-title {
            font-size: 1.75rem;
        }

        .solution-gaming-servers .game-tabs-nav {
            flex-direction: column;
        }

        .solution-gaming-servers .tab-button {
            min-width: 100%;
        }

        .solution-gaming-servers .game-info {
            padding: 24px 20px;
        }

        .solution-gaming-servers .game-title {
            font-size: 1.5rem;
        }

        .solution-gaming-servers .feature-card {
            flex-direction: column;
            padding: 24px;
        }

        .solution-gaming-servers .cta-prompt {
            font-size: 1.25rem;
        }
    }

    /* --- Problem Section --- */
.solution-gaming-servers .problem-section {
    /* Add padding to the top; bottom padding will come from problem-content */
    padding: 50px 0 0;
    background: #ffffff;
    position: relative;
}

/* This creates the same top gradient as your existing intro-section */
.solution-gaming-servers .problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, #e5f2ff 0%, rgba(229, 242, 255, 0) 100%);
    z-index: 0;
}

.solution-gaming-servers .problem-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    /* Adds space before the next section begins */
    padding-bottom: 50px;
}

/* Styles the main introductory paragraph of the problem section */
.solution-gaming-servers .problem-content > p {
    font-size: 1.125rem;
    color: #184780;
    line-height: 1.8;
    /* Keep the paragraph from getting too wide on large screens */
    max-width: 900px;
    /* Center the paragraph and add space below it */
    margin: 0 auto 40px auto;
}

/* Your .features-grid styles will be inherited.
   We just add a left-align reset since the parent is centered. */
.solution-gaming-servers .problem-section .features-grid {
    text-align: left;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Styles the bolded game names inside the feature cards */
.solution-gaming-servers .problem-section .feature-text b {
    color: #0d234b;
    font-weight: 700;
}

/* Styles for the final summary/bridge paragraph box */
.solution-gaming-servers .problem-solution-bridge {
    margin-top: 40px;
    padding: 28px 36px;
    background: #e5f2ff;
    border-radius: 20px;
    border: 2px solid #e9ecf0;
}

.solution-gaming-servers .problem-solution-bridge p {
    font-size: 1.125rem;
    font-weight: 500;
    color: #0d234b;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}
/*solution-gaming-servers*/

/*solution-blockchain-servers*/
.solution-blockchain-server-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.solution-blockchain-server-section .section-title {
    font-size: 35px;
    font-weight: 700;
    color: #0d234b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.solution-blockchain-server-section .section-subtitle {
    font-size: 1.25rem;
    color: #184780;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.solution-blockchain-server-section .section-intro {
    font-size: 1.125rem;
    color: #184780;
    max-width: 1100px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.solution-blockchain-server-section .section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    color: #184780;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border: 2px solid rgba(24, 71, 128, 0.1);
}

.solution-blockchain-server-section .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.solution-blockchain-server-section .header-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(24, 71, 128, 0.1);
}

.solution-blockchain-server-section .header-icon svg {
    width: 32px;
    height: 32px;
    stroke: #184780;
    stroke-width: 2;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"].animated {
    animation-name: fadeUp;
}

[data-animate="fade-left"].animated {
    animation-name: fadeLeft;
}

[data-animate="fade-right"].animated {
    animation-name: fadeRight;
}

[data-animate="zoom-in"].animated {
    animation-name: zoomIn;
}

/* ========================================
Intro Section
======================================== */
.solution-blockchain-server-section .intro-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e9ecf0 100%);
    position: relative;
    overflow: hidden;
}

.solution-blockchain-server-section .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-blockchain-server-section .intro-content {
    padding-right: 20px;
}

.solution-blockchain-server-section .intro-text {
    font-size: 1.125rem;
    color: #184780;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.solution-blockchain-server-section .intro-image-container {
    position: relative;
}

.solution-blockchain-server-section .intro-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 35, 75, 0.15);
}

.solution-blockchain-server-section .intro-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.solution-blockchain-server-section .intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 35, 75, 0.3) 0%, rgba(24, 71, 128, 0.2) 100%);
}

.solution-blockchain-server-section .sla-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(13, 35, 75, 0.2);
    border: 2px solid rgba(24, 71, 128, 0.1);
}

.solution-blockchain-server-section .sla-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.solution-blockchain-server-section .sla-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d234b;
    line-height: 1;
}

.solution-blockchain-server-section .sla-label {
    display: block;
    font-size: 0.875rem;
    color: #184780;
    margin-top: 0.25rem;
}

/* ========================================
Bedrock Section
======================================== */
.solution-blockchain-server-section .bedrock-section {
    padding: 50px 0;
    background: #ffffff;
}

.solution-blockchain-server-section .bedrock-main-card {
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 25px;
    border: 2px solid rgba(24, 71, 128, 0.1);
}

.solution-blockchain-server-section .bedrock-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-blockchain-server-section .bedrock-intro {
    font-size: 1.125rem;
    color: #184780;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.solution-blockchain-server-section .bedrock-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.solution-blockchain-server-section .bedrock-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.solution-blockchain-server-section .feature-icon {
    width: fit-content;
    height: fit-content;
    min-width: fit-content;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(24, 71, 128, 0.1);
}

.solution-blockchain-server-section .feature-icon i {
    color: #184780;
}

.solution-blockchain-server-section .feature-text h4 {
    font-size: 1.25rem;
    color: #0d234b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.solution-blockchain-server-section .feature-text p {
    font-size: 1rem;
    color: #184780;
    line-height: 1.7;
}

.solution-blockchain-server-section .bedrock-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(13, 35, 75, 0.15);
}

.solution-blockchain-server-section .bedrock-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.solution-blockchain-server-section .bedrock-secondary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.solution-blockchain-server-section .bedrock-card {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 20px;
    border: 2px solid #e9ecf0;
    transition: all 0.3s ease;
}

.solution-blockchain-server-section .bedrock-card:hover {
    border-color: #184780;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(13, 35, 75, 0.1);
}

.solution-blockchain-server-section .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-blockchain-server-section .card-icon i {
    color: #184780;
    font-size: 25px;
}

.solution-blockchain-server-section .bedrock-card h4 {
    font-size: 1.25rem;
    color: #0d234b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.solution-blockchain-server-section .bedrock-card p {
    font-size: 1rem;
    color: #184780;
    line-height: 1.7;
}

.solution-blockchain-server-section .bedrock-footer-banner {
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(13, 35, 75, 0.2);
}

.solution-blockchain-server-section .bedrock-footer-banner p {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

/* ========================================
Cloud Section
======================================== */
.solution-blockchain-server-section .cloud-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e9ecf0 100%);
}

.solution-blockchain-server-section .cloud-content-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    border: 2px solid #e9ecf0;
}

.solution-blockchain-server-section .cloud-subtitle {
    font-size: 30px;
    color: #0d234b;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.solution-blockchain-server-section .cloud-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.solution-blockchain-server-section .cloud-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e9ecf0;
    transition: all 0.3s ease;
    height: 100%;
}

.solution-blockchain-server-section .cloud-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(13, 35, 75, 0.1);
}

.solution-blockchain-server-section .cloud-card.warning {
    border-color: #ff9800;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, #ffffff 100%);
}

.solution-blockchain-server-section .cloud-card.alert {
    border-color: #ffc107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, #ffffff 100%);
}

.solution-blockchain-server-section .cloud-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.solution-blockchain-server-section .cloud-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-blockchain-server-section .cloud-icon.default {
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
}

.solution-blockchain-server-section .cloud-icon.orange-icon {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
}

.solution-blockchain-server-section .cloud-icon.yellow-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
}

.solution-blockchain-server-section .cloud-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.solution-blockchain-server-section .cloud-icon.default i {
    color: #184780;
    font-size: 23px;
}

.solution-blockchain-server-section .cloud-icon.orange-icon i {
    color: #ff9800;
    font-size: 23px;
}

.solution-blockchain-server-section .cloud-icon.yellow-icon i {
    color: #ffc107;
    font-size: 23px;
}

.solution-blockchain-server-section .cloud-card h4 {
    font-size: 1.25rem;
    color: #0d234b;
    font-weight: 600;
}

.solution-blockchain-server-section .cloud-card p {
    font-size: 1rem;
    color: #184780;
    line-height: 1.7;
}

.solution-blockchain-server-section .cloud-cta-banner {
    background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 10px 40px rgba(13, 35, 75, 0.2);
}

.solution-blockchain-server-section .cloud-cta-banner p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

/* ========================================
Advantage Section
======================================== */
.solution-blockchain-server-section .advantage-section {
    padding: 50px 0;
    background: #ffffff;
}

.solution-blockchain-server-section .advantage-intro-grid {
    display: flex;
    align-items: center;
}

.solution-blockchain-server-section .advantage-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 35, 75, 0.15);
}

.solution-blockchain-server-section .advantage-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.solution-blockchain-server-section .advantage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 35, 75, 0.2) 0%, rgba(24, 71, 128, 0.1) 100%);
}

.solution-blockchain-server-section .advantage-text {
    font-size: 1.25rem;
    color: #184780;
    margin-bottom: 15px;
    line-height: 1.8;
}

.solution-blockchain-server-section .testimonial-card {
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    padding: 2rem;
    border-left: 4px solid #184780;
    position: relative;
}

.solution-blockchain-server-section .quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.solution-blockchain-server-section .quote-icon svg {
    width: 100%;
    height: 100%;
    fill: #184780;
}

.solution-blockchain-server-section .testimonial-text {
    font-size: 1.125rem;
    color: #0d234b;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.solution-blockchain-server-section .testimonial-author {
    font-size: 0.875rem;
    color: #184780;
    font-weight: 600;
}

.solution-blockchain-server-section .advantage-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.solution-blockchain-server-section .advantage-feature-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #e9ecf0;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-blockchain-server-section .advantage-feature-card:hover {
    border-color: #184780;
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(13, 35, 75, 0.15);
}

.solution-blockchain-server-section .advantage-feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.solution-blockchain-server-section .advantage-feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: #184780;
    stroke-width: 2;
}

.solution-blockchain-server-section .advantage-feature-card h3 {
    font-size: 1.25rem;
    color: #0d234b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-blockchain-server-section .advantage-feature-card p {
    font-size: 1rem;
    color: #184780;
    line-height: 1.7;
}

/* ========================================
Blueprints Section
======================================== */
.solution-blockchain-server-section .blueprints-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e9ecf0 100%);
}

.solution-blockchain-server-section .blueprints-table-wrapper {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(13, 35, 75, 0.08);
    border: 2px solid #e9ecf0;
}

.solution-blockchain-server-section .table-container {
    overflow-x: auto;
}

.solution-blockchain-server-section .blueprints-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.solution-blockchain-server-section .blueprints-table thead {
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
}

.solution-blockchain-server-section .blueprints-table th {
    padding: 1.5rem 1.25rem;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 3px solid #184780;
}

.solution-blockchain-server-section .blueprints-table th:first-child {
    border-top-left-radius: 12px;
}

.solution-blockchain-server-section .blueprints-table th:last-child {
    border-top-right-radius: 12px;
}

.solution-blockchain-server-section .blueprints-table tbody tr {
    transition: all 0.3s ease;
}

.solution-blockchain-server-section .blueprints-table tbody tr:hover {
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
}

.solution-blockchain-server-section .blueprints-table td {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid #e9ecf0;
    color: #184780;
    font-size: 0.95rem;
}

.solution-blockchain-server-section .workload-name {
    font-weight: 600;
    color: #0d234b;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.solution-blockchain-server-section .workload-subtitle {
    font-size: 0.875rem;
    color: #184780;
}

.solution-blockchain-server-section .spec-detail {
    font-size: 0.875rem;
    color: #184780;
    display: block;
    margin-top: 0.25rem;
}

/* ========================================
Arsenal Section
======================================== */
.solution-blockchain-server-section .arsenal-section {
    padding: 50px 0;
    background: #ffffff;
}

.solution-blockchain-server-section .arsenal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.solution-blockchain-server-section .arsenal-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #e9ecf0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-blockchain-server-section .arsenal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-blockchain-server-section .arsenal-card:hover::before {
    transform: scaleX(1);
}

.solution-blockchain-server-section .arsenal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(13, 35, 75, 0.12);
    border-color: var(--accent-color);
}

.solution-blockchain-server-section .arsenal-card.blue-icon {
    --accent-color: #2196f3;
    --accent-light: #64b5f6;
}

.solution-blockchain-server-section .arsenal-card.green-icon {
    --accent-color: #4caf50;
    --accent-light: #81c784;
}

.solution-blockchain-server-section .arsenal-card.purple {
    --accent-color: #9c27b0;
    --accent-light: #ba68c8;
}

.solution-blockchain-server-section .arsenal-card.yellow-icon {
    --accent-color: #ffc107;
    --accent-light: #ffd54f;
}

.solution-blockchain-server-section .arsenal-card.red-icon {
    --accent-color: #f44336;
    --accent-light: #e57373;
}

.solution-blockchain-server-section .arsenal-card.pink-icon {
    --accent-color: #e91e63;
    --accent-light: #f06292;
}

.solution-blockchain-server-section .arsenal-card.indigo-icon {
    --accent-color: #3f51b5;
    --accent-light: #7986cb;
}

.solution-blockchain-server-section .arsenal-card.cyan-icon {
    --accent-color: #00bcd4;
    --accent-light: #4dd0e1;
}

.solution-blockchain-server-section .arsenal-card.orange-icon {
    --accent-color: #ff9800;
    --accent-light: #ffb74d;
}

.solution-blockchain-server-section .arsenal-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-blockchain-server-section .arsenal-icon svg {
    width: 28px;
    height: 28px;
    stroke: #184780;
    stroke-width: 2;
}

.solution-blockchain-server-section .arsenal-card h3 {
    font-size: 1.25rem;
    color: #0d234b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-blockchain-server-section .arsenal-card p {
    font-size: 1rem;
    color: #184780;
    line-height: 1.7;
}

.solution-blockchain-server-section .arsenal-footer-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 35, 75, 0.15);
}

.solution-blockchain-server-section .arsenal-footer-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ========================================
Stack Section
======================================== */
.solution-blockchain-server-section .stack-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e9ecf0 100%);
}

.solution-blockchain-server-section .stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.solution-blockchain-server-section .stack-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e9ecf0;
    transition: all 0.3s ease;
}

.solution-blockchain-server-section .stack-card:hover {
    border-color: #184780;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(13, 35, 75, 0.1);
}

.solution-blockchain-server-section .stack-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-blockchain-server-section .stack-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-blockchain-server-section .stack-icon svg {
    width: 24px;
    height: 24px;
    stroke: #184780;
    stroke-width: 2;
}

.solution-blockchain-server-section .stack-card h3 {
    font-size: 1.25rem;
    color: #0d234b;
    font-weight: 600;
}

.solution-blockchain-server-section .stack-subtitle {
    font-size: 0.9rem;
    color: #184780;
    margin-bottom: 1rem;
    font-style: italic;
}

.solution-blockchain-server-section .stack-list {
    list-style: none;
    padding: 0;
}

.solution-blockchain-server-section .stack-list li {
    font-size: 1rem;
    color: #184780;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #e9ecf0;
    line-height: 1.6;
}

.solution-blockchain-server-section .stack-list li:last-child {
    border-bottom: none;
}

.solution-blockchain-server-section .stack-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #184780;
    border-radius: 50%;
}

.solution-blockchain-server-section .stack-footer-banner {
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(13, 35, 75, 0.2);
}

.solution-blockchain-server-section .stack-footer-banner p {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

/* ========================================
CTA Section
======================================== */
.solution-blockchain-server-section .cta-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.solution-blockchain-server-section .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.solution-blockchain-server-section .cta-blur {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.solution-blockchain-server-section .cta-blur.blur-left {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, #e5f2ff 0%, transparent 70%);
}

.solution-blockchain-server-section .cta-blur.blur-right {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, #e9ecf0 0%, transparent 70%);
}

.solution-blockchain-server-section .cta-section .container {
    position: relative;
    z-index: 1;
}

.solution-blockchain-server-section .cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.solution-blockchain-server-section .cta-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #e9ecf0;
    transition: all 0.3s ease;
}

.solution-blockchain-server-section .cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 35, 75, 0.15);
    border-color: #184780;
}

.solution-blockchain-server-section .cta-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.solution-blockchain-server-section .cta-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-blockchain-server-section .cta-card:hover .cta-card-image img {
    transform: scale(1.05);
}

.solution-blockchain-server-section .cta-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 35, 75, 0.4) 100%);
}

.solution-blockchain-server-section .cta-card-content {
    padding: 2.5rem;
}

.solution-blockchain-server-section .cta-card-content h3 {
    font-size: 1.5rem;
    color: #0d234b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-blockchain-server-section .cta-card-content p {
    font-size: 1rem;
    color: #184780;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.solution-blockchain-server-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.solution-blockchain-server-section .cta-button.primary {
    background: linear-gradient(135deg, #0d234b 0%, #184780 100%);
    color: #ffffff;
    border-color: #0d234b;
}

.solution-blockchain-server-section .cta-button.primary:hover {
    background: linear-gradient(135deg, #184780 0%, #0d234b 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(13, 35, 75, 0.3);
}

.solution-blockchain-server-section .cta-button.secondary {
    background: #ffffff;
    color: #184780;
    border-color: #184780;
}

.solution-blockchain-server-section .cta-button.secondary:hover {
    background: #184780;
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(24, 71, 128, 0.3);
}

.solution-blockchain-server-section .cta-button i {
    font-size: 20px;
}

/* ========================================
FAQ Section
======================================== */
.solution-blockchain-server-section .faq-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e9ecf0 100%);
}

.solution-blockchain-server-section .faq-container {
    max-width: 100%;
    margin: 0 auto;
}

.solution-blockchain-server-section .faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid #e9ecf0;
    transition: all 0.3s ease;
}

.solution-blockchain-server-section .faq-item:hover {
    border-color: #184780;
}

.solution-blockchain-server-section .faq-question {
    width: 100%;
    padding: 15px 40px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.solution-blockchain-server-section .faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0d234b;
    flex: 1;
    padding-right: 1rem;
}

.solution-blockchain-server-section .faq-item i{
    font-size: 16px;
    stroke: #184780;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.solution-blockchain-server-section .faq-item.active i {
    transform: rotate(180deg);
}

.solution-blockchain-server-section .faq-item.active .faq-question {
    background: linear-gradient(135deg, #e5f2ff 0%, #e9ecf0 100%);
}

.solution-blockchain-server-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.solution-blockchain-server-section .faq-item.active .faq-answer {
    max-height: 500px;
}

.solution-blockchain-server-section .faq-answer-content {
    padding: 1rem 2rem 2rem 2rem;
}

.solution-blockchain-server-section .faq-answer-content p {
    font-size: 1rem;
    color: #184780;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
Responsive Design
======================================== */
@media (max-width: 1024px) {

    .solution-blockchain-server-section .intro-grid,
    .solution-blockchain-server-section .bedrock-grid,
    .solution-blockchain-server-section .advantage-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-blockchain-server-section .advantage-features-grid,
    .solution-blockchain-server-section .arsenal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-blockchain-server-section .stack-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .solution-blockchain-server-section .section-title {
        font-size: 2rem;
    }

    .solution-blockchain-server-section .section-subtitle {
        font-size: 1.125rem;
    }

    .solution-blockchain-server-section .section-intro {
        font-size: 1rem;
    }

    .solution-blockchain-server-section .intro-section,
    .solution-blockchain-server-section .bedrock-section,
    .solution-blockchain-server-section .cloud-section,
    .solution-blockchain-server-section .advantage-section,
    .solution-blockchain-server-section .blueprints-section,
    .solution-blockchain-server-section .arsenal-section,
    .solution-blockchain-server-section .stack-section,
    .solution-blockchain-server-section .cta-section,
    .solution-blockchain-server-section .faq-section {
        padding: 60px 0;
    }

    .solution-blockchain-server-section .section-header {
        margin-bottom: 2.5rem;
    }

    .solution-blockchain-server-section .bedrock-main-card,
    .solution-blockchain-server-section .cloud-content-wrapper {
        padding: 30px;
    }

    .solution-blockchain-server-section .bedrock-secondary-grid,
    .solution-blockchain-server-section .cloud-grid,
    .solution-blockchain-server-section .advantage-features-grid,
    .solution-blockchain-server-section .arsenal-grid,
    .solution-blockchain-server-section .cta-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-blockchain-server-section .intro-image {
        height: 300px;
    }

    .solution-blockchain-server-section .bedrock-image,
    .solution-blockchain-server-section .advantage-image,
    .solution-blockchain-server-section .arsenal-footer-image img {
        height: 250px;
    }

    .solution-blockchain-server-section .sla-badge {
        padding: 1rem 1.5rem;
        bottom: 20px;
        left: 20px;
    }

    .solution-blockchain-server-section .sla-number {
        font-size: 1.5rem;
    }

    .solution-blockchain-server-section .table-container {
        overflow-x: scroll;
    }

    .solution-blockchain-server-section .blueprints-table {
        min-width: 800px;
    }

    .solution-blockchain-server-section .blueprints-table th,
    .solution-blockchain-server-section .blueprints-table td {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .solution-blockchain-server-section .faq-question span {
        font-size: 1rem;
    }

    .solution-blockchain-server-section .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .solution-blockchain-server-section .cta-card-image {
        height: 200px;
    }

    .solution-blockchain-server-section .cta-card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .solution-blockchain-server-section .container {
        padding: 0 16px;
    }

    .solution-blockchain-server-section .section-title {
        font-size: 1.75rem;
    }

    .solution-blockchain-server-section .section-tag {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .solution-blockchain-server-section .bedrock-features {
        gap: 1.5rem;
    }

    .solution-blockchain-server-section .feature-icon,
    .solution-blockchain-server-section .card-icon,
    .solution-blockchain-server-section .advantage-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .solution-blockchain-server-section .feature-icon svg,
    .solution-blockchain-server-section .card-icon svg {
        width: 24px;
        height: 24px;
    }

    .solution-blockchain-server-section .advantage-feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .solution-blockchain-server-section .bedrock-card,
    .solution-blockchain-server-section .cloud-card,
    .solution-blockchain-server-section .advantage-feature-card,
    .solution-blockchain-server-section .arsenal-card,
    .solution-blockchain-server-section .stack-card {
        padding: 1.5rem;
    }

    .solution-blockchain-server-section .bedrock-footer-banner,
    .solution-blockchain-server-section .cloud-cta-banner,
    .solution-blockchain-server-section .stack-footer-banner {
        padding: 1.5rem 2rem;
    }

    .solution-blockchain-server-section .bedrock-footer-banner p,
    .solution-blockchain-server-section .cloud-cta-banner p,
    .solution-blockchain-server-section .stack-footer-banner p {
        font-size: 1rem;
    }

    .solution-blockchain-server-section .testimonial-card {
        padding: 1.5rem;
    }

    .solution-blockchain-server-section .testimonial-text {
        font-size: 1rem;
    }

    .solution-blockchain-server-section .blueprints-table-wrapper {
        padding: 20px;
    }

    .solution-blockchain-server-section .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .solution-blockchain-server-section .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

.solution-gaming-servers .cta-buttons-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start !important; /* Stops the flex container from stretching the button vertically */
}

.solution-gaming-servers .cta-button,
.solution-gaming-servers .cta-button:focus,
.solution-gaming-servers .cta-button:active,
.solution-gaming-servers .cta-button:visited {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
    padding: 18px 36px !important; /* Locks dimensions */
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 14px !important;
    text-align: center;
    border: 2px solid transparent;
    width: max-content !important; /* Forces the box to hug the text perfectly */
    height: auto !important;
    white-space: nowrap !important; /* Physically prevents the text from wrapping to a second line */
    flex: 0 0 auto !important; /* Stops unwanted flexbox growth */
    outline: none !important;
    /* CRITICAL FIX: Changing 'transition: all' to specific properties stops the box from shape-shifting on click */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* 1. Trap the ripple inside the button */
.solution-gaming-servers .cta-button {
    position: relative !important;
    overflow: hidden !important;
}

/* 2. Protect your text from being styled like the ripple */
.solution-gaming-servers .cta-button > span:not(.ripple) {
    position: relative;
    z-index: 2; /* Keeps the text clearly visible above the ripple effect */
}

/* 3. Take the ripple OUT of the flexbox layout so it stops breaking the button */
.solution-gaming-servers .cta-button .ripple {
    position: absolute !important;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4); /* White ripple effect */
    transform: scale(0);
    animation: cta-ripple-anim 0.6s linear;
    pointer-events: none; /* Stops the ripple from intercepting double-clicks */
}

/* 4. The actual ripple animation */
@keyframes cta-ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}