/* style/zowin-news-maintenance-notices.css */
.page-zowin-news-maintenance-notices {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A2B4C; /* Main brand color */
    line-height: 1.6;
    scroll-behavior: smooth;
}

.page-zowin-news-maintenance-notices__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-zowin-news-maintenance-notices__hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF; /* White text on hero */
    background: linear-gradient(135deg, #1A2B4C 0%, #0D1A30 100%); /* Dark gradient */
    overflow: hidden;
}

.page-zowin-news-maintenance-notices__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-zowin-news-maintenance-notices__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 1;
}

.page-zowin-news-maintenance-notices__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-zowin-news-maintenance-notices__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

.page-zowin-news-maintenance-notices__subtitle a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-zowin-news-maintenance-notices__subtitle a:hover {
    text-decoration: underline;
}

/* General Section Styles */
.page-zowin-news-maintenance-notices__section {
    padding: 60px 0;
    background-color: #1A2B4C; /* Consistent dark background */
    border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold border */
}

.page-zowin-news-maintenance-notices__section:nth-of-type(even) {
    background-color: #0D1A30; /* Slightly darker background for alternating sections */
}

.page-zowin-news-maintenance-notices__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-zowin-news-maintenance-notices__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-zowin-news-maintenance-notices__container p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-zowin-news-maintenance-notices__container h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-zowin-news-maintenance-notices__container ul,
.page-zowin-news-maintenance-notices__container ol {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-zowin-news-maintenance-notices__container ul li,
.page-zowin-news-maintenance-notices__container ol li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-zowin-news-maintenance-notices__container a {
    color: #FFD700;
    text-decoration: none;
}

.page-zowin-news-maintenance-notices__container a:hover {
    text-decoration: underline;
}

.page-zowin-news-maintenance-notices__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin: 30px 0;
    display: block;
}

.page-zowin-news-maintenance-notices__image--centered {
    margin-left: auto;
    margin-right: auto;
}

.page-zowin-news-maintenance-notices__image--small {
    max-width: 150px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* FAQ Section */
.page-zowin-news-maintenance-notices__faq-item {
    background-color: #0D1A30;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    transition: background-color 0.3s ease;
}

.page-zowin-news-maintenance-notices__faq-item:hover {
    background-color: #1F345C;
}

.page-zowin-news-maintenance-notices__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.page-zowin-news-maintenance-notices__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-zowin-news-maintenance-notices__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-zowin-news-maintenance-notices__faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 10px;
    margin-top: 0;
}

.page-zowin-news-maintenance-notices__faq-answer.active {
    max-height: 500px; /* Adjust as needed for content */
    padding: 10px;
    margin-top: 10px;
}

/* Buttons */
.page-zowin-news-maintenance-notices__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    margin-top: 20px;
}

.page-zowin-news-maintenance-notices__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2B4C; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-zowin-news-maintenance-notices__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #0D1A30;
}

/* Keyword highlighting */
.page-zowin-news-maintenance-notices .keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-zowin-news-maintenance-notices__title {
        font-size: 2.5em;
    }

    .page-zowin-news-maintenance-notices__subtitle {
        font-size: 1.2em;
    }

    .page-zowin-news-maintenance-notices__section-title {
        font-size: 2em;
    }

    .page-zowin-news-maintenance-notices__container h3 {
        font-size: 1.5em;
    }

    .page-zowin-news-maintenance-notices__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-zowin-news-maintenance-notices__hero {
        padding: 80px 0;
    }

    .page-zowin-news-maintenance-notices__title {
        font-size: 2em;
    }

    .page-zowin-news-maintenance-notices__subtitle {
        font-size: 1em;
    }

    .page-zowin-news-maintenance-notices__section {
        padding: 40px 0;
    }

    .page-zowin-news-maintenance-notices__section-title {
        font-size: 1.8em;
    }

    .page-zowin-news-maintenance-notices__container p,
    .page-zowin-news-maintenance-notices__container ul li,
    .page-zowin-news-maintenance-notices__container ol li {
        font-size: 0.95em;
    }

    .page-zowin-news-maintenance-notices__faq-question {
        font-size: 1.2em;
    }
}