/* Global Styles */
body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav li {
    display: inline;
    margin-right: 20px;
}

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

/* Hero Section */
.hero {
    background-image: url('background-image.jpg');
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}

.hero-content h1 {
    font-size: 36px;
}

.hero-content p {
    font-size: 18px;
}

/* Features Section */
.features {
    padding: 50px 0;
}

.feature {
    text-align: center;
    margin-bottom: 30px;
}

.feature img {
    width: 100px;
}

/* About Section */
.about {
    background-color: #444;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

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

.contact-info p {
    font-size: 18px;
    margin: 10px 0;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

