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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.company-info h1 {
    font-size: 2em;
    margin-bottom: 5px;
}

.company-info p {
    font-size: 0.9em;
    opacity: 0.9;
}

.contact-header {
    text-align: right;
}

.contact-header a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    font-size: 1.1em;
}

.contact-header a:hover {
    text-decoration: underline;
}

/* Navigation */
nav {
    background: #1a3d0e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav a:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

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

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: white;
}

/* Sections */
section {
    padding: 60px 0;
    background: white;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

section:nth-child(even) {
    background: #f9f9f9;
}

h2 {
    color: #2d5016;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #4a7c2a;
    padding-bottom: 15px;
}

h3 {
    color: #4a7c2a;
    font-size: 1.8em;
    margin: 25px 0 15px 0;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.1em;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #4a7c2a;
}

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

.service-card h3 {
    color: #2d5016;
    margin-top: 0;
}

/* Footer */
footer {
    background: #1a3d0e;
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 40px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    border-bottom: 2px solid #4a7c2a;
    padding-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d5016;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-header {
        text-align: center;
        margin-top: 15px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .slider-container {
        height: 250px;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    section {
        padding: 40px 20px;
    }
}

.highlight {
    background: #e8f5e9;
    padding: 20px;
    border-left: 4px solid #4a7c2a;
    margin: 20px 0;
    border-radius: 5px;
}

/* Page specific styles */
.page-content {
    min-height: calc(100vh - 300px);
    padding: 40px 0;
}

.page-content section {
    margin: 0;
}

