.page-n-h {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-n-h__hero {
    background: linear-gradient(135deg, #000080 0%, #000050 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-n-h__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract-gold-pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-n-h__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-n-h__main-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-n-h__main-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-n-h__main-title a:hover {
    text-decoration: underline;
}

.page-n-h__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    opacity: 0.9;
}

.page-n-h__hero-description a {
    color: #FFD700;
    text-decoration: underline;
}

.page-n-h__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-n-h__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-n-h__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    border: 2px solid #FFD700;
}

.page-n-h__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-n-h__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-n-h__btn--secondary:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-2px);
}

.page-n-h__hero-image-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin-top: 30px;
}

.page-n-h__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-n-h__section {
    padding: 60px 0;
    text-align: center;
}

.page-n-h__section--alt-bg {
    background-color: #F8F8F8;
}

.page-n-h__section-title {
    font-size: 2.5em;
    color: #000080; /* Dark Blue */
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.page-n-h__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    border-radius: 2px;
}

.page-n-h__section-title a {
    color: #000080;
    text-decoration: none;
}

.page-n-h__section-title a:hover {
    text-decoration: underline;
}

.page-n-h__section p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-n-h__section p a {
    color: #000080;
    text-decoration: underline;
}

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

.page-n-h__feature-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-n-h__feature-icon {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-n-h__feature-title {
    font-size: 1.5em;
    color: #000080; /* Dark Blue */
    margin-bottom: 15px;
}

.page-n-h__feature-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

.page-n-h__feature-card p a {
    color: #000080;
    text-decoration: underline;
}

.page-n-h__steps-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-n-h__steps-list li {
    background-color: #FFFFFF;
    border-left: 5px solid #FFD700; /* Gold */
    margin-bottom: 25px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-n-h__step-title {
    font-size: 1.4em;
    color: #000080; /* Dark Blue */
    margin-bottom: 10px;
}

.page-n-h__step-title a {
    color: #000080;
    text-decoration: none;
}

.page-n-h__step-title a:hover {
    text-decoration: underline;
}

.page-n-h__steps-list p {
    font-size: 1em;
    color: #555;
    margin-bottom: 0;
}

.page-n-h__steps-list p a {
    color: #000080;
    text-decoration: underline;
}

.page-n-h__cta-bottom {
    margin-top: 40px;
}

.page-n-h__promo-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 20px auto;
    text-align: left;
}

.page-n-h__promo-list li {
    background-color: #FFFFFF;
    border-left: 4px solid #FFD700;
    margin-bottom: 15px;
    padding: 15px 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-n-h__promo-list li p {
    margin: 0;
    font-size: 1.05em;
    color: #333;
}

.page-n-h__promo-list li p a {
    color: #000080;
    text-decoration: underline;
}

.page-n-h__promo-note {
    font-style: italic;
    color: #666;
    font-size: 0.95em;
    margin-top: 30px;
}

.page-n-h__promo-note a {
    color: #000080;
    text-decoration: underline;
}

.page-n-h__tips-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-n-h__tips-list li {
    background-color: #FFFFFF;
    border-bottom: 1px solid #EEE;
    padding: 20px 0;
}

.page-n-h__tips-list li:last-child {
    border-bottom: none;
}

.page-n-h__tip-title {
    font-size: 1.3em;
    color: #000080; /* Dark Blue */
    margin-bottom: 10px;
}

.page-n-h__faq {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-n-h__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-n-h__faq-question {
    background-color: #F0F8FF;
    color: #000080;
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-n-h__faq-question:hover {
    background-color: #E6F2FF;
}

.page-n-h__faq-question a {
    color: #000080;
    text-decoration: none;
}

.page-n-h__faq-question a:hover {
    text-decoration: underline;
}

.page-n-h__faq-answer {
    padding: 15px 25px;
    color: #444;
    font-size: 1em;
    border-top: 1px solid #E0E0E0;
    display: none; /* Hidden by default */
}

.page-n-h__faq-answer.active {
    display: block;
}

.page-n-h__faq-answer a {
    color: #000080;
    text-decoration: underline;
}

.page-n-h__section--cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Gold to Orange */
    color: #000080;
    padding: 80px 20px;
}

.page-n-h__cta-content h2 {
    color: #000080;
}

.page-n-h__cta-content h2 a {
    color: #000080;
    text-decoration: none;
}

.page-n-h__cta-content h2 a:hover {
    text-decoration: underline;
}

.page-n-h__cta-content p {
    color: #000080;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-n-h__cta-content p a {
    color: #000080;
    text-decoration: underline;
}

.page-n-h__btn--hero {
    background-color: #000080; /* Dark Blue */
    color: #FFD700; /* Gold */
    border: 2px solid #000080;
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
}

.page-n-h__btn--hero:hover {
    background-color: #000050;
    border-color: #000050;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-n-h__main-title {
        font-size: 2.8em;
    }
    .page-n-h__hero-description {
        font-size: 1.1em;
    }
    .page-n-h__section-title {
        font-size: 2em;
    }
    .page-n-h__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-n-h__hero {
        padding: 60px 15px;
    }
    .page-n-h__main-title {
        font-size: 2.2em;
    }
    .page-n-h__hero-description {
        font-size: 1em;
    }
    .page-n-h__hero-actions {
        flex-direction: column;
    }
    .page-n-h__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-n-h__section {
        padding: 40px 0;
    }
    .page-n-h__section-title {
        font-size: 1.8em;
    }
    .page-n-h__feature-icon {
        width: 150px;
    }
    .page-n-h__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-n-h__faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-n-h__main-title {
        font-size: 1.8em;
    }
    .page-n-h__hero-description {
        font-size: 0.9em;
    }
    .page-n-h__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-n-h__section-title {
        font-size: 1.5em;
    }
    .page-n-h__feature-icon {
        width: 120px;
    }
    .page-n-h__steps-list li, .page-n-h__promo-list li, .page-n-h__faq-item {
        padding: 15px 20px;
    }
    .page-n-h__step-title, .page-n-h__tip-title, .page-n-h__faq-question {
        font-size: 1em;
    }
    .page-n-h__btn--hero {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}