
/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* General Styles */
body {
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 100px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline;
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background: url('hero-background.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-section .hero-content h1 {
    font-size: 2.5rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Services Section */
.services-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.services-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.services {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Experience Section */
.experience-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #333;
    color: #fff;
}

.experience-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    padding: 50px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-section ul {
    list-style: none;
}

.contact-section ul li {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
