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

:root {
--primary-color: #2563eb;
--secondary-color: #7c3aed;
--accent-color: #f59e0b;
--text-dark: #1f2937;
--text-light: #6b7280;
--bg-light: #f9fafb;
--bg-white: #ffffff;
--border-color: #e5e7eb;
--success-color: #10b981;
--gradient-start: #4f46e5;
--gradient-end: #06b6d4;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--bg-white);
}

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

.main-navigation {
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.brand-logo {
display: flex;
align-items: center;
gap: 12px;
color: var(--bg-white);
font-size: 1.4rem;
font-weight: 700;
}

.brand-logo img {
border-radius: 50%;
border: 2px solid var(--bg-white);
}

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

.nav-links a {
color: var(--bg-white);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
padding: 0.5rem 1rem;
border-radius: 6px;
}

.nav-links a:hover {
background-color: rgba(255,255,255,0.2);
transform: translateY(-2px);
}

.hero-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 80px 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
color: var(--bg-white);
}

.hero-content h1 {
font-size: 3rem;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hover-title {
transition: all 0.3s ease;
cursor: pointer;
}

.hover-title:hover {
color: var(--accent-color);
transform: translateX(5px);
}

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

.cta-button {
display: inline-block;
background-color: var(--accent-color);
color: var(--bg-white);
padding: 15px 35px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}

.hero-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.features-block {
padding: 80px 20px;
background-color: var(--bg-light);
}

.features-block h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--text-dark);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.feature-card {
background: var(--bg-white);
padding: 35px;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
text-align: center;
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.feature-card h3 {
margin-bottom: 1rem;
color: var(--primary-color);
font-size: 1.4rem;
}

.testimonials-area {
padding: 80px 20px;
background: var(--bg-white);
}

.testimonials-area h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
}

.testimonials-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-item {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
padding: 30px;
border-radius: 12px;
color: var(--bg-white);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonial-text {
font-size: 1.1rem;
font-style: italic;
margin-bottom: 1.5rem;
line-height: 1.6;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 5px;
}

.testimonial-author strong {
font-size: 1.2rem;
}

.testimonial-author span {
opacity: 0.9;
font-size: 0.95rem;
}

.latest-posts {
padding: 80px 20px;
background-color: var(--bg-light);
}

.latest-posts h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
}

.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
}

.post-preview {
background: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.post-preview:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.post-preview h3 {
padding: 20px 25px 10px;
font-size: 1.3rem;
}

.post-preview h3 a {
color: var(--text-dark);
text-decoration: none;
transition: color 0.3s ease;
}

.post-preview h3 a:hover {
color: var(--primary-color);
}

.post-preview p {
padding: 0 25px 15px;
color: var(--text-light);
}

.read-more {
display: inline-block;
margin: 0 25px 25px;
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}

.read-more:hover {
color: var(--secondary-color);
transform: translateX(5px);
}

.site-footer {
background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
color: var(--bg-white);
padding: 60px 20px 20px;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 30px;
}

.footer-column h4 {
margin-bottom: 1.5rem;
font-size: 1.3rem;
color: var(--accent-color);
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 10px;
}

.footer-column a {
color: var(--bg-white);
text-decoration: none;
transition: all 0.3s ease;
opacity: 0.9;
}

.footer-column a:hover {
opacity: 1;
color: var(--accent-color);
padding-left: 5px;
}

.reg-number {
margin-top: 15px;
opacity: 0.8;
font-size: 0.95rem;
}

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

.cookie-notice {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
padding: 25px;
z-index: 10000;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.cookie-notice.show {
transform: translateY(0);
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
margin-bottom: 12px;
color: var(--text-dark);
font-size: 1.3rem;
}

.cookie-content p {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.6;
}

.cookie-buttons {
display: flex;
gap: 15px;
margin-bottom: 15px;
flex-wrap: wrap;
}

.cookie-btn {
padding: 12px 28px;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s ease;
}

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

.cookie-btn.primary:hover {
background-color: #1d4ed8;
transform: translateY(-2px);
}

.cookie-btn.secondary {
background-color: var(--text-light);
color: var(--bg-white);
}

.cookie-btn.secondary:hover {
background-color: #4b5563;
}

.cookie-btn.tertiary {
background-color: transparent;
color: var(--text-dark);
border: 2px solid var(--border-color);
}

.cookie-btn.tertiary:hover {
background-color: var(--bg-light);
}

.cookie-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 500;
}

.cookie-link:hover {
text-decoration: underline;
}

.blog-header {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
padding: 60px 20px;
color: var(--bg-white);
text-align: center;
}

.blog-header h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.blog-subtitle {
font-size: 1.2rem;
opacity: 0.95;
}

.blog-container {
padding: 60px 20px;
background-color: var(--bg-light);
}

.blog-posts-list {
display: flex;
flex-direction: column;
gap: 40px;
}

.blog-post-card {
background: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
display: grid;
grid-template-columns: 400px 1fr;
gap: 30px;
transition: all 0.3s ease;
}

.blog-post-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.post-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-content-area {
padding: 30px 30px 30px 0;
}

.post-content-area h2 {
font-size: 1.8rem;
margin-bottom: 15px;
}

.post-metadata {
display: flex;
gap: 20px;
margin-bottom: 15px;
color: var(--text-light);
font-size: 0.95rem;
}

.post-excerpt {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.7;
}

.read-more-btn {
display: inline-block;
background-color: var(--primary-color);
color: var(--bg-white);
padding: 12px 30px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}

.read-more-btn:hover {
background-color: #1d4ed8;
transform: translateY(-2px);
}

.about-hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 80px 20px;
color: var(--bg-white);
text-align: center;
}

