:root {
--primary-color: #2c5f2d;
--secondary-color: #97bc62;
--accent-color: #ff8c42;
--dark-color: #1a1a1a;
--light-color: #f5f5f5;
--white-color: #ffffff;
--gray-color: #6c757d;
--border-color: #e0e0e0;
--shadow: 0 2px 10px 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.6;
color: var(--dark-color);
background-color: var(--white-color);
}

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

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

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

.navbar-primary {
padding: 1rem 0;
}

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

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

.logo-wrapper a {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: var(--dark-color);
}

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

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

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

.nav-menu li a {
text-decoration: none;
color: var(--dark-color);
font-weight: 500;
transition: var(--transition);
padding: 0.5rem 1rem;
border-radius: 6px;
}

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

.mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
}

.mobile-toggle span {
width: 25px;
height: 3px;
background-color: var(--primary-color);
transition: var(--transition);
}

.hero-banner {
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;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(44,95,45,0.85), rgba(151,188,98,0.7));
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
color: var(--white-color);
max-width: 800px;
padding: 0 20px;
}

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

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-primary-hero {
display: inline-block;
padding: 1rem 2.5rem;
background-color: var(--accent-color);
color: var(--white-color);
text-decoration: none;
font-weight: 600;
border-radius: 50px;
transition: var(--transition);
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary-hero:hover {
background-color: #e67935;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.intro-section {
padding: 5rem 0;
background-color: var(--light-color);
}

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

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

.intro-text p {
font-size: 1.1rem;
margin-bottom: 1.5rem;
color: var(--gray-color);
}

.btn-secondary {
display: inline-block;
padding: 0.8rem 2rem;
background-color: var(--secondary-color);
color: var(--white-color);
text-decoration: none;
font-weight: 600;
border-radius: 6px;
transition: var(--transition);
}

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

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

.features-section {
padding: 5rem 0;
}

.section-heading {
text-align: center;
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 3rem;
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

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

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

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

.feature-card h3 {
font-size: 1.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.feature-card p {
color: var(--gray-color);
}

.latest-posts-section {
padding: 5rem 0;
background-color: var(--light-color);
}

.posts-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-bottom: 3rem;
}

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

.post-preview:hover {
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.post-image-wrapper {
width: 100%;
height: 220px;
overflow: hidden;
}

.post-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}

.post-preview:hover .post-image-wrapper img {
transform: scale(1.1);
}

.post-content {
padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

.cta-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
}

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

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

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

.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-bottom: 2rem;
}

.footer-column h4 {
color: var(--secondary-color);
margin-bottom: 1rem;
}

.footer-column p {
color: #cccccc;
line-height: 1.8;
}

.footer-reg {
font-size: 0.9rem;
margin-top: 0.5rem;
}

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

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

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

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

.footer-contact {
font-style: normal;
color: #cccccc;
}

.footer-contact a {
color: var(--secondary-color);
text-decoration: none;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #444;
color: #aaa;
}

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

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

.blog-content-section {
padding: 5rem 0;
}

.blog-posts-list {
display: flex;
flex-direction: column;
gap: 3rem;
}

.blog-post-card {
background-color: var(--white-color);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow);
display: grid;
grid-template-columns: 400px 1fr;
gap: 2rem;
}

.post-image-large {
width: 100%;
height: 100%;
overflow: hidden;
}

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

.post-details {
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
}

.post-date {
color: var(--gray-color);
font-size: 0.9rem;
margin-bottom: 1rem;
}

.post-details h2 {
margin-bottom: 1rem;
}

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

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

.post-summary {
color: var(--gray-color);
margin-bottom: 1.5rem;
}

.btn-read-more {
display: inline-block;
padding: 0.8rem 2rem;
background-color: var(--primary-color);
color: var(--white-color);
text-decoration: none;
font-weight: 600;
border-radius: 6px;
transition: var(--transition);
width: fit-content;
}

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

.about-story {
padding: 5rem 0;
}

.story-content h2 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.story-content h3 {
font-size: 1.8rem;
color: var(--primary-color);
margin: 2rem 0 1rem;
}

.story-content p {
font-size: 1.1rem;
color: var(--gray-color);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.values-list {
list-style: none;
padding-left: 0;
}

.values-list li {
padding: 1rem;
margin-bottom: 1rem;
background-color: var(--light-color);
border-left: 4px solid var(--primary-color);
border-radius: 6px;
}

.values-list strong {
color: var(--primary-color);
}

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

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

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

.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.team-photo {
width: 100%;
height: 300px;
overflow: hidden;
}

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

.team-member h3 {
color: var(--primary-color);
margin: 1.5rem 0 0.5rem;
padding: 0 1.5rem;
}

.member-title {
color: var(--accent-color);
font-weight: 600;
margin-bottom: 1rem;
padding: 0 1.5rem;
}

.member-bio {
color: var(--gray-color);
padding: 0 1.5rem 1.5rem;
line-height: 1.6;
}

.contact-cta-about {
padding: 5rem 0;
text-align: center;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white-color);
}

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

