:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.np-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.np-navigation {
    padding: 1rem 0;
}

.np-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.np-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.np-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.np-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.np-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.np-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.np-nav-link:hover,
.np-nav-link.np-active {
    color: var(--primary-color);
}

.np-main-content {
    min-height: calc(100vh - 400px);
}

.np-container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.np-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
}

.np-hero-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.np-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.np-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.np-hero-image {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.np-learn-section,
.np-intro-section,
.np-features-section,
.np-blog-section,
.np-about-intro,
.np-team-section,
.np-values-section,
.np-contact-section {
    padding: 4rem 0;
}

.np-section-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.np-learn-motto,
.np-team-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.np-learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.np-learn-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.np-learn-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.np-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.np-icon {
    width: 32px;
    height: 32px;
    color: white;
}

.np-learn-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.np-learn-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.np-intro-section {
    background-color: var(--bg-light);
}

.np-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.np-intro-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.np-intro-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.np-intro-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.np-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 1.5rem;
}

.np-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.np-cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.np-cta-box > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.np-lead-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.np-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.np-input-field {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.np-input-field:focus {
    outline: none;
    border-color: var(--primary-color);
}

.np-submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.np-submit-btn:hover {
    background: var(--primary-dark);
}

.np-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.np-feature-item {
    text-align: center;
}

.np-feature-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.np-feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.np-feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.np-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 1.5rem;
    text-align: center;
}

.np-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.np-page-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.np-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.np-blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.np-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.np-blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.np-blog-content {
    padding: 1.5rem;
}

.np-blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.np-blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.np-blog-title a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s;
}

.np-blog-title a:hover {
    color: var(--primary-color);
}

.np-blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.np-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.np-blog-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.np-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.np-read-more:hover {
    color: var(--primary-dark);
}

.np-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.np-about-main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.np-about-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.np-about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.np-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.np-team-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.np-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.np-team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
}

.np-team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.np-team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.np-team-bio {
    color: var(--text-light);
    line-height: 1.7;
}

.np-values-section {
    background-color: var(--bg-light);
}

.np-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.np-value-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.np-value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.np-value-icon svg {
    width: 100%;
    height: 100%;
}

.np-value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.np-value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.np-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.np-contact-info h2,
.np-contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.np-contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.np-contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.np-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.np-contact-icon svg {
    width: 24px;
    height: 24px;
}

.np-contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.np-contact-details p {
    color: var(--text-light);
    line-height: 1.7;
}

.np-contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.np-form-group {
    margin-bottom: 1.5rem;
}

.np-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.np-form-input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.np-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.np-form-input {
    resize: vertical;
    font-family: inherit;
}

.np-map-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.np-map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
}

.np-map-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.np-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
}

.np-post-article {
    background-color: var(--bg-white);
}

.np-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.np-post-header {
    margin-bottom: 3rem;
}

.np-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.np-post-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.np-post-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.np-post-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.np-post-featured-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.np-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.np-post-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.np-post-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.np-post-content p {
    margin-bottom: 1.5rem;
}

.np-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.np-back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.np-back-link:hover {
    color: var(--primary-dark);
}

.np-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.np-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.np-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.np-footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.np-footer-col p {
    color: #d1d5db;
    line-height: 1.7;
}

.np-footer-reg {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.np-footer-links {
    list-style: none;
}

.np-footer-links li {
    margin-bottom: 0.5rem;
}

.np-footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.np-footer-links a:hover {
    color: white;
}

.np-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

.np-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.np-cookie-banner.np-show {
    display: block;
}

.np-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.np-cookie-text {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.6;
}

.np-cookie-text strong {
    display: block;
    margin-bottom: 0.5rem;
}

.np-cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.np-cookie-buttons {
    display: flex;
    gap: 1rem;
}

.np-cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.np-cookie-btn.np-accept {
    background: var(--primary-color);
    color: white;
}

.np-cookie-btn.np-decline {
    background: #6b7280;
    color: white;
}

.np-cookie-btn:hover {
    opacity: 0.9;
}

.np-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.np-modal-overlay.np-show {
    display: flex;
}

.np-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.np-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
}

.np-modal-icon svg {
    width: 100%;
    height: 100%;
}

.np-modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.np-modal-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.np-modal-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.np-modal-btn:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .np-nav-menu {
        display: none;
    }
    
    .np-hero-title {
        font-size: 2rem;
    }
    
    .np-intro-content,
    .np-contact-grid,
    .np-about-content {
        grid-template-columns: 1fr;
    }
    
    .np-form-row {
        grid-template-columns: 1fr;
    }
    
    .np-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .np-page-title {
        font-size: 2rem;
    }
    
    .np-post-title {
        font-size: 2rem;
    }
}