/* style/beginner-guide-customer-support.css */
:root {
    --nohu666-primary-color: #2D3E50;
    --nohu666-accent-color: #F39C12;
    --nohu666-text-dark: #333333;
    --nohu666-text-light: #ffffff;
    --nohu666-background-light: #f9f9f9;
    --nohu666-border-color: #e0e0e0;
}

.page-beginner-guide-customer-support {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--nohu666-text-dark);
    background-color: var(--nohu666-background-light);
}

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

/* Hero Section */
.page-beginner-guide-customer-support__hero-section {
    background: linear-gradient(135deg, var(--nohu666-primary-color) 0%, #3a5068 100%);
    color: var(--nohu666-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-customer-support__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_lines,digital_pattern,subtle_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-beginner-guide-customer-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: var(--nohu666-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-customer-support__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
}

/* General Section Styles */
.page-beginner-guide-customer-support__content-section {
    padding: 60px 0;
    text-align: center;
}

.page-beginner-guide-customer-support__content-section:nth-child(odd) {
    background-color: var(--nohu666-background-light);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) {
    background-color: var(--nohu666-primary-color);
    color: var(--nohu666-text-light);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__section-title,
.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__section-description,
.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__card-title,
.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__card-text,
.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__contact-title,
.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__contact-text,
.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__info-title,
.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__info-text,
.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__step-title,
.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__step-text {
    color: var(--nohu666-text-light);
}

.page-beginner-guide-customer-support__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--nohu666-primary-color);
}

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

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__section-title {
    color: var(--nohu666-accent-color);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.page-beginner-guide-customer-support__button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-beginner-guide-customer-support__button--primary {
    background-color: var(--nohu666-accent-color);
    color: var(--nohu666-text-light);
    border: 2px solid var(--nohu666-accent-color);
}

.page-beginner-guide-customer-support__button--primary:hover {
    background-color: #e08e0e;
    border-color: #e08e0e;
    transform: translateY(-2px);
}

.page-beginner-guide-customer-support__button--secondary {
    background-color: transparent;
    color: var(--nohu666-accent-color);
    border: 2px solid var(--nohu666-accent-color);
}

.page-beginner-guide-customer-support__button--secondary:hover {
    background-color: var(--nohu666-accent-color);
    color: var(--nohu666-text-light);
    transform: translateY(-2px);
}

/* Grid Layouts */
.page-beginner-guide-customer-support__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-customer-support__card {
    background-color: var(--nohu666-text-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;
    border-bottom: 4px solid var(--nohu666-accent-color);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__card {
    background-color: #3a5068;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-bottom-color: var(--nohu666-accent-color);
}

.page-beginner-guide-customer-support__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-customer-support__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.page-beginner-guide-customer-support__card-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--nohu666-primary-color);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__card-title {
    color: var(--nohu666-accent-color);
}

.page-beginner-guide-customer-support__card-text {
    font-size: 0.95em;
    color: #666;
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__card-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Methods */
.page-beginner-guide-customer-support__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-customer-support__contact-item {
    background-color: var(--nohu666-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--nohu666-border-color);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__contact-item {
    background-color: #3a5068;
    border-color: #4a6078;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-customer-support__contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-beginner-guide-customer-support__contact-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.page-beginner-guide-customer-support__contact-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--nohu666-primary-color);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__contact-title {
    color: var(--nohu666-accent-color);
}

.page-beginner-guide-customer-support__contact-text {
    font-size: 1em;
    margin-bottom: 20px;
    color: #666;
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__contact-text {
    color: rgba(255, 255, 255, 0.75);
}

/* Preparation Section */
.page-beginner-guide-customer-support__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-beginner-guide-customer-support__info-item {
    background-color: var(--nohu666-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border-left: 5px solid var(--nohu666-primary-color);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__info-item {
    background-color: #3a5068;
    border-left-color: var(--nohu666-accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-customer-support__info-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.page-beginner-guide-customer-support__info-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--nohu666-primary-color);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__info-title {
    color: var(--nohu666-accent-color);
}

.page-beginner-guide-customer-support__info-text {
    font-size: 1em;
    margin-bottom: 15px;
    color: #666;
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__info-text {
    color: rgba(255, 255, 255, 0.75);
}

.page-beginner-guide-customer-support__list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 0;
    color: #555;
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__list {
    color: rgba(255, 255, 255, 0.8);
}

.page-beginner-guide-customer-support__list li {
    margin-bottom: 8px;
}

.page-beginner-guide-customer-support__link {
    color: var(--nohu666-accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-beginner-guide-customer-support__link:hover {
    color: #e08e0e;
    text-decoration: underline;
}

/* Steps Section */
.page-beginner-guide-customer-support__step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-customer-support__step-item {
    background-color: var(--nohu666-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--nohu666-border-color);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__step-item {
    background-color: #3a5068;
    border-color: #4a6078;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-customer-support__step-number {
    font-size: 3em;
    font-weight: bold;
    color: var(--nohu666-accent-color);
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-customer-support__step-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--nohu666-primary-color);
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__step-title {
    color: var(--nohu666-accent-color);
}

.page-beginner-guide-customer-support__step-text {
    font-size: 1em;
    color: #666;
}

.page-beginner-guide-customer-support__content-section:nth-child(even) .page-beginner-guide-customer-support__step-text {
    color: rgba(255, 255, 255, 0.75);
}

/* CTA Section */
.page-beginner-guide-customer-support__cta {
    background-color: var(--nohu666-primary-color);
    color: var(--nohu666-text-light);
    padding: 80px 0;
}

.page-beginner-guide-customer-support__cta .page-beginner-guide-customer-support__section-title {
    color: var(--nohu666-accent-color);
}

.page-beginner-guide-customer-support__cta .page-beginner-guide-customer-support__section-description {
    color: rgba(255, 255, 255, 0.8);
}

.page-beginner-guide-customer-support__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

    .page-beginner-guide-customer-support__hero-section,
    .page-beginner-guide-customer-support__content-section,
    .page-beginner-guide-customer-support__cta {
        padding: 50px 0;
    }

    .page-beginner-guide-customer-support__grid,
    .page-beginner-guide-customer-support__contact-grid,
    .page-beginner-guide-customer-support__info-grid,
    .page-beginner-guide-customer-support__step-grid {
        grid-template-columns: 1fr;
    }

    .page-beginner-guide-customer-support__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-beginner-guide-customer-support__button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-customer-support__hero-title {
        font-size: 2em;
    }

    .page-beginner-guide-customer-support__hero-subtitle {
        font-size: 1em;
    }

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

    .page-beginner-guide-customer-support__button {
        padding: 10px 20px;
        font-size: 1em;
    }
}