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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

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

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

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

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.primary-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

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

.hero-section .container-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

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

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

.hero-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.features-section,
.info-section,
.recent-posts,
.about-story,
.mission-values,
.team-section,
.approach-section,
.blog-content,
.newsletter-section,
.contact-section,
.map-section {
    padding: 80px 0;
}

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

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

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

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

.feature-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-text h2 i {
    color: var(--warning-color);
    margin-right: 10px;
}

.info-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.benefit-list li i {
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 18px;
}

.info-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

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

.post-preview:hover {
    transform: translateY(-5px);
}

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

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.post-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

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

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.registration-info {
    margin-top: 15px;
    font-weight: 600;
    opacity: 0.95;
}

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

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

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

.cookie-content h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

.cookie-content h3 i {
    color: var(--warning-color);
    margin-right: 8px;
}

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

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

.btn-accept,
.btn-customize,
.btn-decline {
    padding: 10px 24px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.btn-customize:hover {
    background-color: #2980b9;
}

.btn-decline {
    background-color: var(--text-light);
    color: white;
}

.btn-decline:hover {
    background-color: #555;
}

.privacy-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
}

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

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-lead {
    font-size: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-text h2 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

.value-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    color: var(--text-light);
    font-size: 18px;
}

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

.team-member {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

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

.team-member h3 {
    padding: 20px 20px 5px;
    font-size: 22px;
    color: var(--primary-color);
}

.member-role {
    padding: 0 20px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.approach-step {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.approach-step h3 {
    margin: 20px 0 12px;
    font-size: 22px;
    color: var(--primary-color);
}

.approach-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    gap: 40px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

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

.blog-info {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-date,
.blog-category {
    color: var(--text-light);
    font-size: 14px;
}

.blog-date i,
.blog-category i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.blog-info h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.article-overview {
    background: var(--bg-light);
    padding: 15px 15px 15px 35px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.article-overview li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.blog-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.btn-read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.btn-read-more:hover {
    gap: 12px;
}

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

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.newsletter-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.newsletter-box h2 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.newsletter-box p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
}

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

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

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.info-icon {
    font-size: 24px;
    color: var(--secondary-color);
    min-width: 40px;
}

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

.info-details p,
.info-details a {
    color: var(--text-light);
    line-height: 1.7;
}

.info-details a {
    text-decoration: none;
    transition: color 0.3s;
}

.info-details a:hover {
    color: var(--secondary-color);
}

.registration-display {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-group label i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
}

.map-container iframe {
    width: 100%;
    border-radius: 10px;
}

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

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

.modal-content {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-icon {
    font-size: 72px;
    color: var(--success-color);
    margin-bottom: 20px;
}

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

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

.post-article {
    padding: 40px 0 80px;
}

.post-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.post-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-header h1 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.post-meta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.post-date,
.post-category,
.post-reading {
    color: var(--text-light);
    font-size: 15px;
}

.post-date i,
.post-category i,
.post-reading i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.post-featured-image {
    max-width: 1200px;
    margin: 0 auto 50px;
}

.post-featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.post-overview {
    max-width: 900px;
    margin: 0 auto 40px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.post-overview h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-overview h2 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.post-overview ul {
    padding-left: 25px;
}

.post-overview li {
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.6;
}

.post-content {
    max-width: 900px;
    margin: 0 auto;
}

.post-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.post-content h2 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.post-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 17px;
}

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

.post-navigation {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

@media (max-width: 968px) {
    .hero-section .container-main,
    .info-layout,
    .story-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .primary-nav.active {
        display: block;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-toggle {
        display: block;
    }

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

    .blog-image img {
        height: 250px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .hero-actions {
        flex-direction: column;
    }

    .section-heading {
        font-size: 30px;
    }

    .post-header h1 {
        font-size: 32px;
    }

    .post-navigation {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }

    .section-heading {
        font-size: 26px;
    }

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

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

    .cookie-actions button {
        width: 100%;
    }

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

    .newsletter-box {
        padding: 30px 20px;
    }

    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
}