/* style/n-h.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Deep Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #222222;
    --border-color: #e0e0e0;
}

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

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

.page-n-h h1, .page-n-h h2, .page-n-h h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-n-h h1 {
    font-size: 2.8em;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h h2 {
    font-size: 2.2em;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary-color);
}

.page-n-h h3 {
    font-size: 1.6em;
    color: var(--text-dark);
}

.page-n-h p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-n-h a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-n-h a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Buttons */
.page-n-h .cta-button, .page-n-h .primary-button, .page-n-h .secondary-button, .page-n-h .tertiary-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    margin: 10px 5px;
    text-decoration: none;
    cursor: pointer;
}

.page-n-h .cta-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1.2em;
    padding: 15px 30px;
    border: 2px solid var(--secondary-color);
}

.page-n-h .cta-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-n-h .primary-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-n-h .primary-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-n-h .secondary-button {
    background: none;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-n-h .secondary-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-n-h .tertiary-button {
    background: var(--primary-color);
    color: var(--text-dark);
    border: none;
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-n-h .tertiary-button:hover {
    background: darken(var(--primary-color), 10%);
    color: var(--secondary-color);
}

/* Hero Section */
.page-n-h .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%); /* Adjusted for contrast */
}

.page-n-h .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-n-h .hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 900px; /* Adjust max-width for images in hero */
}

.page-n-h .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-n-h .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-n-h .hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-n-h .hero-content p {
    color: var(--text-light);
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Sections */
.page-n-h .intro-section, .page-n-h .features-section, .page-n-h .guide-section, .page-n-h .promotions-section, .page-n-h .tips-section, .page-n-h .security-faq-section, .page-n-h .conclusion-section {
    padding: 60px 0;
}

.page-n-h .intro-section {
    background-color: var(--background-light);
}

.page-n-h .intro-section .container {
    text-align: center;
}

.page-n-h .features-section {
    background-color: #f0f0f0;
}

.page-n-h .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-n-h .feature-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    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.15);
}

.page-n-h .feature-icon {
    width: 250px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-n-h .feature-item h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

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

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

.page-n-h .step-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-n-h .step-icon {
    width: 200px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-n-h .step-item h3 {
    color: var(--secondary-color);
    font-size: 1.3em;
    margin-bottom: 15px;
}

.page-n-h .promotions-section {
    background-color: #f0f0f0;
}

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

.page-n-h .promo-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.page-n-h .promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-n-h .promo-card h3 {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-n-h .promo-card h3 a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-n-h .promo-card h3 a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-n-h .promo-card p {
    padding: 0 15px;
    font-size: 0.95em;
    text-align: center;
}

.page-n-h .note {
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    color: #666;
}

.page-n-h .tips-section {
    background-color: var(--background-light);
}

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

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

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

.page-n-h .large-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-n-h .security-faq-section {
    background-color: #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.page-n-h .security-info, .page-n-h .faq-area {
    flex: 1;
    min-width: 300px;
}

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

.page-n-h .security-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.page-n-h .security-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-n-h .faq-area h2 {
    text-align: left;
}

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

/* FAQ styles */
.faq-item {
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1em;
    color: var(--text-dark);
    text-align: left;
    flex-grow: 1;
}

.faq-toggle {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.page-n-h .conclusion-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.page-n-h .conclusion-section h2 {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-n-h .conclusion-section p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-n-h h1 {
        font-size: 2.2em;
    }
    .page-n-h h2 {
        font-size: 1.8em;
    }
    .page-n-h h3 {
        font-size: 1.3em;
    }
    .page-n-h .hero-section {
        padding: 40px 15px;
    }
    .page-n-h .hero-content p {
        font-size: 1em;
    }
    .page-n-h .cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-n-h .security-faq-section {
        flex-direction: column;
    }
    .page-n-h .security-info, .page-n-h .faq-area {
        width: 100%;
        min-width: unset;
    }
    .page-n-h .faq-area h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-n-h h1 {
        font-size: 1.8em;
    }
    .page-n-h h2 {
        font-size: 1.6em;
    }
    .page-n-h h3 {
        font-size: 1.2em;
    }
    .page-n-h .feature-grid, .page-n-h .guide-steps, .page-n-h .promo-cards {
        grid-template-columns: 1fr;
    }
    .page-n-h .feature-icon, .page-n-h .step-icon {
        width: 180px;
        height: 130px;
    }
    .page-n-h .promo-image {
        height: 180px;
    }
    .page-n-h .hero-image {
        margin-bottom: 20px;
    }
    .page-n-h .hero-image img {
        border-radius: 4px;
    }
    .faq-question {
        padding: 12px;
        flex-direction: row;
        align-items: center;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-toggle {
        font-size: 18px;
        margin-left: 10px;
        transform: none; /* Reset for mobile, will be handled by JS */
    }
}

@media (max-width: 480px) {
    .page-n-h .container {
        padding: 15px;
    }
    .page-n-h h1 {
        font-size: 1.5em;
    }
    .page-n-h h2 {
        font-size: 1.4em;
    }
    .page-n-h .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-n-h .feature-icon, .page-n-h .step-icon {
        width: 150px;
        height: 100px;
    }
    .page-n-h .promo-image {
        height: 150px;
    }
}