:root {
--nwp-primary: #2c3e50;
--nwp-secondary: #3498db;
--nwp-accent: #e74c3c;
--nwp-text: #333333;
--nwp-text-light: #666666;
--nwp-bg: #ffffff;
--nwp-bg-light: #f8f9fa;
--nwp-border: #e0e0e0;
--nwp-shadow: rgba(0, 0, 0, 0.1);
--nwp-transition: all 0.3s ease;
}

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

html {
scroll-behavior: smooth;
}

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

img {
max-width: 100%;
height: auto;
display: block;
}

a {
text-decoration: none;
color: inherit;
transition: var(--nwp-transition);
}

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

.nwp-header {
background-color: var(--nwp-bg);
box-shadow: 0 2px 10px var(--nwp-shadow);
position: sticky;
top: 0;
z-index: 1000;
padding: 15px 0;
}

.nwp-nav-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
}

.nwp-logo-block {
display: flex;
align-items: center;
gap: 12px;
}

.nwp-logo-img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.nwp-logo-text {
font-size: 24px;
font-weight: 700;
color: var(--nwp-primary);
}

.nwp-navigation {
display: flex;
gap: 30px;
}

.nwp-nav-link {
color: var(--nwp-text);
font-weight: 500;
padding: 8px 0;
position: relative;
}

.nwp-nav-link:hover,
.nwp-nav-link.nwp-active {
color: var(--nwp-secondary);
}

.nwp-nav-link.nwp-active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background-color: var(--nwp-secondary);
}

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

.nwp-hero-section {
padding: 80px 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}

.nwp-hero-content {
max-width: 600px;
}

.nwp-hero-title {
font-size: 48px;
font-weight: 800;
margin-bottom: 20px;
line-height: 1.2;
}

.nwp-hero-subtitle {
font-size: 20px;
margin-bottom: 30px;
opacity: 0.95;
}

.nwp-cta-button {
display: inline-block;
padding: 15px 40px;
background-color: var(--nwp-accent);
color: white;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
transition: var(--nwp-transition);
}

.nwp-cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.nwp-hero-image {
margin-top: 40px;
}

.nwp-styled-img {
border-radius: 10px;
box-shadow: 0 10px 30px var(--nwp-shadow);
width: 100%;
}

.nwp-features-section,
.nwp-latest-posts,
.nwp-about-preview,
.nwp-blog-section,
.nwp-about-story,
.nwp-team-section,
.nwp-values-section,
.nwp-contact-section {
padding: 80px 0;
}

.nwp-section-title {
font-size: 36px;
font-weight: 700;
color: var(--nwp-primary);
text-align: center;
margin-bottom: 50px;
}

.nwp-features-grid,
.nwp-posts-grid,
.nwp-blog-grid,
.nwp-team-grid,
.nwp-values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.nwp-feature-card,
.nwp-post-card,
.nwp-blog-item,
.nwp-team-card,
.nwp-value-item {
background-color: var(--nwp-bg);
border-radius: 10px;
padding: 30px;
box-shadow: 0 5px 15px var(--nwp-shadow);
transition: var(--nwp-transition);
}

.nwp-feature-card:hover,
.nwp-post-card:hover,
.nwp-blog-item:hover,
.nwp-team-card:hover,
.nwp-value-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nwp-feature-icon,
.nwp-value-icon {
color: var(--nwp-secondary);
margin-bottom: 20px;
}

.nwp-feature-title,
.nwp-post-title,
.nwp-blog-title,
.nwp-value-title {
font-size: 22px;
font-weight: 600;
color: var(--nwp-primary);
margin-bottom: 15px;
}

.nwp-feature-text,
.nwp-post-excerpt,
.nwp-blog-excerpt,
.nwp-value-text {
color: var(--nwp-text-light);
line-height: 1.7;
}

.nwp-post-image,
.nwp-blog-img-wrapper {
margin-bottom: 20px;
overflow: hidden;
border-radius: 10px;
}

.nwp-read-more {
display: inline-block;
margin-top: 15px;
color: var(--nwp-secondary);
font-weight: 600;
transition: var(--nwp-transition);
}

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

