/* style/industry-insights-market-trends.css */
.page-industry-insights-market-trends {
    font-family: Arial, sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #1A2E47; /* Main background color */
}

.page-industry-insights-market-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-insights-market-trends__hero {
    background: linear-gradient(135deg, #1A2E47, #3b5f8a); /* Gradient background from main to a slightly lighter blue */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Accent color for hero title */
}

.page-industry-insights-market-trends__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Accent color */
}

.page-industry-insights-market-trends__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0; /* Lighter text for subtitle */
}

.page-industry-insights-market-trends__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for button */
    color: #1A2E47; /* Main color for button text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-industry-insights-market-trends__cta-button:hover {
    background-color: #e0c000; /* Slightly darker accent on hover */
    transform: translateY(-3px);
}

.page-industry-insights-market-trends__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-industry-insights-market-trends__cta-button--large {
    padding: 20px 40px;
    font-size: 1.2em;
}

.page-industry-insights-market-trends__section {
    padding: 60px 0;
    background-color: #1A2E47;
}

.page-industry-insights-market-trends__section:nth-of-type(even) {
    background-color: #15253a; /* Slightly different background for alternating sections */
}

.page-industry-insights-market-trends__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-industry-insights-market-trends__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-industry-insights-market-trends__subsection-title {
    font-size: 1.8em;
    color: #FFD700; /* Accent color for sub-section titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-insights-market-trends__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-industry-insights-market-trends__content-grid:nth-child(even) {
    flex-direction: row-reverse;
}

.page-industry-insights-market-trends__text-content {
    flex: 1;
    color: #f0f0f0;
    line-height: 1.8;
    font-size: 1.1em;
}

.page-industry-insights-market-trends__text-content p {
    margin-bottom: 15px;
}

.page-industry-insights-market-trends__text-content ul {
    list-style: disc;
    margin-left: 25px;
    padding-left: 0;
    margin-bottom: 15px;
}

.page-industry-insights-market-trends__text-content li {
    margin-bottom: 8px;
}

.page-industry-insights-market-trends__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-industry-insights-market-trends__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-industry-insights-market-trends__feature-grid, .page-industry-insights-market-trends__product-grid, .page-industry-insights-market-trends__challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-insights-market-trends__feature-item, .page-industry-insights-market-trends__product-item, .page-industry-insights-market-trends__challenge-item {
    background-color: #2a4362; /* A slightly lighter shade of main color */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-industry-insights-market-trends__feature-item:hover, .page-industry-insights-market-trends__product-item:hover, .page-industry-insights-market-trends__challenge-item:hover {
    transform: translateY(-5px);
    background-color: #3b5f8a; /* Even lighter on hover */
}

.page-industry-insights-market-trends__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Glow effect for icons */
}

.page-industry-insights-market-trends__feature-title, .page-industry-insights-market-trends__product-title {
    font-size: 1.5em;
    color: #FFD700; /* Accent color */
    margin-bottom: 15px;
}

.page-industry-insights-market-trends__product-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-industry-insights-market-trends__cta-banner {
    background: linear-gradient(90deg, #FFD700, #e0c000); /* Accent color gradient */
    color: #1A2E47; /* Main color for text */
    padding: 80px 0;
    text-align: center;
}

.page-industry-insights-market-trends__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1A2E47; /* Main color */
}

.page-industry-insights-market-trends__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333; /* Darker text for readability on light background */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-insights-market-trends__hero-title {
        font-size: 2.8em;
    }
    .page-industry-insights-market-trends__section-title {
        font-size: 2em;
    }
    .page-industry-insights-market-trends__content-grid {
        flex-direction: column;
    }
    .page-industry-insights-market-trends__content-grid:nth-child(even) {
        flex-direction: column;
    }
    .page-industry-insights-market-trends__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-industry-insights-market-trends__hero {
        padding: 80px 0;
    }
    .page-industry-insights-market-trends__hero-title {
        font-size: 2.2em;
    }
    .page-industry-insights-market-trends__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-insights-market-trends__section {
        padding: 40px 0;
    }
    .page-industry-insights-market-trends__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-industry-insights-market-trends__subsection-title {
        font-size: 1.5em;
    }
    .page-industry-insights-market-trends__feature-grid, .page-industry-insights-market-trends__product-grid, .page-industry-insights-market-trends__challenge-grid {
        grid-template-columns: 1fr;
    }
    .page-industry-insights-market-trends__cta-banner {
        padding: 60px 0;
    }
    .page-industry-insights-market-trends__cta-title {
        font-size: 2em;
    }
    .page-industry-insights-market-trends__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-market-trends__hero-title {
        font-size: 1.8em;
    }
    .page-industry-insights-market-trends__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-industry-insights-market-trends__cta-button--large {
        padding: 15px 30px;
        font-size: 1em;
    }
    .page-industry-insights-market-trends__feature-icon {
        width: 60px;
        height: 60px;
    }
}