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

/* Biến CSS */
:root {
    --page-primary-color: #003366;
    --page-secondary-color: #FFCC00;
    --page-text-light: #FFFFFF;
    --page-text-dark: #000000;
    --page-text-on-primary: #FFFFFF;
    --page-text-on-secondary: #003366;
}

.page-industry-news-market-trends-analysis {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
}

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

/* Hero Section */
.page-industry-news-market-trends-analysis__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #004d99 100%); /* Slightly lighter blue for gradient */
    color: var(--page-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-market-trends-analysis__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--page-secondary-color);
}

.page-industry-news-market-trends-analysis__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-market-trends-analysis__cta-button {
    display: inline-block;
    background-color: var(--page-secondary-color);
    color: var(--page-text-on-secondary);
    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-news-market-trends-analysis__cta-button:hover {
    background-color: #e6b800; /* Slightly darker yellow */
    transform: translateY(-3px);
}

/* Content Section */
.page-industry-news-market-trends-analysis__content-section {
    padding: 60px 0;
    background-color: var(--page-text-light);
}

.page-industry-news-market-trends-analysis__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--page-secondary-color);
    padding-bottom: 10px;
}

.page-industry-news-market-trends-analysis__sub-section-title {
    font-size: 1.8em;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news-market-trends-analysis__content-section p {
    margin-bottom: 1em;
    font-size: 1.1em;
    line-height: 1.7;
    color: #444444;
}

.page-industry-news-market-trends-analysis__content-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
    font-size: 1.1em;
    color: #555555;
}

.page-industry-news-market-trends-analysis__content-section ul li {
    margin-bottom: 0.5em;
}

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

.page-industry-news-market-trends-analysis__image-left {
    float: left;
    width: 45%;
    margin: 15px 30px 15px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-market-trends-analysis__image-right {
    float: right;
    width: 45%;
    margin: 15px 0 15px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-market-trends-analysis__cta-box {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-industry-news-market-trends-analysis__cta-box p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: var(--page-primary-color);
    font-weight: 500;
}

.page-industry-news-market-trends-analysis__cta-button--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-text-on-primary);
}

.page-industry-news-market-trends-analysis__cta-button--secondary:hover {
    background-color: #002244; /* Darker blue */
    transform: translateY(-3px);
}

.page-industry-news-market-trends-analysis__final-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--page-secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.page-industry-news-market-trends-analysis__final-cta p {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--page-text-on-secondary);
    margin-bottom: 30px;
}

/* Clearfix for floating images */
.page-industry-news-market-trends-analysis__content-section::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-market-trends-analysis__hero-title {
        font-size: 2.8em;
    }
    .page-industry-news-market-trends-analysis__hero-subtitle {
        font-size: 1.3em;
    }
    .page-industry-news-market-trends-analysis__section-title {
        font-size: 2em;
    }
    .page-industry-news-market-trends-analysis__sub-section-title {
        font-size: 1.5em;
    }
    .page-industry-news-market-trends-analysis__image-left,
    .page-industry-news-market-trends-analysis__image-right {
        width: 100%;
        float: none;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .page-industry-news-market-trends-analysis__hero-section {
        padding: 80px 0;
    }
    .page-industry-news-market-trends-analysis__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-market-trends-analysis__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news-market-trends-analysis__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news-market-trends-analysis__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-market-trends-analysis__sub-section-title {
        font-size: 1.3em;
    }
    .page-industry-news-market-trends-analysis__content-section p,
    .page-industry-news-market-trends-analysis__content-section ul {
        font-size: 1em;
    }
    .page-industry-news-market-trends-analysis__cta-box p {
        font-size: 1.1em;
    }
    .page-industry-news-market-trends-analysis__final-cta p {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-market-trends-analysis__hero-section {
        padding: 60px 0;
    }
    .page-industry-news-market-trends-analysis__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-market-trends-analysis__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-news-market-trends-analysis__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-industry-news-market-trends-analysis__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-market-trends-analysis__sub-section-title {
        font-size: 1.1em;
    }
}