/* style/industry-news-market-analysis.css */

/* Base styles for the page content */
.page-industry-news-market-analysis {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for readability */
}

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

/* Hero Section */
.page-industry-news-market-analysis__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-market-analysis__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-market-analysis__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Section Styling */
.page-industry-news-market-analysis__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-industry-news-market-analysis__section--alt-bg {
    background-color: #f0f4f8; /* Slightly darker background for alternating sections */
}

.page-industry-news-market-analysis__section-title {
    font-size: 2.2em;
    color: #007bff; /* Primary color for main titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-industry-news-market-analysis__sub-title {
    font-size: 1.6em;
    color: #0056b3; /* Darker shade of primary for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-industry-news-market-analysis__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-industry-news-market-analysis__highlight {
    color: #007bff;
    font-weight: bold;
}

/* Lists */
.page-industry-news-market-analysis__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    padding: 0;
    font-size: 1.05em;
    color: #555;
}

.page-industry-news-market-analysis__list--ordered {
    list-style-type: decimal;
}

.page-industry-news-market-analysis__list li {
    margin-bottom: 10px;
}

/* Buttons */
.page-industry-news-market-analysis__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-industry-news-market-analysis__btn--primary {
    background-color: #ffc107; /* Auxiliary color for primary action */
    color: #333; /* Dark text for contrast on light background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-industry-news-market-analysis__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-industry-news-market-analysis__btn--secondary {
    background-color: #007bff; /* Primary color for secondary action */
    color: #ffffff;
    border: 2px solid #007bff;
    margin-left: 15px;
}

.page-industry-news-market-analysis__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

/* Image Styling */
.page-industry-news-market-analysis__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-industry-news-market-analysis__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-industry-news-market-analysis__cta-section {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-industry-news-market-analysis__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-industry-news-market-analysis__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-industry-news-market-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news-market-analysis__hero-title {
        font-size: 2em;
    }
    .page-industry-news-market-analysis__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-market-analysis__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-market-analysis__sub-title {
        font-size: 1.4em;
    }
    .page-industry-news-market-analysis__paragraph,
    .page-industry-news-market-analysis__list {
        font-size: 0.95em;
    }
    .page-industry-news-market-analysis__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-industry-news-market-analysis__cta-title {
        font-size: 2em;
    }
    .page-industry-news-market-analysis__cta-text {
        font-size: 1em;
    }
    .page-industry-news-market-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-news-market-analysis__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-industry-news-market-analysis__hero {
        padding: 60px 0;
    }
    .page-industry-news-market-analysis__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-market-analysis__section {
        padding: 40px 0;
    }
    .page-industry-news-market-analysis__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-market-analysis__sub-title {
        font-size: 1.2em;
    }
    .page-industry-news-market-analysis__cta-section {
        padding: 50px 0;
    }
    .page-industry-news-market-analysis__cta-title {
        font-size: 1.8em;
    }
}