/* style/n-h.css */
.page-n-h {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0;
    background-color: #0A192F;
    line-height: 1.6;
}

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

.page-n-h__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A3A5B 100%);
    color: #FFD700;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.page-n-h__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-n-h__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

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

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

.page-n-h__button--primary {
    background-color: #FFD700;
    color: #0A192F;
}

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

.page-n-h__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

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

.page-n-h__button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-n-h__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-n-h__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

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

.page-n-h__section:nth-of-type(even) {
    background-color: #1A2F4A;
}

.page-n-h__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-n-h__content-block {
    margin-bottom: 40px;
    background-color: #0E2038;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-n-h__content-block:hover {
    transform: translateY(-5px);
}

.page-n-h__content-subtitle {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-n-h__content-block p {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-n-h__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-n-h__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-n-h__list li strong {
    color: #FFD700;
}

.page-n-h__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-n-h__link:hover {
    color: #FFC107;
    text-decoration: underline;
}

.page-n-h__actions {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-n-h__cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    padding: 80px 0;
    text-align: center;
    color: #0A192F;
}

.page-n-h__cta-title {
    font-size: 3em;
    color: #0A192F;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-n-h__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #333;
}

.page-n-h__cta-description .page-n-h__link {
    color: #0A192F;
}

.page-n-h__cta-description .page-n-h__link:hover {
    color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-n-h__hero-title {
        font-size: 3em;
    }
    .page-n-h__section-title {
        font-size: 2.2em;
    }
    .page-n-h__content-subtitle {
        font-size: 1.8em;
    }
    .page-n-h__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-n-h__hero {
        padding: 60px 0;
    }
    .page-n-h__hero-title {
        font-size: 2.5em;
    }
    .page-n-h__hero-description {
        font-size: 1em;
    }
    .page-n-h__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-n-h__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-n-h__section {
        padding: 40px 0;
    }
    .page-n-h__section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .page-n-h__content-subtitle {
        font-size: 1.6em;
    }
    .page-n-h__content-block {
        padding: 20px;
    }
    .page-n-h__content-block p, .page-n-h__list li {
        font-size: 0.95em;
    }
    .page-n-h__cta {
        padding: 60px 0;
    }
    .page-n-h__cta-title {
        font-size: 2em;
    }
    .page-n-h__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-n-h__hero-title {
        font-size: 2em;
    }
    .page-n-h__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-n-h__section-title {
        font-size: 1.8em;
    }
    .page-n-h__content-subtitle {
        font-size: 1.4em;
    }
    .page-n-h__cta-title {
        font-size: 1.8em;
    }
    .page-n-h__list {
        margin-left: 10px;
    }
    .page-n-h__content-image {
        margin: 20px auto;
    }
}