
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Hero section with background image */
.hero {
    position: relative;
    height: 400px;
    background-image: url('public/lovable-uploads/c14e723b-278e-45b0-971c-e50fcf6cd133.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h1 {
    position: relative;
    z-index: 2;
    color: #4ecdc4;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Introduction paragraph */
.intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    line-height: 1.8;
}

.intro p {
    font-size: 16px;
    color: #333;
}

/* Services section */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-left, .service-right {
    display: flex;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}
.next-service {
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
}

.service-content {
    flex: 1;
    padding: 30px;
    background-color: #f8f8f8;
}

.service-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: white;
}

.service-content p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

.service-image {
    flex: 1;
    background-color: #ddd;
    min-height: 250px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-left, .service-right {
        flex-direction: column;
    }
    
    .service-image {
        min-height: 200px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
}