: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);
--transition: all 0.3s ease;
}

* {
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);
}

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

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

ul {
list-style: none;
}

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

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

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

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

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

.logo-text {
font-size: 1.25rem;
font-weight: 700;
color: var(--primary-color);
}

.main-nav {
display: flex;
}

.nav-list {
display: flex;
gap: 2rem;
align-items: center;
}

.nav-link {
color: var(--text-dark);
font-weight: 500;
padding: 0.5rem 0;
border-bottom: 2px solid transparent;
}

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

.mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}

.mobile-menu-toggle span {
width: 25px;
height: 3px;
background: var(--text-dark);
border-radius: 2px;
transition: var(--transition);
}

.hero-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
padding: 4rem 20px;
max-width: 1200px;
margin: 0 auto;
}

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

.hero-title {
font-size: 3rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.5rem;
color: var(--text-dark);
}

.hero-subtitle {
font-size: 1.25rem;
color: var(--text-light);
margin-bottom: 2rem;
}

.hero-cta {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-cta,
.cta-box-btn {
padding: 0.875rem 2rem;
border-radius: 8px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: var(--transition);
display: inline-block;
text-align: center;
}

.btn-primary,
.btn-cta,
.cta-box-btn {
background: var(--primary-color);
color: white;
border: 2px solid var(--primary-color);
}

.btn-primary:hover,
.btn-cta:hover,
.cta-box-btn:hover {
background: var(--primary-dark);
border-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.btn-secondary {
background: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
background: var(--primary-color);
color: white;
}

.hero-image img {
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.features-section,
.about-story,
.values-section,
.team-section,
.stats-section,
.blog-content,
.contact-section {
padding: 5rem 20px;
max-width: 1200px;
margin: 0 auto;
}

.section-title,
.section-heading {
font-size: 2.5rem;
font-weight: 800;
text-align: center;
margin-bottom: 3rem;
color: var(--text-dark);
}

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

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

.feature-card:hover,
.value-item:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

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

.feature-title,
.value-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.feature-desc,
.value-desc {
color: var(--text-light);
line-height: 1.8;
}

.random-fact-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 3rem 20px;
margin: 4rem 0;
}

.fact-card {
max-width: 800px;
margin: 0 auto;
text-align: center;
color: white;
}

.fact-title {
font-size: 2rem;
margin-bottom: 1rem;
}

.fact-content {
font-size: 1.25rem;
line-height: 1.8;
}

.latest-posts-section {
padding: 5rem 20px;
max-width: 1200px;
margin: 0 auto;
background: var(--bg-light);
}

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

.post-preview,
.blog-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition);
position: relative;
}

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

.post-badge,
.blog-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--secondary-color);
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-weight: 700;
font-size: 0.875rem;
z-index: 10;
}

.post-image,
.blog-card-image {
width: 100%;
height: 250px;
object-fit: cover;
}

.post-content,
.blog-card-content {
padding: 1.5rem;
}

.post-title a,
.blog-card-title a {
font-size: 1.5rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 1rem;
display: block;
}

.post-title a:hover,
.blog-card-title a:hover {
color: var(--primary-color);
}

.post-excerpt,
.blog-card-excerpt {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.8;
}

.read-more,
.blog-read-link {
color: var(--primary-color);
font-weight: 600;
}

.read-more:hover,
.blog-read-link:hover {
text-decoration: underline;
}

.cta-section {
background: var(--primary-color);
color: white;
text-align: center;
padding: 5rem 20px;
}

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

.cta-text {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.main-footer {
background: var(--text-dark);
color: white;
padding: 3rem 20px 1rem;
}

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

.footer-title {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1rem;
}

.footer-desc {
color: #9ca3af;
margin-bottom: 1rem;
line-height: 1.6;
}

.social-links {
display: flex;
gap: 1rem;
}

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

.social-links a:hover {
background: var(--primary-color);
transform: translateY(-3px);
}

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

.footer-links a {
color: #9ca3af;
transition: var(--transition);
}

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

.footer-contact li {
display: flex;
align-items: flex-start;
gap: 10px;
margin-bottom: 0.75rem;
color: #9ca3af;
}

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

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #9ca3af;
}

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

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

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

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

.cookie-title {
font-size: 1.25rem;
margin-bottom: 0.5rem;
}

.cookie-text {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.6;
}

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

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

.cookie-btn {
padding: 0.625rem 1.5rem;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
border: none;
transition: var(--transition);
}

.accept-all {
background: var(--primary-color);
color: white;
}

.accept-all:hover {
background: var(--primary-dark);
}

.customize {
background: var(--bg-light);
color: var(--text-dark);
}

.customize:hover {
background: var(--border-color);
}

.decline {
background: transparent;
border: 1px solid var(--border-color);
color: var(--text-dark);
}

.decline:hover {
background: var(--bg-light);
}

.page-hero {
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
color: white;
text-align: center;
padding: 5rem 20px 4rem;
}

.page-title {
font-size: 3rem;
font-weight: 800;
margin-bottom: 1rem;
}

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

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

.story-paragraph {
margin-bottom: 1.5rem;
line-height: 1.8;
color: var(--text-light);
}

.story-image img {
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

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

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

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

.team-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition);
}

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

.team-photo {
width: 100%;
height: 350px;
object-fit: cover;
}

.team-info {
padding: 1.5rem;
}