.about-hero h1 {
font-size: 3rem;
margin-bottom: 1.5rem;
}

.about-intro {
font-size: 1.3rem;
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
}

.our-mission {
padding: 80px 20px;
background: var(--bg-white);
}

.mission-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.mission-text h2 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: var(--primary-color);
}

.mission-text p {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
font-size: 1.1rem;
}

.mission-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-section {
padding: 80px 20px;
background-color: var(--bg-light);
}

.team-section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
}

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

.team-member {
background: var(--bg-white);
border-radius: 12px;
padding: 30px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.team-member:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-member img {
width: 100%;
max-width: 250px;
border-radius: 50%;
margin-bottom: 1.5rem;
border: 5px solid var(--primary-color);
}

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

.position {
color: var(--primary-color);
font-weight: 600;
margin-bottom: 1rem;
display: block;
}

.bio {
color: var(--text-light);
line-height: 1.6;
}

.values-section {
padding: 80px 20px;
background: var(--bg-white);
}

.values-section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.value-item {
text-align: center;
padding: 30px;
}

.value-icon {
font-size: 3.5rem;
margin-bottom: 1rem;
}

.value-item h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--primary-color);
}

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

.contact-hero {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
padding: 60px 20px;
color: var(--bg-white);
text-align: center;
}

.contact-hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.contact-subtitle {
font-size: 1.2rem;
opacity: 0.95;
}

.contact-content {
padding: 80px 20px;
background-color: var(--bg-light);
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
}

.contact-info-block h2 {
font-size: 2rem;
margin-bottom: 2rem;
color: var(--primary-color);
}

.info-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
background: var(--bg-white);
padding: 25px;
border-radius: 10px;
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.info-icon {
font-size: 2rem;
color: var(--primary-color);
}

.info-text h3 {
margin-bottom: 8px;
color: var(--text-dark);
font-size: 1.2rem;
}

.info-text p {
color: var(--text-light);
line-height: 1.6;
}

.contact-form-block {
background: var(--bg-white);
padding: 40px;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-form-block h2 {
font-size: 2rem;
margin-bottom: 2rem;
color: var(--primary-color);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

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

.form-group input,
.form-group textarea {
padding: 12px 15px;
border: 2px solid var(--border-color);
border-radius: 6px;
font-size: 1rem;
font-family: inherit;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.submit-btn {
background-color: var(--primary-color);
color: var(--bg-white);
padding: 15px 40px;
border: none;
border-radius: 6px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-btn:hover {
background-color: #1d4ed8;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(37,99,235,0.3);
}

.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.7);
z-index: 10001;
align-items: center;
justify-content: center;
}

.modal-overlay.active {
display: flex;
}

.modal-content {
background: var(--bg-white);
padding: 50px;
border-radius: 15px;
text-align: center;
max-width: 500px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.modal-icon {
font-size: 4rem;
color: var(--success-color);
margin-bottom: 1.5rem;
}

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

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

.modal-close-btn {
background-color: var(--primary-color);
color: var(--bg-white);
padding: 12px 35px;
border: none;
border-radius: 6px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-close-btn:hover {
background-color: #1d4ed8;
}

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

.post-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 60px 20px;
color: var(--bg-white);
}

.post-header h1 {
font-size: 2.8rem;
margin-bottom: 1.5rem;
line-height: 1.3;
}

.post-meta {
display: flex;
gap: 25px;
font-size: 1rem;
opacity: 0.95;
flex-wrap: wrap;
}

.post-meta span {
display: flex;
align-items: center;
gap: 5px;
}

.post-featured-image {
max-width: 1200px;
margin: -50px auto 0;
padding: 0 20px;
position: relative;
z-index: 10;
}

.post-featured-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.post-body {
padding: 80px 20px;
}

.content-wrapper {
max-width: 800px;
margin: 0 auto;
background: var(--bg-white);
padding: 50px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.content-wrapper p {
margin-bottom: 1.5rem;
line-height: 1.9;
font-size: 1.1rem;
color: var(--text-dark);
}

.content-wrapper h2 {
font-size: 2rem;
margin-top: 2.5rem;
margin-bottom: 1.5rem;
color: var(--primary-color);
}

.content-wrapper h3 {
font-size: 1.5rem;
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--secondary-color);
}

@media (max-width: 768px) {
.hero-section {
grid-template-columns: 1fr;
padding: 60px 20px;
}

.hero-content h1 {
font-size: 2.2rem;
}

.features-grid,
.testimonials-wrapper,
.posts-grid,
.team-grid,
.values-grid {
grid-template-columns: 1fr;
}

.nav-links {
gap: 1rem;
}

.blog-post-card {
grid-template-columns: 1fr;
}

.mission-content {
grid-template-columns: 1fr;
}

.contact-layout {
grid-template-columns: 1fr;
}

.footer-container {
grid-template-columns: 1fr;
}

.content-wrapper {
padding: 30px 20px;
}

.post-header h1 {
font-size: 2rem;
}

.cookie-buttons {
flex-direction: column;
}

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