.nwp-blog-meta,
.nwp-article-meta {
display: flex;
gap: 15px;
margin-bottom: 15px;
font-size: 14px;
color: var(--nwp-text-light);
}

.nwp-blog-date,
.nwp-blog-category,
.nwp-article-date,
.nwp-article-category {
display: inline-block;
}

.nwp-blog-category,
.nwp-article-category {
background-color: var(--nwp-secondary);
color: white;
padding: 4px 12px;
border-radius: 15px;
font-size: 12px;
}

.nwp-about-flex,
.nwp-contact-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 50px;
align-items: center;
}

.nwp-about-paragraph,
.nwp-about-description {
color: var(--nwp-text-light);
margin-bottom: 20px;
line-height: 1.8;
}

.nwp-cta-center {
text-align: center;
margin-top: 40px;
}

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

.nwp-page-title {
font-size: 42px;
font-weight: 700;
margin-bottom: 15px;
}

.nwp-page-description {
font-size: 18px;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

.nwp-team-photo {
border-radius: 50%;
margin: 0 auto 20px;
width: 150px;
height: 150px;
object-fit: cover;
}

.nwp-team-card h3 {
font-size: 20px;
color: var(--nwp-primary);
margin-bottom: 8px;
text-align: center;
}

.nwp-team-position {
color: var(--nwp-secondary);
font-weight: 600;
margin-bottom: 15px;
text-align: center;
}

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

.nwp-contact-info {
background-color: var(--nwp-bg-light);
padding: 40px;
border-radius: 10px;
}

.nwp-contact-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.nwp-contact-icon {
color: var(--nwp-secondary);
flex-shrink: 0;
}

.nwp-contact-details h3 {
font-size: 18px;
color: var(--nwp-primary);
margin-bottom: 8px;
}

.nwp-contact-details p,
.nwp-contact-alt {
color: var(--nwp-text-light);
line-height: 1.6;
}

.nwp-contact-alt {
margin-top: 10px;
font-size: 14px;
}

.nwp-contact-form-wrapper {
background-color: var(--nwp-bg);
padding: 40px;
border-radius: 10px;
box-shadow: 0 5px 15px var(--nwp-shadow);
}

.nwp-section-subtitle {
font-size: 28px;
font-weight: 700;
color: var(--nwp-primary);
margin-bottom: 30px;
}

.nwp-form-group {
margin-bottom: 20px;
}

.nwp-form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: var(--nwp-text);
}

.nwp-form-control {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--nwp-border);
border-radius: 5px;
font-size: 16px;
font-family: inherit;
transition: var(--nwp-transition);
}

.nwp-form-control:focus {
outline: none;
border-color: var(--nwp-secondary);
box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.nwp-submit-btn {
background-color: var(--nwp-secondary);
color: white;
padding: 12px 40px;
border: none;
border-radius: 50px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: var(--nwp-transition);
}

.nwp-submit-btn:hover {
background-color: var(--nwp-primary);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.nwp-article-container {
max-width: 800px;
}

.nwp-article-header {
text-align: center;
margin-bottom: 40px;
}

.nwp-article-title {
font-size: 42px;
font-weight: 700;
color: var(--nwp-primary);
margin-bottom: 20px;
line-height: 1.3;
}

.nwp-article-lead {
font-size: 20px;
color: var(--nwp-text-light);
line-height: 1.7;
}

.nwp-article-image {
margin: 40px 0;
}

.nwp-article-content {
font-size: 18px;
line-height: 1.8;
color: var(--nwp-text);
}

.nwp-article-content h2 {
font-size: 32px;
font-weight: 700;
color: var(--nwp-primary);
margin-top: 50px;
margin-bottom: 20px;
}

.nwp-article-content p {
margin-bottom: 20px;
}

.nwp-article-footer {
margin-top: 60px;
padding-top: 30px;
border-top: 1px solid var(--nwp-border);
}

.nwp-back-to-blog {
color: var(--nwp-secondary);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: var(--nwp-transition);
}

.nwp-back-to-blog:hover {
color: var(--nwp-primary);
}

.nwp-footer {
background-color: var(--nwp-primary);
color: white;
padding: 60px 0 20px;
margin-top: 80px;
}

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

.nwp-footer-title {
font-size: 18px;
font-weight: 700;
margin-bottom: 20px;
}

.nwp-footer-text {
color: rgba(255, 255, 255, 0.8);
line-height: 1.7;
margin-bottom: 20px;
}

.nwp-social-links {
display: flex;
gap: 15px;
}

.nwp-social-link {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transition: var(--nwp-transition);
}

.nwp-social-link:hover {
background-color: var(--nwp-secondary);
transform: translateY(-3px);
}

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

.nwp-footer-links li {
margin-bottom: 12px;
}

.nwp-footer-links a {
color: rgba(255, 255, 255, 0.8);
transition: var(--nwp-transition);
}

.nwp-footer-links a:hover {
color: white;
padding-left: 5px;
}

.nwp-footer-contacts {
list-style: none;
}

.nwp-footer-contacts li {
display: flex;
gap: 10px;
margin-bottom: 15px;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
}

.nwp-footer-contacts svg {
flex-shrink: 0;
margin-top: 3px;
}

.nwp-footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.7);
}

