:root {
--primary-color: #2d5a3d;
--secondary-color: #6fa84e;
--accent-color: #d4af37;
--text-dark: #1a1a1a;
--text-light: #f5f5f5;
--background-light: #fafafa;
--background-white: #ffffff;
--border-color: #e0e0e0;
--success-color: #4caf50;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
--shadow-md: 0 4px 16px rgba(0,0,0,0.15);
--shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
}

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

html {
scroll-behavior: smooth;
}

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

::-webkit-scrollbar {
width: 14px;
}

::-webkit-scrollbar-track {
background: linear-gradient(to bottom, #e8f5e9, #c8e6c9);
border-radius: 10px;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
border-radius: 10px;
border: 2px solid #e8f5e9;
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(to bottom, #1e3a28, var(--primary-color));
}

.primary-navigation {
background: linear-gradient(135deg, var(--primary-color), #1e3a28);
padding: 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: var(--shadow-md);
}

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

.brand-logo {
display: flex;
align-items: center;
gap: 1rem;
text-decoration: none;
color: var(--text-light);
font-size: 1.5rem;
font-weight: 700;
transition: transform 0.3s ease;
}

.brand-logo:hover {
transform: scale(1.05);
}

.brand-logo img {
border-radius: 50%;
border: 3px solid var(--accent-color);
object-fit: cover;
}

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

.main-menu a {
color: var(--text-light);
text-decoration: none;
font-weight: 600;
font-size: 1.05rem;
padding: 0.5rem 1rem;
border-radius: 6px;
transition: all 0.3s ease;
position: relative;
}

.main-menu a::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 3px;
background: var(--accent-color);
transition: width 0.3s ease;
}

.main-menu a:hover::after {
width: 80%;
}

.main-menu a:hover {
background: rgba(255,255,255,0.1);
}

.hero-section {
background: linear-gradient(135deg, rgba(45,90,61,0.95), rgba(30,58,40,0.9)), url('images/1.jpg') center/cover;
min-height: 70vh;
display: flex;
align-items: center;
justify-content: space-between;
padding: 4rem 5%;
gap: 3rem;
color: var(--text-light);
}

.hero-content {
flex: 1;
max-width: 600px;
}

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
line-height: 1.2;
color: var(--text-light);
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
font-size: 1.4rem;
margin-bottom: 2rem;
color: #e8f5e9;
}

.cta-button {
display: inline-block;
background: var(--accent-color);
color: var(--text-dark);
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: var(--shadow-md);
}

.cta-button:hover {
background: #c29d2e;
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}

.hero-image {
flex: 1;
max-width: 550px;
}

.hero-image img {
width: 100%;
border-radius: 16px;
box-shadow: var(--shadow-lg);
}

.fun-fact-section {
background: linear-gradient(135deg, #fff9e6, #fffbf0);
padding: 3rem 5%;
border-left: 6px solid var(--accent-color);
margin: 3rem 5%;
border-radius: 12px;
box-shadow: var(--shadow-sm);
}

.container-fun h2 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 1rem;
}

.container-fun p {
font-size: 1.2rem;
color: var(--text-dark);
line-height: 1.8;
}

.services-section {
padding: 5rem 5%;
background: var(--background-white);
}

.content-container {
max-width: 1400px;
margin: 0 auto;
}

.content-container h2 {
text-align: center;
font-size: 2.8rem;
margin-bottom: 3rem;
color: var(--primary-color);
position: relative;
padding-bottom: 1rem;
}

.content-container h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: var(--accent-color);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.service-card {
background: var(--background-light);
padding: 2.5rem;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: var(--secondary-color);
background: var(--background-white);
}

.service-icon {
font-size: 3.5rem;
display: block;
margin-bottom: 1.5rem;
}

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

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

.process-section {
padding: 5rem 5%;
background: linear-gradient(135deg, #e8f5e9, #f1f8f4);
}

.process-timeline {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.process-step {
background: var(--background-white);
padding: 2.5rem;
border-radius: 12px;
box-shadow: var(--shadow-sm);
position: relative;
border-top: 5px solid var(--secondary-color);
}

.step-number {
position: absolute;
top: -20px;
left: 50%;
transform: translateX(-50%);
background: var(--accent-color);
color: var(--text-dark);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.3rem;
box-shadow: var(--shadow-sm);
}

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

.testimonials-section {
padding: 5rem 5%;
background: var(--background-white);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.testimonial-card {
background: linear-gradient(135deg, #f9f9f9, #ffffff);
padding: 2.5rem;
border-radius: 12px;
box-shadow: var(--shadow-md);
border-left: 5px solid var(--secondary-color);
}

.testimonial-card p {
font-size: 1.1rem;
font-style: italic;
margin-bottom: 1.5rem;
color: #444;
line-height: 1.8;
}

.testimonial-author strong {
color: var(--primary-color);
font-size: 1.2rem;
display: block;
margin-bottom: 0.3rem;
}

.testimonial-author span {
color: #777;
font-size: 0.95rem;
}

.blog-preview-section {
padding: 5rem 5%;
background: var(--background-light);
}

.blog-preview-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

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

.preview-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.preview-card img {
width: 100%;
height: 240px;
object-fit: cover;
}

.preview-card h3 {
padding: 1.5rem 1.5rem 0.5rem;
font-size: 1.4rem;
}

.preview-card h3 a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s ease;
}

.preview-card h3 a:hover {
color: var(--secondary-color);
}

.preview-card p {
padding: 0 1.5rem 1rem;
color: #666;
line-height: 1.7;
}

.read-more {
display: inline-block;
margin: 0 1.5rem 1.5rem;
color: var(--secondary-color);
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}

.read-more:hover {
color: var(--primary-color);
padding-left: 5px;
}

.blog-cta {
text-align: center;
margin-top: 3rem;
}

.secondary-button {
display: inline-block;
background: var(--secondary-color);
color: var(--background-white);
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
transition: all 0.3s ease;
box-shadow: var(--shadow-sm);
}

.secondary-button:hover {
background: var(--primary-color);
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}

.site-footer {
background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
color: var(--text-light);
padding: 4rem 5% 1rem;
}

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

.footer-column h4 {
color: var(--accent-color);
margin-bottom: 1.5rem;
font-size: 1.3rem;
}

.footer-column p {
margin-bottom: 0.8rem;
line-height: 1.8;
color: #ccc;
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 0.7rem;
}

.footer-column a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-column a:hover {
color: var(--accent-color);
}

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

.cookie-banner {
position: fixed;
bottom: -500px;
left: 0;
right: 0;
background: linear-gradient(135deg, var(--primary-color), #1e3a28);
color: var(--text-light);
padding: 2rem;
box-shadow: var(--shadow-lg);
z-index: 10000;
transition: bottom 0.5s ease;
}

.cookie-banner.show {
bottom: 0;
}

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

.cookie-content h3 {
font-size: 1.6rem;
margin-bottom: 1rem;
color: var(--accent-color);
}

.cookie-content p {
margin-bottom: 1.5rem;
font-size: 1.05rem;
line-height: 1.7;
}

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

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

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

.cookie-btn.accept:hover {
background: #45a049;
}

.cookie-btn.reject {
background: #f44336;
color: white;
}

.cookie-btn.reject:hover {
background: #da190b;
}

.cookie-btn.customize {
background: var(--accent-color);
color: var(--text-dark);
}

.cookie-btn.customize:hover {
background: #c29d2e;
}

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

.page-header {
background: linear-gradient(135deg, rgba(45,90,61,0.9), rgba(30,58,40,0.85)), url('images/1.jpg') center/cover;
padding: 5rem 5%;
text-align: center;
color: var(--text-light);
}

.header-content h1 {
font-size: 3rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-content p {
font-size: 1.3rem;
max-width: 700px;
margin: 0 auto;
color: #e8f5e9;
}

.about-intro {
padding: 5rem 5%;
background: var(--background-white);
}

.intro-flex {
display: flex;
gap: 4rem;
align-items: center;
}

.intro-text {
flex: 1.2;
}

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

.intro-text p {
margin-bottom: 1.5rem;
font-size: 1.1rem;
line-height: 1.8;
color: #555;
}

.intro-image {
flex: 1;
}

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

.values-section {
padding: 5rem 5%;
background: linear-gradient(135deg, #f1f8f4, #e8f5e9);
}

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

.value-item {
background: var(--background-white);
padding: 2rem;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: transform 0.3s ease;
}

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

.value-icon {
font-size: 3rem;
display: block;
margin-bottom: 1rem;
}

.value-item h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
font-size: 1.5rem;
}

.team-section {
padding: 5rem 5%;
background: var(--background-white);
}

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

.team-member {
background: var(--background-light);
padding: 2rem;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
}

.team-member:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.team-member img {
width: 100%;
max-width: 300px;
border-radius: 50%;
margin-bottom: 1.5rem;
border: 5px solid var(--secondary-color);
}

.team-member h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
font-size: 1.5rem;
}

.team-member p:first-of-type {
color: var(--secondary-color);
font-weight: 600;
margin-bottom: 1rem;
}

.team-member p:last-of-type {
color: #666;
line-height: 1.7;
}

.achievements-section {
padding: 5rem 5%;
background: linear-gradient(135deg, var(--primary-color), #1e3a28);
color: var(--text-light);
}

.achievements-section h2 {
color: var(--text-light);
}

.achievements-section h2::after {
background: var(--accent-color);
}

.achievements-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.achievement-card {
background: rgba(255,255,255,0.1);
padding: 2.5rem;
border-radius: 12px;
text-align: center;
backdrop-filter: blur(10px);
border: 2px solid rgba(255,255,255,0.2);
}

.achievement-number {
font-size: 3.5rem;
font-weight: 700;
color: var(--accent-color);
margin-bottom: 0.5rem;
}

.achievement-card p {
font-size: 1.2rem;
color: var(--text-light);
}

.blog-listing {
padding: 4rem 5%;
background: var(--background-white);
}

.blog-posts-grid {
display: grid;
gap: 3rem;
max-width: 900px;
margin: 0 auto;
}

.blog-post-card {
background: var(--background-light);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

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

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

.post-content {
padding: 2rem;
}

.post-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
}

.post-date, .post-category {
font-size: 0.9rem;
color: #777;
font-weight: 600;
}

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

.post-content h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
}

.post-content h2 a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s ease;
}

.post-content h2 a:hover {
color: var(--secondary-color);
}

.post-content > p {
color: #666;
line-height: 1.8;
margin-bottom: 1.5rem;
}

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

.read-more-link:hover {
color: var(--primary-color);
padding-left: 5px;
}

.contact-section {
padding: 4rem 5%;
background: var(--background-white);
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 4rem;
max-width: 1300px;
margin: 0 auto;
}

.contact-info h2 {
font-size: 2.2rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.contact-info > p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
color: #555;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 2rem;
}

.contact-item {
display: flex;
gap: 1.5rem;
align-items: flex-start;
}

.contact-icon {
font-size: 2rem;
color: var(--secondary-color);
}

.contact-item h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
font-size: 1.3rem;
}

.contact-item p {
color: #666;
line-height: 1.7;
}

.contact-form-wrapper {
background: var(--background-light);
padding: 2.5rem;
border-radius: 12px;
box-shadow: var(--shadow-sm);
}

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

.form-group {
margin-bottom: 1.8rem;
}

.form-group label {
display: block;
margin-bottom: 0.6rem;
color: var(--text-dark);
font-weight: 600;
font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.9rem;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.3s ease;
}

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

.submit-btn {
background: var(--secondary-color);
color: white;
padding: 1rem 3rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--shadow-sm);
}

.submit-btn:hover {
background: var(--primary-color);
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}

.modal {
display: none;
position: fixed;
z-index: 10001;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
}

.modal.show {
display: flex;
align-items: center;
justify-content: center;
}

.modal-content {
background: var(--background-white);
padding: 3rem;
border-radius: 12px;
max-width: 500px;
text-align: center;
box-shadow: var(--shadow-lg);
position: relative;
animation: modalSlideIn 0.3s ease;
}

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

.close-modal {
position: absolute;
top: 1rem;
right: 1.5rem;
font-size: 2rem;
cursor: pointer;
color: #999;
transition: color 0.3s ease;
}

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

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

.modal-content p {
margin-bottom: 1rem;
line-height: 1.8;
color: #555;
font-size: 1.1rem;
}

.modal-btn {
background: var(--secondary-color);
color: white;
padding: 0.8rem 2.5rem;
border: none;
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
margin-top: 1.5rem;
transition: all 0.3s ease;
}

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

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

.post-header {
padding: 3rem 5% 2rem;
background: var(--background-light);
}

.post-meta-info {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
}

.post-header h1 {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 1rem;
line-height: 1.3;
}

.post-excerpt {
font-size: 1.3rem;
color: #555;
line-height: 1.7;
max-width: 900px;
}

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

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

.post-content {
padding: 3rem 5%;
}

.post-content .content-container {
max-width: 850px;
}

.post-section {
margin-bottom: 3rem;
}

.post-section h2 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 3px solid var(--accent-color);
}

.post-section p {
font-size: 1.1rem;
line-height: 1.9;
color: #444;
margin-bottom: 1.5rem;
}

.post-cta {
background: linear-gradient(135deg, #e8f5e9, #f1f8f4);
padding: 3rem;
border-radius: 12px;
text-align: center;
margin-top: 4rem;
border: 2px solid var(--secondary-color);
}

.post-cta h3 {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.post-cta p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #555;
}

@media (max-width: 968px) {
.nav-wrapper {
flex-direction: column;
gap: 1.5rem;
}

.main-menu {
flex-direction: column;
gap: 1rem;
text-align: center;
}

.hero-section {
flex-direction: column;
text-align: center;
}

.hero-content h1 {
font-size: 2.5rem;
}

.intro-flex {
flex-direction: column;
}

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

.services-grid,
.process-timeline,
.testimonials-grid,
.blog-preview-grid,
.values-grid,
.team-grid,
.achievements-grid {
grid-template-columns: 1fr;
}

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

@media (max-width: 600px) {
.hero-content h1 {
font-size: 2rem;
}

.hero-content p {
font-size: 1.1rem;
}

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

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

.cookie-btn {
width: 100%;
}
}
