/* style/industry-news-company-profiles.css */
.page-industry-news-company-profiles {
    font-family: 'Arial', sans-serif;
    color: #f5e5c5; /* Light text for dark background */
    background-color: #0A1A3A; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-industry-news-company-profiles__hero-section {
    background: linear-gradient(135deg, #0A1A3A, #1A3A6A);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
}

.page-industry-news-company-profiles__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for hero title */
}

.page-industry-news-company-profiles__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f5e5c5;
}

.page-industry-news-company-profiles__hero-button,
.page-industry-news-company-profiles__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1A3A; /* Dark text for gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-industry-news-company-profiles__hero-button:hover,
.page-industry-news-company-profiles__button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-industry-news-company-profiles__button--center {
    display: block;
    margin: 40px auto;
    text-align: center;
    width: fit-content;
}

.page-industry-news-company-profiles__content-section {
    padding: 60px 0;
}

.page-industry-news-company-profiles__content-section:nth-child(even) {
    background-color: #0A1A3A; /* Dark blue background */
}

.page-industry-news-company-profiles__content-section:nth-child(odd) {
    background-color: #1a2a4a; /* Slightly lighter dark blue for contrast */
}

.page-industry-news-company-profiles__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 30px;
    text-align: center;
}

.page-industry-news-company-profiles__section-description {
    font-size: 1.1em;
    color: #f5e5c5;
    text-align: center;
    margin-bottom: 50px;
}

.page-industry-news-company-profiles__sub-section-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub titles */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-industry-news-company-profiles__text-content p,
.page-industry-news-company-profiles__text-content ul {
    color: #f5e5c5;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-industry-news-company-profiles__text-content ul {
    list-style-type: disc;
    padding-left: 25px;
}

.page-industry-news-company-profiles__text-content li {
    margin-bottom: 10px;
}

.page-industry-news-company-profiles__grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-industry-news-company-profiles__grid-layout {
        grid-template-columns: 1fr 1fr;
    }
    .page-industry-news-company-profiles__grid-layout.page-industry-news-company-profiles__grid-layout--reversed {
        grid-template-columns: 1fr 1fr;
    }
    .page-industry-news-company-profiles__grid-layout.page-industry-news-company-profiles__grid-layout--reversed .page-industry-news-company-profiles__text-content {
        order: 2;
    }
    .page-industry-news-company-profiles__grid-layout.page-industry-news-company-profiles__grid-layout--reversed .page-industry-news-company-profiles__image-wrapper {
        order: 1;
    }
}

.page-industry-news-company-profiles__image-wrapper {
    text-align: center;
}

.page-industry-news-company-profiles__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-industry-news-company-profiles__image-small {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    display: block;
}

.page-industry-news-company-profiles__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news-company-profiles__feature-item {
    background-color: #1a2a4a; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-industry-news-company-profiles__feature-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-industry-news-company-profiles__feature-item p {
    color: #f5e5c5;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-industry-news-company-profiles__feature-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-industry-news-company-profiles__analysis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .page-industry-news-company-profiles__analysis-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-industry-news-company-profiles__analysis-item {
    background-color: #1a2a4a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news-company-profiles__analysis-item p {
    color: #f5e5c5;
    font-size: 1.1em;
}

.page-industry-news-company-profiles__note {
    font-style: italic;
    color: #f5e5c5;
    margin-top: 20px;
    text-align: center;
}

.page-industry-news-company-profiles__faq-item {
    background-color: #1a2a4a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-industry-news-company-profiles__faq-question {
    color: #FFD700; /* Gold for FAQ questions */
    font-size: 1.3em;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-industry-news-company-profiles__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-industry-news-company-profiles__faq-question.active::after {
    transform: rotate(45deg);
}

.page-industry-news-company-profiles__faq-answer {
    color: #f5e5c5;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-top: 0;
}

.page-industry-news-company-profiles__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-industry-news-company-profiles__hero-title {
        font-size: 2.8em;
    }
    .page-industry-news-company-profiles__hero-subtitle {
        font-size: 1.3em;
    }
    .page-industry-news-company-profiles__section-title {
        font-size: 2em;
    }
    .page-industry-news-company-profiles__sub-section-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-industry-news-company-profiles__hero-section {
        padding: 80px 0;
    }
    .page-industry-news-company-profiles__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-company-profiles__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news-company-profiles__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-company-profiles__sub-section-title {
        font-size: 1.4em;
    }
    .page-industry-news-company-profiles__content-section {
        padding: 40px 0;
    }
    .page-industry-news-company-profiles__features-grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news-company-profiles__grid-layout {
        grid-template-columns: 1fr;
    }
    .page-industry-news-company-profiles__grid-layout.page-industry-news-company-profiles__grid-layout--reversed .page-industry-news-company-profiles__text-content {
        order: unset;
    }
    .page-industry-news-company-profiles__grid-layout.page-industry-news-company-profiles__grid-layout--reversed .page-industry-news-company-profiles__image-wrapper {
        order: unset;
    }
}

@media (max-width: 480px) {
    .page-industry-news-company-profiles__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-company-profiles__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-company-profiles__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-company-profiles__hero-button,
    .page-industry-news-company-profiles__button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-industry-news-company-profiles__faq-question {
        font-size: 1.1em;
    }
}