/* On-Lima Agrosolutions Page Styles */

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.onlima-hero {
    background-image: url('images/onlima.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 360vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.onlima-hero .hero-overlay {
    background: rgba(0, 100, 0, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onlima-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.onlima-intro {
    padding: 60px 20px;
    background: linear-gradient(to right, #f0f8f0, #e8f5e8);
    text-align: center;
}

.onlima-intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* What We Do Section */
.what-we-do {
    padding: 60px 20px;
    background: #fff;
}

.what-we-do h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2E7D32;
}

.what-we-do-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.what-we-do-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.what-we-do-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.what-we-do-item h3 {
    color: #388E3C;
    margin-bottom: 10px;
}

.what-we-do-item p {
    color: #666;
}

/* Why On-Lima Section */
.why-onlima {
    padding: 60px 20px;
    background: linear-gradient(to right, #e8f5e8, #f0f8f0);
}

.why-onlima h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2E7D32;
}

.why-onlima-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-onlima-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-onlima-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.why-onlima-item h3 {
    color: #388E3C;
    margin-bottom: 10px;
}

.why-onlima-item p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .onlima-hero h1 {
        font-size: 2rem;
    }
    
    .what-we-do-content,
    .why-onlima-content {
        grid-template-columns: 1fr;
    }
    
    .what-we-do-item,
    .why-onlima-item {
        padding: 15px;
    }
}