/* style/n-h.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #B22222; /* Deep Red */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --background-dark: #0d0d0d;
    --background-light: #f5f5f5;
    --border-color: #333;
}

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

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

.page-n-h .hero-banner {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-n-h .hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-n-h .hero-title {
    font-size: 3.5em;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-n-h .hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-n-h .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-n-h .cta-button:hover {
    background-color: #FFC107;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-n-h .small-button {
    padding: 12px 25px;
    font-size: 1em;
}

.page-n-h .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-n-h p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-n-h strong {
    color: var(--primary-color);
}

.page-n-h .introduction-section, .page-n-h .why-choose-section, .page-n-h .guide-section, .page-n-h .tips-section, .page-n-h .support-section, .page-n-h .faq-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-n-h .why-choose-section {
    background-color: #1a1a1a;
}

.page-n-h .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-n-h .feature-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-n-h .feature-image {
    width: 100%;
    max-width: 400px; /* Ensure images are not too small */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-n-h .feature-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-n-h .feature-item p {
    font-size: 1em;
    color: #ccc;
}

.page-n-h .guide-section {
    background-color: var(--background-dark);
}

.page-n-h .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-n-h .step-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.page-n-h .step-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-n-h .tips-section {
    background-color: #1a1a1a;
}

.page-n-h .tips-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-n-h .tips-list li {
    background-color: #2a2a2a;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-n-h .tips-list li strong {
    color: var(--primary-color);
}

.page-n-h .support-section {
    background-color: var(--background-dark);
}

.page-n-h .contact-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-n-h .contact-list li {
    background-color: #1a1a1a;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-n-h .contact-list li strong {
    color: var(--secondary-color);
}

.page-n-h .faq-section {
    background-color: #1a1a1a;
}

.page-n-h .faq-list {
    margin-top: 30px;
}

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

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

.page-n-h .faq-question:hover {
    background-color: #3a3a3a;
}

.page-n-h .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.page-n-h .faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.page-n-h .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 0 25px;
}

.page-n-h .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed to fit content */
    padding: 20px 25px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-n-h .hero-title {
        font-size: 3em;
    }
    .page-n-h .hero-description {
        font-size: 1.2em;
    }
    .page-n-h .section-title {
        font-size: 2em;
    }
    .page-n-h p, .page-n-h .tips-list li, .page-n-h .contact-list li {
        font-size: 1em;
    }
    .page-n-h .feature-title {
        font-size: 1.6em;
    }
    .page-n-h .step-title {
        font-size: 1.4em;
    }
    .page-n-h .faq-question h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-n-h .hero-banner {
        padding: 80px 0;
    }
    .page-n-h .hero-title {
        font-size: 2.5em;
    }
    .page-n-h .hero-description {
        font-size: 1em;
    }
    .page-n-h .cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
    .page-n-h .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-n-h .introduction-section, .page-n-h .why-choose-section, .page-n-h .guide-section, .page-n-h .tips-section, .page-n-h .support-section, .page-n-h .faq-section {
        padding: 40px 0;
    }
    .page-n-h .features-grid, .page-n-h .steps-grid {
        grid-template-columns: 1fr;
    }
    .page-n-h .feature-item, .page-n-h .step-item {
        padding: 20px;
    }
    .page-n-h .faq-question {
        padding: 15px 20px;
    }
    .page-n-h .faq-answer {
        padding: 0 20px;
    }
    .page-n-h .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-n-h .hero-title {
        font-size: 2em;
    }
    .page-n-h .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-n-h .section-title {
        font-size: 1.5em;
    }
    .page-n-h .feature-title {
        font-size: 1.4em;
    }
    .page-n-h .step-title {
        font-size: 1.2em;
    }
    .page-n-h .faq-question h3 {
        font-size: 1em;
    }
}