/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3 {
    margin: 0;
}

p {
    margin: 0 0 20px;
}

/* Hero Section */
#hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

#hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

#hero p {
    font-size: 24px;
    font-weight: 300;
}

/* Services Section */
#services {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

#services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
}

.service {
    margin-bottom: 40px;
}

.service h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service p {
    font-size: 18px;
    font-weight: 300;
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    text-align: center;
}

#contact h2 {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}

#contact p {
    font-size: 18px;
    font-weight: 300;
}

#contact a {
    color: #007BFF;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .service {
        display: flex;
        align-items: flex-start;
    }

    .service h3 {
        flex: 1;
    }

    .service p {
        flex: 2;
    }
}
