* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
}

header h1 {
    display: inline-block;
    font-size: 24px;
}

nav {
    float: right;
    margin-top: 5px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
}

nav a:hover {
    color: #3498db;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

section {
    padding: 60px 20px;
}

section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

section img {
    width: 100%;
    max-width: 600px;
    max-height: 300px;
    object-fit: cover;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
}

section p {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service {
    text-align: center;
    padding: 20px;
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.service h3 {
    margin: 20px 0 10px;
    font-size: 24px;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}
