/* style/newbie-guide-customer-support.css */
.page-newbie-guide-customer-support {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-newbie-guide-customer-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-newbie-guide-customer-support__hero {
    background: linear-gradient(135deg, #0A2342, #1A3F70);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-newbie-guide-customer-support__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-newbie-guide-customer-support__hero-pulse 10s infinite alternate;
}

@keyframes page-newbie-guide-customer-support__hero-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 0.6; }
}

.page-newbie-guide-customer-support__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide-customer-support__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.page-newbie-guide-customer-support__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-newbie-guide-customer-support__section:nth-child(even) {
    background-color: #f0f4f8;
}

.page-newbie-guide-customer-support__section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-newbie-guide-customer-support__section-title .highlight {
    color: #FFD700;
}

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

.page-newbie-guide-customer-support__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-newbie-guide-customer-support__channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-newbie-guide-customer-support__channel-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #0A2342;
}

.page-newbie-guide-customer-support__channel-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-newbie-guide-customer-support__channel-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-newbie-guide-customer-support__channel-heading {
    font-size: 1.8em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-newbie-guide-customer-support__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-newbie-guide-customer-support__list li {
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    font-size: 1.1em;
    color: #333;
}

.page-newbie-guide-customer-support__list li strong {
    color: #0A2342;
    font-weight: bold;
}

.page-newbie-guide-customer-support__list--numbered {
    counter-reset: list-counter;
}

.page-newbie-guide-customer-support__list--numbered li {
    position: relative;
    padding-left: 50px;
    text-align: left;
}

.page-newbie-guide-customer-support__list--numbered li::before {
    counter-increment: list-counter;
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #0A2342;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-customer-support__faq-item {
    background-color: #f0f4f8;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.page-newbie-guide-customer-support__faq-item:hover {
    background-color: #e6edf5;
}

.page-newbie-guide-customer-support__faq-question {
    color: #0A2342;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* Space for arrow icon */
}

.page-newbie-guide-customer-support__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-newbie-guide-customer-support__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg); /* No rotation for '-' */
}

.page-newbie-guide-customer-support__faq-answer {
    color: #555;
    font-size: 1.05em;
    display: none; /* Hidden by default */
    padding-top: 10px;
    border-top: 1px dashed #e0e6ed;
    margin-top: 10px;
}

.page-newbie-guide-customer-support__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.page-newbie-guide-customer-support__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-newbie-guide-customer-support__button {
    display: inline-block;
    background-color: #0A2342;
    color: #FFD700;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #0A2342;
    cursor: pointer;
}

.page-newbie-guide-customer-support__button:hover {
    background-color: #1A3F70;
    transform: translateY(-2px);
    color: #fff;
}

.page-newbie-guide-customer-support__button--primary {
    background-color: #FFD700;
    color: #0A2342;
    border-color: #FFD700;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-newbie-guide-customer-support__button--primary:hover {
    background-color: #e6c200;
    color: #0A2342;
    border-color: #e6c200;
}

.page-newbie-guide-customer-support__button--secondary {
    background-color: transparent;
    color: #0A2342;
    border-color: #0A2342;
}

.page-newbie-guide-customer-support__button--secondary:hover {
    background-color: #0A2342;
    color: #FFD700;
}

.page-newbie-guide-customer-support__cta-group {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-newbie-guide-customer-support__image {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-newbie-guide-customer-support__image--large {
    max-width: 800px;
}

.page-newbie-guide-customer-support__image--small {
    max-width: 500px;
}

.page-newbie-guide-customer-support__cta-final {
    background: linear-gradient(135deg, #0A2342, #1A3F70);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 0;
    box-shadow: none;
}

.page-newbie-guide-customer-support__cta-final .page-newbie-guide-customer-support__section-title {
    color: #FFD700;
}

.page-newbie-guide-customer-support__cta-final .page-newbie-guide-customer-support__section-title::after {
    background-color: #FFD700;
}

.page-newbie-guide-customer-support__cta-final .page-newbie-guide-customer-support__section-description {
    color: #e0e0e0;
}

.page-newbie-guide-customer-support__cta-button--large {
    font-size: 1.4em;
    padding: 18px 40px;
}

.page-newbie-guide-customer-support__cta-final-content {
    max-width: 900px;
}

.keyword {
    font-weight: bold;
    color: #0A2342;
}

.page-newbie-guide-customer-support__hero .keyword {
    color: #FFD700;
}

.page-newbie-guide-customer-support__cta-final .keyword {
    color: #FFD700;
}

/* Scroll-to-top button styles (if enabled by JS) */
.scroll-to-top {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: #FFD700;
    color: #0A2342;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-to-top:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-newbie-guide-customer-support__title {
        font-size: 2.5em;
    }

    .page-newbie-guide-customer-support__section-title {
        font-size: 2em;
    }

    .page-newbie-guide-customer-support__subtitle,
    .page-newbie-guide-customer-support__section-description,
    .page-newbie-guide-customer-support__list li,
    .page-newbie-guide-customer-support__faq-answer {
        font-size: 1em;
    }

    .page-newbie-guide-customer-support__channel-grid {
        grid-template-columns: 1fr;
    }

    .page-newbie-guide-customer-support__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-newbie-guide-customer-support__button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    
    .page-newbie-guide-customer-support__list--numbered li {
        padding-left: 40px;
    }

    .page-newbie-guide-customer-support__list--numbered li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }

    .page-newbie-guide-customer-support__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-newbie-guide-customer-support__hero {
        padding: 60px 0;
    }

    .page-newbie-guide-customer-support__title {
        font-size: 2em;
    }

    .page-newbie-guide-customer-support__section {
        padding: 40px 0;
    }

    .page-newbie-guide-customer-support__section-title {
        font-size: 1.8em;
    }

    .page-newbie-guide-customer-support__cta-button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}