:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #f4a261;
    --dark-color: #1a2a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --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.7;
    color: var(--text-color);
    background-color: #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.hero-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-read-more,
.btn-submit,
.btn-back,
.btn-next {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ffffff;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.section-heading {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.section-heading:hover {
    color: var(--accent-color);
    transform: scale(1.02);
    transition: var(--transition);
}

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

.daily-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.daily-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.daily-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.daily-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.daily-item-content {
    padding: 24px;
}

.daily-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.daily-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.pillars-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.pillar-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--light-color);
    border-radius: 12px;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    background-color: #ffffff;
}

.pillar-icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.pillar-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.pillar-title:hover {
    color: var(--accent-color);
    transition: var(--transition);
}

.pillar-text {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

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

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

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

.info-paragraph {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.white-text {
    color: #ffffff;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.main-footer {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-heading {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-text {
    margin-bottom: 12px;
    opacity: 0.85;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
}

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

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

.footer-disclaimer {
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.75;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-title {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cookie-text {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject,
.btn-settings {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-accept:hover {
    background-color: var(--dark-color);
}

.btn-reject {
    background-color: #cccccc;
    color: #333333;
}

.btn-reject:hover {
    background-color: #999999;
}

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

.btn-settings:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.page-title {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 15px;
}

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

.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.about-paragraph {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

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

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

.team-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-photo {
    width: 100%;
    max-width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--secondary-color);
}

.team-name {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.team-position {
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-bio {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

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

.value-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-title:hover {
    color: var(--accent-color);
    transition: var(--transition);
}

.value-text {
    color: #555;
    line-height: 1.7;
}

.blog-listing {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.blog-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 35px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

.blog-content {
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-title {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-title:hover {
    color: var(--accent-color);
    transition: var(--transition);
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.btn-read-more {
    background-color: var(--primary-color);
    color: #ffffff;
    align-self: flex-start;
}

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

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 12px;
}

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

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

.contact-label {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail {
    color: #555;
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 12px;
}

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

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

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

.form-input,
.form-textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.btn-submit {
    background-color: var(--primary-color);
    color: #ffffff;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.contact-disclaimer {
    margin-top: 50px;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 5px solid var(--accent-color);
    border-radius: 6px;
}

.disclaimer-text {
    color: #856404;
    line-height: 1.7;
}

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

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

.modal-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

.modal-text {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-close-modal {
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.post-container {
    padding: 60px 0;
    background-color: #ffffff;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.post-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: #777;
    font-size: 15px;
    flex-wrap: wrap;
}

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

.post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

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

.post-intro {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 500;
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
}

.post-heading {
    font-size: 30px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.post-heading:hover {
    color: var(--accent-color);
    transition: var(--transition);
}

.post-paragraph {
    font-size: 17px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
}

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

.btn-back,
.btn-next {
    background-color: var(--secondary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-back:hover,
.btn-next:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 86px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 86px);
        background-color: #ffffff;
        flex-direction: column;
        padding: 40px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

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

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

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

    .info-row,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .blog-content {
        padding: 30px;
    }

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

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

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

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

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

    .pillars-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .post-title {
        font-size: 26px;
    }

    .post-intro {
        font-size: 17px;
    }

    .post-heading {
        font-size: 24px;
    }

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

    .cookie-buttons button,
    .cookie-buttons a {
        width: 100%;
        text-align: center;
    }
}