/* Hero Section Styles */
.hero {
    background-image: url('../images/main.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Who We Serve Section */
.who-we-serve {
    padding: 60px 0;
    background: #fff;
}

.who-we-serve .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.serve-list {
    flex: 1;
    min-width: 250px;
}

.serve-list h3 {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 20px;
}

.serve-list ul {
    list-style: none;
    padding: 0;
}

.serve-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.serve-description {
    flex: 2;
    min-width: 300px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Our Values Section */
.our-values {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.our-values h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.our-values h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.our-values p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefits h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: #fff;
    padding: 25px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.benefit-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 1rem;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: #007bff;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: #fff;
    color: #007bff;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .who-we-serve .container {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}