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

.page-expert-insights-tech-innovation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-expert-insights-tech-innovation__hero {
    background: linear-gradient(135deg, #0A2463 0%, #304e90 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-insights-tech-innovation__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_tech_pattern,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-expert-insights-tech-innovation__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

.page-expert-insights-tech-innovation__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-expert-insights-tech-innovation__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-expert-insights-tech-innovation__hero-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-expert-insights-tech-innovation__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-expert-insights-tech-innovation__section:last-of-type {
    border-bottom: none;
}

.page-expert-insights-tech-innovation__section-title {
    font-size: 2.2em;
    color: #0A2463;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.page-expert-insights-tech-innovation__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-expert-insights-tech-innovation__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.page-expert-insights-tech-innovation__section strong {
    color: #0A2463;
}

.page-expert-insights-tech-innovation__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-expert-insights-tech-innovation__list li {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #555;
    transition: transform 0.2s ease;
}

.page-expert-insights-tech-innovation__list li:hover {
    transform: translateX(5px);
}

.page-expert-insights-tech-innovation__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-expert-insights-tech-innovation__cta-btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    background-color: #0A2463;
    color: #FFD700;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-expert-insights-tech-innovation__cta-btn:hover {
    background-color: #071a47;
    color: #fff;
}

.page-expert-insights-tech-innovation__cta-final {
    background: linear-gradient(45deg, #0A2463, #1e3a7a);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-expert-insights-tech-innovation__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-expert-insights-tech-innovation__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-insights-tech-innovation__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-expert-insights-tech-innovation__cta-btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-expert-insights-tech-innovation__cta-btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-expert-insights-tech-innovation__cta-btn--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-expert-insights-tech-innovation__cta-btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-expert-insights-tech-innovation__hero {
        padding: 80px 0;
    }

    .page-expert-insights-tech-innovation__hero-title {
        font-size: 2.2em;
    }

    .page-expert-insights-tech-innovation__hero-subtitle {
        font-size: 1em;
    }

    .page-expert-insights-tech-innovation__section-title {
        font-size: 1.8em;
    }

    .page-expert-insights-tech-innovation__section p,
    .page-expert-insights-tech-innovation__list li {
        font-size: 1em;
    }

    .page-expert-insights-tech-innovation__cta-title {
        font-size: 2em;
    }

    .page-expert-insights-tech-innovation__cta-description {
        font-size: 1em;
    }

    .page-expert-insights-tech-innovation__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-expert-insights-tech-innovation__cta-btn,
    .page-expert-insights-tech-innovation__cta-btn--primary,
    .page-expert-insights-tech-innovation__cta-btn--secondary {
        width: 80%;
        max-width: 300px;
        padding: 15px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-expert-insights-tech-innovation__hero-title {
        font-size: 1.8em;
    }

    .page-expert-insights-tech-innovation__section-title {
        font-size: 1.6em;
    }

    .page-expert-insights-tech-innovation__cta-title {
        font-size: 1.8em;
    }
}