/* style/resources---1.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f4f4f4;
    --background-dark: #222222;
    --border-color: #e0e0e0;
}

.page-resources---1 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
}

.page-resources---1 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources---1 section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-resources---1 section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-resources---1 h1,
.page-resources---1 h2,
.page-resources---1 h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-resources---1 h1 {
    font-size: 2.8em;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources---1 h2 {
    font-size: 2.2em;
    color: var(--secondary-color);
}

.page-resources---1 h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
}

.page-resources---1 p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-resources---1 ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-resources---1 li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

/* Hero Section */
.page-resources---1 .hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a31d1d 100%);
    color: var(--text-color-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-resources---1 .hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources---1 .hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: left;
}

.page-resources---1 .hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--primary-color); /* Gold text on dark red background */
    text-align: left;
}

.page-resources---1 .hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    text-align: left;
}

.page-resources---1 .hero-image {
    flex: 1 1 40%;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources---1 .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* CTA Buttons */
.page-resources---1 .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    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;
    margin-top: 20px;
    margin-right: 15px;
    border: 2px solid transparent;
}

.page-resources---1 .cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources---1 .secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources---1 .secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.page-resources---1 .button-small {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
}

.page-resources---1 .button-small:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Market Trends Grid */
.page-resources---1 .trend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources---1 .trend-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources---1 .trend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources---1 .trend-item img {
    max-width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources---1 .trend-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.page-resources---1 .trend-item p {
    font-size: 1em;
    color: var(--text-color-dark);
}

/* tv88 Focus Section */
.page-resources---1 .tv88-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources---1 .feature-item {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources---1 .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources---1 .feature-item img {
    max-width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources---1 .feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.page-resources---1 .feature-item p {
    font-size: 1em;
    color: var(--text-color-dark);
    flex-grow: 1;
}

/* Challenges and Opportunities */
.page-resources---1 .split-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.page-resources---1 .content-block {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources---1 .content-block h3 {
    text-align: left;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-resources---1 .content-block ul {
    list-style: square;
    margin-left: 20px;
}

.page-resources---1 .content-block li {
    margin-bottom: 10px;
}

/* FAQ Section */
.page-resources---1 .faq-section {
    background-color: var(--background-light);
}

.page-resources---1 .faq-list {
    margin-top: 30px;
}

.page-resources---1 .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-resources---1 .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-resources---1 .faq-question:hover {
    background: #f0f0f0;
}

.page-resources---1 .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--text-color-dark);
    text-align: left;
    flex-grow: 1;
}

.page-resources---1 .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-resources---1 .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-resources---1 .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: var(--text-color-dark);
}

.page-resources---1 .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-resources---1 .faq-answer p {
    margin-bottom: 0;
    font-size: 1.05em;
}

/* Call to Action Section */
.page-resources---1 .call-to-action {
    background: var(--secondary-color);
    color: var(--text-color-light);
    text-align: center;
    padding: 80px 0;
}

.page-resources---1 .call-to-action h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.page-resources---1 .call-to-action p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--text-color-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources---1 .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .page-resources---1 .hero-content,
    .page-resources---1 .hero-image {
        flex: 1 1 100%;
        text-align: center;
    }

    .page-resources---1 .hero-content h1 {
        font-size: 2.5em;
        text-align: center;
    }

    .page-resources---1 .hero-content p {
        font-size: 1.1em;
        text-align: center;
    }

    .page-resources---1 .split-content {
        flex-direction: column;
    }

    .page-resources---1 .content-block {
        flex: 1 1 100%;
    }

    .page-resources---1 h1 {
        font-size: 2.5em;
    }

    .page-resources---1 h2 {
        font-size: 2em;
    }

    .page-resources---1 h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources---1 section {
        padding: 40px 0;
    }

    .page-resources---1 .hero-section {
        padding: 60px 0;
    }

    .page-resources---1 .hero-content h1 {
        font-size: 2em;
    }

    .page-resources---1 .hero-content p {
        font-size: 1em;
    }

    .page-resources---1 .cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin-right: 10px;
    }

    .page-resources---1 .trend-grid,
    .page-resources---1 .tv88-features {
        grid-template-columns: 1fr;
    }

    .page-resources---1 .trend-item img,
    .page-resources---1 .feature-item img {
        height: 200px;
    }

    .page-resources---1 .faq-question {
        padding: 15px 20px;
    }

    .page-resources---1 .faq-question h3 {
        font-size: 1.1em;
    }

    .page-resources---1 .faq-answer {
        padding: 15px 20px;
    }

    .page-resources---1 .call-to-action {
        padding: 50px 0;
    }

    .page-resources---1 .call-to-action h2 {
        font-size: 1.8em;
    }

    .page-resources---1 .call-to-action p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources---1 h1 {
        font-size: 1.8em;
    }

    .page-resources---1 h2 {
        font-size: 1.6em;
    }

    .page-resources---1 h3 {
        font-size: 1.4em;
    }

    .page-resources---1 p {
        font-size: 0.95em;
    }

    .page-resources---1 .cta-button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }

    .page-resources---1 .secondary-button {
        margin-top: 0;
    }

    .page-resources---1 .faq-question h3 {
        font-size: 1em;
    }
}