.team-name {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

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

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

.stat-item {
text-align: center;
padding: 2rem;
background: var(--bg-light);
border-radius: 12px;
}

.stat-number {
font-size: 3rem;
font-weight: 800;
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.stat-label {
color: var(--text-light);
font-size: 1.125rem;
}

.blog-meta {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
font-size: 0.875rem;
}

.blog-date {
color: var(--text-light);
}

.blog-category {
color: var(--primary-color);
font-weight: 600;
}

.newsletter-section {
background: var(--bg-light);
padding: 4rem 20px;
}

.newsletter-box {
max-width: 700px;
margin: 0 auto;
text-align: center;
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: var(--shadow-md);
}

.newsletter-title {
font-size: 2rem;
font-weight: 800;
margin-bottom: 1rem;
}

.newsletter-desc {
color: var(--text-light);
margin-bottom: 2rem;
}

.newsletter-form {
display: flex;
gap: 1rem;
}

.newsletter-input {
flex: 1;
padding: 0.875rem 1rem;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 1rem;
}

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

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

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

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

.contact-info-side {
background: var(--bg-light);
padding: 2.5rem;
border-radius: 12px;
}

.contact-info-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
}

.contact-info-desc {
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.7;
}

.contact-details {
margin-bottom: 2rem;
}

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

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

.contact-label {
font-weight: 600;
margin-bottom: 0.25rem;
}

.contact-value,
.contact-value a {
color: var(--text-light);
}

.contact-value a:hover {
color: var(--primary-color);
}

.social-contact-title {
font-weight: 700;
margin-bottom: 1rem;
}

.social-contact-links {
display: flex;
gap: 1rem;
}

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

.social-contact-links a:hover {
background: var(--primary-dark);
transform: translateY(-3px);
}

.contact-form-side {
background: white;
}

.form-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 2rem;
}

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

.form-label {
display: block;
font-weight: 600;
margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
width: 100%;
padding: 0.875rem;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 1rem;
font-family: inherit;
transition: var(--transition);
}

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

.form-textarea {
resize: vertical;
min-height: 150px;
}

.form-submit-btn {
width: 100%;
padding: 1rem;
background: var(--primary-color);
color: white;
border: none;
border-radius: 8px;
font-size: 1.125rem;
font-weight: 700;
cursor: pointer;
transition: var(--transition);
}

.form-submit-btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.map-container {
margin-top: 2rem;
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-md);
}

.faq-section {
padding: 4rem 20px;
max-width: 900px;
margin: 0 auto;
}

.faq-item {
background: white;
padding: 1.5rem;
border-radius: 8px;
margin-bottom: 1rem;
box-shadow: var(--shadow-sm);
}

.faq-question {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: var(--text-dark);
}

.faq-answer {
color: var(--text-light);
line-height: 1.7;
}

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

.success-modal.show {
display: flex;
}

.modal-content {
background: white;
padding: 3rem;
border-radius: 12px;
text-align: center;
max-width: 500px;
margin: 20px;
}

.modal-icon {
color: var(--secondary-color);
margin: 0 auto 1.5rem;
}

.modal-title {
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 1rem;
}

.modal-text {
color: var(--text-light);
margin-bottom: 2rem;
}

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

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

.post-article {
background: white;
}

.post-container {
max-width: 900px;
margin: 0 auto;
padding: 3rem 20px;
}

.post-meta-info {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
font-size: 0.875rem;
}

.post-date {
color: var(--text-light);
}

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

.post-main-title {
font-size: 2.75rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.5rem;
}

.post-intro {
font-size: 1.25rem;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 2rem;
}

.post-featured-image {
margin-bottom: 3rem;
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-lg);
}

.post-featured-image img {
width: 100%;
}

.post-body {
font-size: 1.125rem;
line-height: 1.9;
color: var(--text-dark);
}

.post-section {
margin-bottom: 3rem;
}

.section-subtitle {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1.5rem;
margin-top: 2rem;
}

.subsection-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
margin-top: 1.5rem;
}

.post-paragraph {
margin-bottom: 1.5rem;
color: var(--text-light);
}

.post-list {
margin: 1.5rem 0;
padding-left: 1.5rem;
}

.post-list li {
list-style: disc;
margin-bottom: 1rem;
color: var(--text-light);
}

.post-list li strong {
color: var(--text-dark);
}

.post-cta-box {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 3rem;
border-radius: 12px;
text-align: center;
margin-top: 3rem;
}

.cta-box-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
}

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

.related-posts {
background: var(--bg-light);
padding: 4rem 20px;
}

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

.related-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition);
}

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

.related-image {
width: 100%;
height: 200px;
object-fit: cover;
}

.related-title {
padding: 1.5rem;
}

.related-title a {
font-size: 1.125rem;
font-weight: 700;
color: var(--text-dark);
}

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

.text-center {
text-align: center;
}

@media (max-width: 768px) {
.mobile-menu-toggle {
display: flex;
}

.main-nav {
display: none;
}

.main-nav.active {
display: block;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
box-shadow: var(--shadow-md);
}

.nav-list {
flex-direction: column;
padding: 1rem;
gap: 0;
}

.nav-list li {
border-bottom: 1px solid var(--border-color);
}

.nav-link {
display: block;
padding: 1rem;
}

.hero-section,
.story-content,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 2rem;
}

.hero-title,
.page-title {
font-size: 2rem;
}

.hero-subtitle,
.page-subtitle {
font-size: 1rem;
}

.section-title,
.section-heading {
font-size: 1.75rem;
}

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

.newsletter-form {
flex-direction: column;
}

.post-main-title {
font-size: 2rem;
}

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

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

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

@media (max-width: 480px) {
.hero-cta {
flex-direction: column;
}

.btn-primary,
.btn-secondary {
width: 100%;
}

.stat-number {
font-size: 2rem;
}

.team-photo {
height: 280px;
}
}