.contact-main-section {
padding: 5rem 0;
}

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

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

.contact-info-box h2 {
color: var(--primary-color);
margin-bottom: 2rem;
}

.info-item {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
}

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

.info-text h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.info-text p,
.info-text a {
color: var(--gray-color);
text-decoration: none;
}

.info-text a:hover {
color: var(--primary-color);
}

.company-info {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid var(--border-color);
}

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

.contact-form-box h2 {
color: var(--primary-color);
margin-bottom: 2rem;
}

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

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

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid var(--border-color);
border-radius: 6px;
font-size: 1rem;
transition: var(--transition);
}

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

.btn-spell-check {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.6rem 1.2rem;
background-color: var(--secondary-color);
color: var(--white-color);
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
margin-bottom: 1rem;
transition: var(--transition);
}

.btn-spell-check:hover {
background-color: var(--primary-color);
}

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

.btn-submit:hover {
background-color: var(--accent-color);
}

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

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

.modal-content-success {
background-color: var(--white-color);
padding: 3rem;
border-radius: 12px;
text-align: center;
max-width: 500px;
animation: slideDown 0.3s ease;
}

@keyframes slideDown {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

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

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

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

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

.post-single {
background-color: var(--white-color);
}

.post-header-single {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white-color);
padding: 4rem 0 2rem;
}

.post-header-single h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.post-meta-single {
font-size: 1rem;
opacity: 0.9;
}

.separator {
margin: 0 1rem;
}

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

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

.post-content-wrapper {
padding: 4rem 0;
}

.post-body {
max-width: 800px;
margin: 0 auto;
}

.lead-paragraph {
font-size: 1.25rem;
color: var(--gray-color);
margin-bottom: 2rem;
line-height: 1.8;
}

.post-body h2 {
color: var(--primary-color);
font-size: 2rem;
margin: 3rem 0 1rem;
}

.post-body h3 {
color: var(--primary-color);
font-size: 1.5rem;
margin: 2rem 0 1rem;
}

.post-body p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
color: var(--dark-color);
}

.post-body ul,
.post-body ol {
margin: 1.5rem 0 1.5rem 2rem;
}

.post-body li {
margin-bottom: 0.5rem;
line-height: 1.8;
}

.post-navigation {
display: flex;
justify-content: space-between;
max-width: 800px;
margin: 3rem auto 0;
padding-top: 3rem;
border-top: 1px solid var(--border-color);
gap: 2rem;
}

.nav-prev,
.nav-next {
display: flex;
flex-direction: column;
text-decoration: none;
padding: 1rem;
border-radius: 8px;
background-color: var(--light-color);
transition: var(--transition);
flex: 1;
}

.nav-prev:hover,
.nav-next:hover {
background-color: var(--primary-color);
color: var(--white-color);
}

.nav-label {
font-size: 0.9rem;
color: var(--gray-color);
margin-bottom: 0.5rem;
}

.nav-prev:hover .nav-label,
.nav-next:hover .nav-label {
color: rgba(255,255,255,0.8);
}

.nav-title {
font-weight: 600;
color: var(--dark-color);
}

.nav-prev:hover .nav-title,
.nav-next:hover .nav-title {
color: var(--white-color);
}

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

.cookie-banner.active {
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-content h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.cookie-content p {
color: var(--gray-color);
margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

.btn-cookie-decline {
background-color: var(--gray-color);
color: var(--white-color);
}

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

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

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

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

.modal-content-cookie h3 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

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

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

.cookie-option input[type="checkbox"] {
width: 20px;
height: 20px;
cursor: pointer;
}

.cookie-desc {
margin-top: 0.5rem;
color: var(--gray-color);
font-size: 0.9rem;
padding-left: 2.5rem;
}

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

.nav-menu {
position: fixed;
top: 70px;
right: -100%;
flex-direction: column;
background-color: var(--white-color);
width: 70%;
height: calc(100vh - 70px);
padding: 2rem;
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
transition: var(--transition);
align-items: flex-start;
}

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

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

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

.intro-grid {
grid-template-columns: 1fr;
gap: 2rem;
}

.features-grid {
grid-template-columns: 1fr;
}

.posts-grid {
grid-template-columns: 1fr;
}

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

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

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

.post-header-single h1 {
font-size: 1.8rem;
}

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

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