/* style/news-latest-industry-trends.css */

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --medium-text: #e0e0e0;
    --border-color: #333333;
}

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

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

/* Hero Section */
.page-news-latest-industry-trends-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #333333 50%, var(--dark-bg) 100%);
    overflow: hidden;
}

.page-news-latest-industry-trends-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-news-latest-industry-trends-hero h1 {
    font-size: 3.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    line-height: 1.2;
}

.page-news-latest-industry-trends-hero p {
    font-size: 1.2em;
    color: var(--medium-text);
    margin-bottom: 30px;
}

.page-news-latest-industry-trends-hero-image {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Adjust max-width as needed */
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-news-latest-industry-trends-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-news-latest-industry-trends-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid var(--primary-color);
}

.page-news-latest-industry-trends-cta-button:hover {
    background: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.6);
    border-color: var(--secondary-color);
}

.page-news-latest-industry-trends-cta-bottom {
    margin-top: 50px;
}

/* General Section Styling */
.page-news-latest-industry-trends-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-news-latest-industry-trends-section:last-of-type {
    border-bottom: none;
}

.page-news-latest-industry-trends-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-news-latest-industry-trends-section h3 {
    font-size: 1.8em;
    color: var(--light-text);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
    line-height: 1.4;
}

.page-news-latest-industry-trends-section p {
    font-size: 1.05em;
    color: var(--medium-text);
    margin-bottom: 20px;
    text-align: justify;
}

.page-news-latest-industry-trends-section img {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-news-latest-industry-trends-trend-item {
    background-color: #222222;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-news-latest-industry-trends-trend-item h3 {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.page-news-latest-industry-trends-trend-item p {
    color: var(--medium-text);
}

.page-news-latest-industry-trends-sun-city-role h3 {
    color: var(--light-text);
    border-left-color: var(--secondary-color);
}

.page-news-latest-industry-trends-sun-city-role a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news-latest-industry-trends-sun-city-role a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* FAQ Section */
.page-news-latest-industry-trends-faq {
    background-color: #222222;
}

.page-news-latest-industry-trends-faq h2 {
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #2e2e2e;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #3a3a3a;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--light-text);
}

.faq-question:hover {
    background-color: #4a4a4a;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15em;
    color: var(--light-text);
    border-left: none;
    padding-left: 0;
}

.faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #2e2e2e;
    color: var(--medium-text);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 25px;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-latest-industry-trends-hero h1 {
        font-size: 2.5em;
    }
    .page-news-latest-industry-trends-hero p {
        font-size: 1.1em;
    }
    .page-news-latest-industry-trends-section h2 {
        font-size: 2em;
    }
    .page-news-latest-industry-trends-section h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-news-latest-industry-trends-hero {
        padding: 60px 15px 30px;
    }
    .page-news-latest-industry-trends-hero h1 {
        font-size: 2em;
    }
    .page-news-latest-industry-trends-hero p {
        font-size: 1em;
    }
    .page-news-latest-industry-trends-cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-news-latest-industry-trends-section {
        padding: 40px 0;
    }
    .page-news-latest-industry-trends-section h2 {
        font-size: 1.8em;
    }
    .page-news-latest-industry-trends-section h3 {
        font-size: 1.4em;
        padding-left: 10px;
    }
    .page-news-latest-industry-trends-section p {
        font-size: 0.95em;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-toggle {
        font-size: 1.5em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-news-latest-industry-trends-hero h1 {
        font-size: 1.8em;
    }
    .page-news-latest-industry-trends-hero p {
        font-size: 0.9em;
    }
    .page-news-latest-industry-trends-cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-news-latest-industry-trends-section h2 {
        font-size: 1.5em;
    }
    .page-news-latest-industry-trends-section h3 {
        font-size: 1.2em;
    }
}