.nwp-cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--nwp-primary);
color: white;
padding: 25px 0;
box-shadow: 0 -5px 20px var(--nwp-shadow);
z-index: 10000;
display: none;
}

.nwp-cookie-banner.nwp-show {
display: block;
animation: slideUp 0.4s ease;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.nwp-cookie-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.nwp-cookie-text h3 {
margin-bottom: 10px;
font-size: 20px;
}

.nwp-cookie-text p {
color: rgba(255, 255, 255, 0.9);
line-height: 1.6;
}

.nwp-cookie-text a {
color: var(--nwp-secondary);
text-decoration: underline;
}

.nwp-cookie-buttons {
display: flex;
gap: 15px;
flex-shrink: 0;
}

.nwp-cookie-btn {
padding: 10px 30px;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: var(--nwp-transition);
}

.nwp-cookie-accept {
background-color: var(--nwp-secondary);
color: white;
}

.nwp-cookie-accept:hover {
background-color: #2980b9;
}

.nwp-cookie-decline {
background-color: transparent;
color: white;
border: 2px solid white;
}

.nwp-cookie-decline:hover {
background-color: rgba(255, 255, 255, 0.1);
}

.nwp-modal {
display: none;
position: fixed;
z-index: 10001;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
animation: fadeIn 0.3s ease;
}

.nwp-modal.nwp-show {
display: flex;
align-items: center;
justify-content: center;
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.nwp-modal-content {
background-color: white;
padding: 40px;
border-radius: 10px;
max-width: 500px;
width: 90%;
position: relative;
text-align: center;
animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
from {
transform: scale(0.8);
}
to {
transform: scale(1);
}
}

.nwp-modal-close {
position: absolute;
top: 15px;
right: 20px;
font-size: 30px;
cursor: pointer;
color: var(--nwp-text-light);
}

.nwp-modal-close:hover {
color: var(--nwp-primary);
}

.nwp-modal-icon {
color: #27ae60;
margin-bottom: 20px;
}

.nwp-modal-content h2 {
color: var(--nwp-primary);
margin-bottom: 15px;
font-size: 28px;
}

.nwp-modal-content p {
color: var(--nwp-text-light);
line-height: 1.7;
}

@media (max-width: 768px) {
.nwp-navigation {
display: none;
}

.nwp-hero-title {
font-size: 36px;
}

.nwp-hero-subtitle {
font-size: 18px;
}

.nwp-section-title {
font-size: 28px;
}

.nwp-page-title {
font-size: 32px;
}

.nwp-article-title {
font-size: 32px;
}

.nwp-article-content {
font-size: 16px;
}

.nwp-article-content h2 {
font-size: 26px;
}

.nwp-cookie-content {
flex-direction: column;
text-align: center;
}

.nwp-cookie-buttons {
width: 100%;
flex-direction: column;
}

.nwp-cookie-btn {
width: 100%;
}
}