/* style/industry-insights-tech-future.css */
.page-industry-insights-tech-future {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-industry-insights-tech-future .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-industry-insights-tech-future .hero-section {
    background: linear-gradient(135deg, #0A2463, #3a5c9f);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-insights-tech-future .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3B23C;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-insights-tech-future .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-industry-insights-tech-future .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
}

.page-industry-insights-tech-future .btn-primary {
    background-color: #E3B23C;
    color: #0A2463;
    border: 2px solid #E3B23C;
}

.page-industry-insights-tech-future .btn-primary:hover {
    background-color: #f0c96e;
    color: #0A2463;
    transform: translateY(-3px);
}

.page-industry-insights-tech-future .btn-secondary {
    background-color: #0A2463;
    color: #E3B23C;
    border: 2px solid #E3B23C;
}

.page-industry-insights-tech-future .btn-secondary:hover {
    background-color: #1a3c7c;
    color: #f0c96e;
    transform: translateY(-3px);
}

.page-industry-insights-tech-future .btn-cta {
    background-color: #E3B23C;
    color: #0A2463;
    border: 2px solid #E3B23C;
    padding: 18px 35px;
    font-size: 1.2em;
    margin-top: 30px;
}

.page-industry-insights-tech-future .btn-cta:hover {
    background-color: #f0c96e;
    color: #0A2463;
    transform: translateY(-3px);
}

.page-industry-insights-tech-future .introduction-section,
.page-industry-insights-tech-future .tech-blockchain,
.page-industry-insights-tech-future .tech-ai,
.page-industry-insights-tech-future .tech-vr-ar,
.page-industry-insights-tech-future .tech-bigdata,
.page-industry-insights-tech-future .conclusion-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-industry-insights-tech-future .section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-industry-insights-tech-future p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-industry-insights-tech-future ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-industry-insights-tech-future ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
}

.page-industry-insights-tech-future .section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-insights-tech-future .promo-banner {
    background: linear-gradient(90deg, #0A2463, #2a4c8f);
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.page-industry-insights-tech-future .promo-content {
    max-width: 600px;
}

.page-industry-insights-tech-future .promo-title {
    font-size: 2.2em;
    color: #E3B23C;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-insights-tech-future .promo-text {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.page-industry-insights-tech-future .promo-image {
    max-width: 350px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-industry-insights-tech-future .hero-title {
        font-size: 2.5em;
    }

    .page-industry-insights-tech-future .hero-subtitle,
    .page-industry-insights-tech-future p,
    .page-industry-insights-tech-future ul li,
    .page-industry-insights-tech-future .promo-text {
        font-size: 1em;
    }

    .page-industry-insights-tech-future .section-title,
    .page-industry-insights-tech-future .promo-title {
        font-size: 1.8em;
    }

    .page-industry-insights-tech-future .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .page-industry-insights-tech-future .btn-cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-industry-insights-tech-future .promo-banner {
        flex-direction: column;
    }

    .page-industry-insights-tech-future .promo-image {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-tech-future .hero-title {
        font-size: 2em;
    }

    .page-industry-insights-tech-future .hero-section,
    .page-industry-insights-tech-future .introduction-section,
    .page-industry-insights-tech-future .tech-blockchain,
    .page-industry-insights-tech-future .tech-ai,
    .page-industry-insights-tech-future .tech-vr-ar,
    .page-industry-insights-tech-future .tech-bigdata,
    .page-industry-insights-tech-future .conclusion-section,
    .page-industry-insights-tech-future .promo-banner {
        padding: 40px 0;
    }

    .page-industry-insights-tech-future .section-title,
    .page-industry-insights-tech-future .promo-title {
        font-size: 1.5em;
    }
}