:root {
--primary-color: #e74c3c;
--secondary-color: #c0392b;
--accent-color: #f39c12;
--text-dark: #2c3e50;
--text-light: #7f8c8d;
--bg-light: #ecf0f1;
--bg-white: #ffffff;
--border-color: #bdc3c7;
--success-color: #27ae60;
--shadow: 0 2px 10px rgba(0,0,0,0.1);
--shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
--transition: all 0.3s ease;
}

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

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

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

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

.logo-section a {
display: flex;
align-items: center;
text-decoration: none;
gap: 1rem;
}

.logo-img {
border-radius: 50%;
object-fit: cover;
}

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

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

.nav-link {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: var(--transition);
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;
background: none;
border: none;
cursor: pointer;
gap: 4px;
}

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

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

.hero-section {
position: relative;
height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-image {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 0;
}

.hero-content {
position: relative;
z-index: 1;
text-align: center;
color: white;
max-width: 800px;
padding: 2rem;
}

.hero-title {
font-size: 3rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2rem;
}

.hero-languages {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.lang-greeting {
font-size: 1.2rem;
opacity: 0.9;
}

.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
transition: var(--transition);
box-shadow: var(--shadow);
}

.cta-button:hover {
background: var(--secondary-color);
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 4rem 2rem;
}

.section-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
color: var(--text-dark);
position: relative;
padding-bottom: 1rem;
}

.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--primary-color);
}

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

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

.intro-card {
background: white;
padding: 2rem;
border-radius: 10px;
text-align: center;
box-shadow: var(--shadow);
transition: var(--transition);
}

.intro-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-hover);
}

.intro-icon {
color: var(--primary-color);
margin-bottom: 1rem;
}

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

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

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

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

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

.post-content {
padding: 1.5rem;
}

.post-content h3 {
margin-bottom: 1rem;
}

.post-content h3 a {
text-decoration: none;
color: var(--text-dark);
transition: var(--transition);
}

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

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

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

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

.safety-tips {
background: white;
}

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

.tip-item {
padding: 2rem;
background: var(--bg-light);
border-radius: 10px;
border-left: 4px solid var(--primary-color);
}

.tip-number {
display: block;
font-size: 2rem;
font-weight: bold;
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.tip-item h4 {
margin-bottom: 0.5rem;
font-size: 1.2rem;
}

.faq-section {
background: var(--bg-light);
}

.faq-list {
max-width: 800px;
margin: 0 auto;
}

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

.faq-question {
width: 100%;
padding: 1.5rem;
background: none;
border: none;
text-align: left;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition);
}

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

.faq-icon {
transition: var(--transition);
flex-shrink: 0;
}

.faq-item.active .faq-icon {
transform: rotate(180deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
max-height: 500px;
}

.faq-answer p {
padding: 0 1.5rem 1.5rem;
color: var(--text-light);
}

.cta-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
text-align: center;
}

.cta-content h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta-button-secondary {
display: inline-block;
padding: 1rem 2.5rem;
background: white;
color: var(--primary-color);
text-decoration: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
transition: var(--transition);
margin-top: 1rem;
}

.cta-button-secondary:hover {
background: var(--bg-light);
transform: scale(1.05);
}

.site-footer {
background: var(--text-dark);
color: white;
padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
margin-bottom: 1rem;
color: var(--accent-color);
}

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

.footer-section ul li {
margin-bottom: 0.5rem;
}

.footer-section a {
color: #bdc3c7;
text-decoration: none;
transition: var(--transition);
}

.footer-section a:hover {
color: var(--accent-color);
}

.footer-social {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.footer-social a {
color: white;
transition: var(--transition);
}

.footer-social a:hover {
color: var(--accent-color);
transform: scale(1.2);
}

.contact-info {
display: flex;
flex-direction: column;
gap: 1rem;
}

.contact-info li {
display: flex;
gap: 0.5rem;
align-items: flex-start;
}

.contact-info svg {
flex-shrink: 0;
margin-top: 2px;
}

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

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: white;
padding: 2rem;
box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
z-index: 9999;
display: none;
}

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

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

.cookie-content h3 {
margin-bottom: 0.5rem;
}

.cookie-content a {
color: var(--accent-color);
}

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

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

.accept-btn {
background: var(--success-color);
color: white;
}

.accept-btn:hover {
background: #229954;
}

.customize-btn {
background: var(--accent-color);
color: white;
}

.customize-btn:hover {
background: #e67e22;
}

.reject-btn {
background: transparent;
color: white;
border: 2px solid white;
}

.reject-btn:hover {
background: rgba(255,255,255,0.1);
}

.cookie-settings-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.8);
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
padding: 2rem;
}

.cookie-settings-modal.show {
display: flex;
}

.cookie-settings-modal .modal-content {
background: white;
padding: 2rem;
border-radius: 10px;
max-width: 600px;
width: 100%;
max-height: 80vh;
overflow-y: auto;
color: var(--text-dark);
}

.cookie-option {
margin-bottom: 1.5rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--border-color);
}

.cookie-option label {
display: flex;
align-items: flex-start;
gap: 0.5rem;
cursor: pointer;
font-weight: 600;
}

.cookie-option p {
margin-top: 0.5rem;
color: var(--text-light);
margin-left: 1.5rem;
}

.modal-buttons {
display: flex;
gap: 1rem;
margin-top: 2rem;
}

.page-header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
text-align: center;
padding: 4rem 2rem;
}

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

.page-description {
font-size: 1.2rem;
opacity: 0.9;
}

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

.blog-post-card {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}

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

.post-image-wrapper {
position: relative;
}

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

.post-category {
position: absolute;
top: 1rem;
right: 1rem;
background: var(--primary-color);
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
}

.post-card-content {
padding: 2rem;
}

