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

:root {
--primary-green: #4CAF50;
--secondary-green: #2E7D32;
--accent-orange: #FF9800;
--light-bg: #F1F8F4;
--dark-text: #1B5E20;
--white: #FFFFFF;
--gray-light: #E8F5E9;
--gray-medium: #A5D6A7;
--shadow: rgba(0, 0, 0, 0.1);
}

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

.main-header {
background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
box-shadow: 0 4px 12px var(--shadow);
position: sticky;
top: 0;
z-index: 1000;
}

.navigation-bar {
padding: 0;
}

.nav-container {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.2rem 2.5rem;
}

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

.logo-image {
width: 55px;
height: 55px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--white);
}

.brand-name {
font-size: 1.8rem;
font-weight: 700;
color: var(--white);
letter-spacing: 1px;
}

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

.nav-link {
color: var(--white);
text-decoration: none;
font-weight: 500;
font-size: 1.05rem;
transition: all 0.3s ease;
padding: 0.6rem 1.2rem;
border-radius: 8px;
display: flex;
align-items: center;
gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
background-color: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}

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

.mobile-toggle span {
width: 28px;
height: 3px;
background-color: var(--white);
border-radius: 3px;
}

.hero-banner {
position: relative;
height: 85vh;
background-image: url('images/1.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(46, 125, 50, 0.85), rgba(76, 175, 80, 0.75));
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
color: var(--white);
max-width: 900px;
padding: 2rem;
}

.hero-title {
font-size: 3.8rem;
font-weight: 800;
margin-bottom: 1.5rem;
text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2.5rem;
opacity: 0.95;
font-weight: 300;
}

.cta-button {
display: inline-block;
padding: 1.2rem 3rem;
background-color: var(--accent-orange);
color: var(--white);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.15rem;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.cta-button:hover {
background-color: #F57C00;
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(255, 152, 0, 0.5);
}

.welcome-section {
padding: 6rem 2rem;
background-color: var(--white);
}

.content-wrapper {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.section-heading {
font-size: 2.8rem;
color: var(--secondary-green);
margin-bottom: 1.5rem;
font-weight: 700;
}

.section-text {
font-size: 1.15rem;
line-height: 1.8;
color: #424242;
margin-bottom: 1.5rem;
}

.secondary-btn {
display: inline-block;
padding: 1rem 2.5rem;
background-color: var(--primary-green);
color: var(--white);
text-decoration: none;
border-radius: 30px;
font-weight: 600;
transition: all 0.3s ease;
margin-top: 1rem;
}

.secondary-btn:hover {
background-color: var(--secondary-green);
transform: translateY(-2px);
box-shadow: 0 6px 20px var(--shadow);
}

.feature-image {
width: 100%;
height: auto;
border-radius: 20px;
box-shadow: 0 10px 40px var(--shadow);
}

.benefits-section {
padding: 6rem 2rem;
background: linear-gradient(135deg, var(--light-bg), var(--gray-light));
}

.centered-heading {
text-align: center;
font-size: 2.8rem;
color: var(--secondary-green);
margin-bottom: 3.5rem;
font-weight: 700;
}

.benefits-grid {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
}

.benefit-card {
background-color: rgba(255, 255, 255, 0.8);
padding: 2.5rem;
border-radius: 15px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 5px 20px var(--shadow);
backdrop-filter: blur(10px);
}

.benefit-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 35px var(--shadow);
background-color: rgba(255, 255, 255, 0.95);
}

.benefit-icon {
font-size: 3.5rem;
color: var(--primary-green);
margin-bottom: 1.5rem;
}

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

.benefit-card p {
font-size: 1.05rem;
color: #616161;
line-height: 1.7;
}

.featured-posts {
padding: 6rem 2rem;
background-color: var(--white);
}

.posts-grid {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
}

.post-card {
background-color: var(--white);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 25px var(--shadow);
transition: all 0.3s ease;
}

.post-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px var(--shadow);
}

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

.post-content {
padding: 2rem;
}

.post-content h3 {
font-size: 1.5rem;
color: var(--secondary-green);
margin-bottom: 1rem;
font-weight: 600;
}

.post-content p {
font-size: 1.05rem;
color: #616161;
line-height: 1.7;
margin-bottom: 1.5rem;
}

.read-more {
color: var(--accent-orange);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
}

.read-more:hover {
gap: 1rem;
color: #F57C00;
}

.cta-section {
position: relative;
padding: 6rem 2rem;
background-image: url('images/5.jpg');
background-size: cover;
background-position: center;
text-align: center;
}

.cta-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(76, 175, 80, 0.8));
}

.cta-content {
position: relative;
z-index: 2;
color: var(--white);
max-width: 800px;
margin: 0 auto;
}

.cta-content h2 {
font-size: 3rem;
margin-bottom: 1.5rem;
font-weight: 700;
}

.cta-content p {
font-size: 1.3rem;
margin-bottom: 2.5rem;
opacity: 0.95;
}

.cta-button-white {
display: inline-block;
padding: 1.2rem 3rem;
background-color: var(--white);
color: var(--secondary-green);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.15rem;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button-white:hover {
background-color: var(--accent-orange);
color: var(--white);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.main-footer {
background: linear-gradient(135deg, var(--secondary-green), var(--dark-text));
color: var(--white);
padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
font-size: 1.4rem;
margin-bottom: 1.5rem;
color: var(--white);
}

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

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

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

.footer-links a {
color: var(--white);
text-decoration: none;
opacity: 0.9;
transition: all 0.3s ease;
}

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

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

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, rgba(46, 125, 50, 0.97), rgba(27, 94, 32, 0.97));
backdrop-filter: blur(10px);
padding: 2rem;
box-shadow: 0 -5px 30px var(--shadow);
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

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

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

.cookie-text {
flex: 1;
color: var(--white);
}

.cookie-text h3 {
font-size: 1.5rem;
margin-bottom: 0.8rem;
}

.cookie-text p {
font-size: 1rem;
line-height: 1.6;
margin-bottom: 0.8rem;
opacity: 0.95;
}

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

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

.cookie-btn {
padding: 0.9rem 2rem;
border: none;
border-radius: 30px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1rem;
}

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

.cookie-btn.accept:hover {
background-color: #F57C00;
transform: translateY(-2px);
}

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

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

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

.cookie-btn.customize:hover {
background-color: var(--gray-light);
}

@media screen and (max-width: 968px) {
.nav-menu {
display: none;
}

.mobile-toggle {
display: flex;
}

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

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

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

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

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

.cookie-content {
flex-direction: column;
text-align: center;
}

.cookie-buttons {
justify-content: center;
}

.cta-content h2 {
font-size: 2rem;
}
}

@media screen and (max-width: 600px) {
.nav-container {
padding: 1rem 1.5rem;
}

.hero-banner {
height: 70vh;
}

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

.section-heading,
.centered-heading {
font-size: 2rem;
}

.welcome-section,
.benefits-section,
.featured-posts {
padding: 3rem 1rem;
}
}
