/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #add8e6, #ffffff);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #f4f4f4;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.company-name h1 {
    margin: 0;
    color: #007bff;
    font-size: 2.5rem;
}

.hero {
    position: relative;
    text-align: center;
    padding: 0;
    margin-bottom: 2rem;
}

.hero .container {
    position: relative;
    padding: 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 10px;
    max-width: 80%;
}

.hero h2 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    color: #28a745;
}

.cta-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

.services, .about, .contact {
    padding: 3rem 0;
}

.services {
    background-color: #f8f9fa;
}

.services h2, .about h2, .contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #007bff;
}

.services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.services li {
    background: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.services h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: #007bff;
}

.services p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

.about {
    background-color: #e9ecef;
}

.contact {
    background-color: #f4f4f4;
    text-align: center;
}

.contact a {
    color: #007bff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .company-name h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 1.5rem;
    }
}