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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --accent-color: #f4a261;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --gray-color: #6c757d;
    --white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
}

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

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

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

.navbar-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

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

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

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-area {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d1b 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.cta-button-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.intro-section {
    padding: 80px 0;
}

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

.intro-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.beginner-block {
    background-color: var(--light-color);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-color);
}

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

.beginner-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

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

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

.features-section {
    padding: 80px 0;
}

.section-title-center {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.feature-box {
    padding: 35px;
    background-color: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-box:hover {
    background-color: var(--white);
    box-shadow: var(--shadow);
}

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

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

.history-block {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a4d1b 100%);
    padding: 80px 0;
    color: var(--white);
}

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

.history-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.history-header i {
    font-size: 40px;
}

.history-header h2 {
    font-size: 32px;
}

.history-body {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
}

.history-date {
    text-align: center;
    border-right: 3px solid var(--secondary-color);
    padding-right: 30px;
}

.date-number {
    display: block;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 10px;
}

.history-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.history-fact {
    display: flex;
    gap: 15px;
    background-color: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.history-fact i {
    font-size: 24px;
    color: var(--secondary-color);
}

.cta-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.cta-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-wrapper p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background-color: #1a4d1b;
    transform: translateY(-2px);
}

.site-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    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 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact li {
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-reg {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cookie-text p {
    margin-bottom: 10px;
}

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

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

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

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

.cookie-customize {
    background-color: var(--light-color);
    color: var(--primary-color);
}

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

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

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

.modal-content-cookie {
    background-color: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header-cookie {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--gray-color);
}

.modal-body-cookie {
    padding: 25px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 5px;
}

.modal-footer-cookie {
    padding: 25px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.page-header-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d1b 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-main-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-lead-text {
    font-size: 20px;
    opacity: 0.95;
}

.blog-grid-section {
    padding: 80px 0;
}

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

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--gray-color);
    font-size: 14px;
}

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

.blog-excerpt {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

.about-story-section {
    padding: 80px 0;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-text-block h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text-block p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-values-block {
    background-color: var(--light-color);
    padding: 35px;
    border-radius: 12px;
}

.about-values-block h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    gap: 15px;
}

.value-item i {
    color: var(--success-color);
    font-size: 24px;
    margin-top: 5px;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.team-intro-text {
    text-align: center;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 60px;
}

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

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

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

.team-info {
    padding: 25px;
}

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

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

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

.contact-section {
    padding: 80px 0;
}

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

.contact-info-block h2,
.contact-form-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.contact-icon {
    font-size: 32px;
    color: var(--secondary-color);
}

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

.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(--primary-color);
}

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

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

.submit-button {
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: #1a4d1b;
    transform: translateY(-2px);
}

.map-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

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

.modal-content-success {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
}

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

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

.close-modal-btn {
    margin-top: 25px;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

.post-article {
    padding-bottom: 60px;
}

.post-header-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.post-container {
    max-width: 800px;
    margin: -80px auto 0;
    position: relative;
}

.article-header {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.article-meta-info {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-category,
.post-date,
.read-time {
    color: var(--gray-color);
    font-size: 14px;
}

.post-category {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.article-lead {
    font-size: 20px;
    color: var(--gray-color);
    line-height: 1.6;
}

.article-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-footer-nav {
    margin-top: 40px;
    text-align: center;
}

.back-to-blog {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .intro-grid,
    .about-content-wrapper,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .history-body {
        grid-template-columns: 1fr;
    }

    .history-date {
        border-right: none;
        border-bottom: 3px solid var(--secondary-color);
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .article-title {
        font-size: 28px;
    }

    .article-lead {
        font-size: 16px;
    }

    .post-header-image {
        height: 300px;
    }

    .post-container {
        margin-top: -40px;
    }

    .article-header,
    .article-content {
        padding: 25px;
    }
}

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

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

    .section-header h2,
    .section-title-center {
        font-size: 28px;
    }
}