.post-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
font-size: 0.9rem;
color: var(--text-light);
flex-wrap: wrap;
}

.meta-item {
display: flex;
align-items: center;
gap: 0.3rem;
}

.post-card-content h2 {
margin-bottom: 1rem;
font-size: 1.5rem;
}

.post-card-content h2 a {
text-decoration: none;
color: var(--text-dark);
transition: var(--transition);
}

.post-card-content h2 a:hover {
color: var(--primary-color);
}

.read-more-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: var(--transition);
margin-top: 1rem;
}

.read-more-link:hover {
gap: 1rem;
color: var(--secondary-color);
}

.blog-cta {
background: var(--bg-light);
text-align: center;
padding: 4rem 2rem;
}

.blog-cta h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

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

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

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

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

.member-info {
padding: 2rem;
}

.member-info h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

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

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

.about-mission {
background: white;
}

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

.mission-image img {
width: 100%;
border-radius: 10px;
box-shadow: var(--shadow);
}

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

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

.about-values {
background: var(--bg-light);
}

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

.value-card {
background: white;
padding: 2rem;
border-radius: 10px;
text-align: center;
box-shadow: var(--shadow);
}

.value-icon {
color: var(--primary-color);
margin-bottom: 1rem;
}

.value-card h3 {
margin-bottom: 1rem;
}

.about-stats {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
text-align: center;
}

.about-stats .section-title {
color: white;
}

.about-stats .section-title::after {
background: white;
}

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

.stat-item {
padding: 2rem;
}

.stat-number {
font-size: 3rem;
font-weight: bold;
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 1.1rem;
opacity: 0.9;
}

.about-contact-cta {
background: white;
text-align: center;
}

.about-contact-cta h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

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

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

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

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

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

.detail-text h3 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

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

.social-links-contact h3 {
margin-bottom: 1rem;
}

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

.social-icons-large a {
color: var(--primary-color);
transition: var(--transition);
}

.social-icons-large a:hover {
color: var(--secondary-color);
transform: scale(1.2);
}

.contact-form-side {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: var(--shadow);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

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

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

.required {
color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 0.75rem;
border: 2px solid var(--border-color);
border-radius: 5px;
font-size: 1rem;
transition: var(--transition);
font-family: inherit;
}

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

.checkbox-label {
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
width: auto;
cursor: pointer;
}

.submit-button {
padding: 1rem 2rem;
background: var(--primary-color);
color: white;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}

.submit-button:hover {
background: var(--secondary-color);
transform: scale(1.02);
}

.map-section {
background: var(--bg-light);
}

.map-container {
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
}

.success-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
}

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

.modal-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.7);
}

.modal-content-success {
background: white;
padding: 3rem;
border-radius: 15px;
text-align: center;
max-width: 500px;
position: relative;
z-index: 1;
}

.success-icon {
color: var(--success-color);
margin-bottom: 1rem;
}

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

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

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

.modal-close-btn:hover {
background: var(--secondary-color);
}

.article-container {
max-width: 900px;
margin: 0 auto;
padding: 2rem;
}

.article-header {
text-align: center;
margin-bottom: 2rem;
}

.article-title {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: var(--text-dark);
line-height: 1.3;
}

.article-meta {
display: flex;
justify-content: center;
gap: 2rem;
color: var(--text-light);
font-size: 0.95rem;
flex-wrap: wrap;
}

.article-featured-image {
width: 100%;
max-height: 500px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 2rem;
}

.article-content {
font-size: 1.1rem;
line-height: 1.9;
color: var(--text-dark);
}

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

.article-content h3 {
font-size: 1.5rem;
margin: 2rem 0 1rem;
color: var(--text-dark);
}

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

.article-content ul,
.article-content ol {
margin: 1.5rem 0;
padding-left: 2rem;
}

.article-content li {
margin-bottom: 0.75rem;
}

.article-content strong {
color: var(--primary-color);
font-weight: 600;
}

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

.article-tags {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
margin-bottom: 2rem;
}

.tag {
padding: 0.5rem 1rem;
background: var(--bg-light);
color: var(--text-dark);
text-decoration: none;
border-radius: 20px;
font-size: 0.9rem;
transition: var(--transition);
}

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

.article-share h3 {
margin-bottom: 1rem;
}

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

.share-btn {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: white;
transition: var(--transition);
}

.share-btn.facebook {
background: #1877f2;
}

.share-btn.twitter {
background: #1da1f2;
}

.share-btn.linkedin {
background: #0077b5;
}

.share-btn:hover {
transform: scale(1.1);
}

.related-posts {
background: var(--bg-light);
}

.view-all-container {
text-align: center;
margin-top: 3rem;
}

.view-all-btn {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: var(--transition);
}

.view-all-btn:hover {
background: var(--secondary-color);
transform: translateY(-3px);
}

.team-intro {
text-align: center;
max-width: 700px;
margin: -1rem auto 2rem;
color: var(--text-light);
font-size: 1.1rem;
}

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

.main-nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
box-shadow: var(--shadow);
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.main-nav.active {
max-height: 400px;
}

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

.nav-link {
padding: 1rem;
border-bottom: 1px solid var(--border-color);
}

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

.hero-subtitle {
font-size: 1.2rem;
}

.section-title {
font-size: 2rem;
}

.intro-grid,
.posts-grid,
.tips-wrapper,
.values-grid,
.team-grid,
.blog-grid {
grid-template-columns: 1fr;
}

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

.article-title {
font-size: 1.8rem;
}

.article-meta {
gap: 1rem;
}

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

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

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

@media (max-width: 480px) {
.hero-title {
font-size: 1.5rem;
}

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

.hero-languages {
font-size: 1rem;
}

.section-title {
font-size: 1.5rem;
}

.article-title {
font-size: 1.5rem;
}

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