/* style/industry-insights-new-technologies.css */
.page-industry-insights-new-technologies {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.page-industry-insights-new-technologies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-insights-new-technologies-hero {
    background: linear-gradient(135deg, #1A2E47 0%, #3a5c8a 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-industry-insights-new-technologies-hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-insights-new-technologies-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-industry-insights-new-technologies-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-industry-insights-new-technologies-section:last-of-type {
    border-bottom: none;
}

.page-industry-insights-new-technologies-bg-alt {
    background-color: #f0f4f8;
}

.page-industry-insights-new-technologies-section h2 {
    font-size: 2.5em;
    color: #1A2E47;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-insights-new-technologies-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-industry-insights-new-technologies-section h3 {
    font-size: 1.8em;
    color: #1A2E47;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-insights-new-technologies-section p {
    margin-bottom: 15px;
    color: #444;
}

.page-industry-insights-new-technologies-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-industry-insights-new-technologies-section ul li {
    margin-bottom: 10px;
    color: #555;
}

.page-industry-insights-new-technologies-content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-industry-insights-new-technologies-content-grid .page-industry-insights-new-technologies-text-content {
    flex: 1;
}

.page-industry-insights-new-technologies-content-grid .page-industry-insights-new-technologies-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-industry-insights-new-technologies-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-industry-insights-new-technologies-img:hover {
    transform: translateY(-5px);
}

.page-industry-insights-new-technologies-reverse-grid {
    flex-direction: row-reverse;
}

.page-industry-insights-new-technologies-btn {
    display: inline-block;
    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.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-industry-insights-new-technologies-btn-primary {
    background-color: #FFD700;
    color: #1A2E47;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-industry-insights-new-technologies-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-industry-insights-new-technologies-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-industry-insights-new-technologies-btn-secondary:hover {
    background-color: #FFD700;
    color: #1A2E47;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-insights-new-technologies-offers {
    background-color: #1A2E47;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-industry-insights-new-technologies-offers h2 {
    color: #FFD700;
}

.page-industry-insights-new-technologies-offers p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-industry-insights-new-technologies-faq {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.page-industry-insights-new-technologies-faq h2 {
    margin-bottom: 50px;
}

.page-industry-insights-new-technologies-faq-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-industry-insights-new-technologies-faq-item h3 {
    color: #1A2E47;
    font-size: 1.5em;
    margin-top: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-industry-insights-new-technologies-faq-item h3::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-industry-insights-new-technologies-faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-industry-insights-new-technologies-faq-item p {
    margin-top: 15px;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
}

.page-industry-insights-new-technologies-faq-item.active p {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
}

.page-industry-insights-new-technologies-cta {
    background: #1A2E47;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    border-top: 5px solid #FFD700;
}

.page-industry-insights-new-technologies-cta h2 {
    color: #FFD700;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-industry-insights-new-technologies-cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-insights-new-technologies-hero h1 {
        font-size: 2.8em;
    }

    .page-industry-insights-new-technologies-section h2 {
        font-size: 2em;
    }

    .page-industry-insights-new-technologies-content-grid {
        flex-direction: column;
    }

    .page-industry-insights-new-technologies-reverse-grid {
        flex-direction: column;
    }

    .page-industry-insights-new-technologies-cta h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-industry-insights-new-technologies-hero {
        padding: 60px 0;
    }

    .page-industry-insights-new-technologies-hero h1 {
        font-size: 2.2em;
    }

    .page-industry-insights-new-technologies-hero p {
        font-size: 1em;
    }

    .page-industry-insights-new-technologies-section {
        padding: 40px 0;
    }

    .page-industry-insights-new-technologies-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-industry-insights-new-technologies-section h3 {
        font-size: 1.4em;
    }

    .page-industry-insights-new-technologies-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-insights-new-technologies-offers {
        padding: 60px 0;
    }

    .page-industry-insights-new-technologies-cta {
        padding: 60px 0;
    }

    .page-industry-insights-new-technologies-cta h2 {
        font-size: 1.8em;
    }

    .page-industry-insights-new-technologies-cta p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-new-technologies-hero h1 {
        font-size: 1.8em;
    }

    .page-industry-insights-new-technologies-section h2 {
        font-size: 1.5em;
    }

    .page-industry-insights-new-technologies-section h3 {
        font-size: 1.2em;
    }

    .page-industry-insights-new-technologies-btn {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }

    .page-industry-insights-new-technologies-faq-item h3 {
        font-size: 1.2em;
    }
}