/* Global styles */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Top bar */
.top-bar {
    background-color: #0d0d0d;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}
.top-bar a {
    color: #f7941d;
    text-decoration: none;
    margin-left: 15px;
}
.contact-email a {
    color: #f7941d;
    text-decoration: none;
}

/* Main navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}
.logo {
    font-size: 28px;
    font-weight: bold;
    color: #f7941d;
}
.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.main-nav li {
    margin-left: 20px;
}
.main-nav a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}
.main-nav a:hover,
.main-nav a.active {
    color: #f7941d;
}

/* Hero section */
.hero {
    position: relative;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}
.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}
.button {
    display: inline-block;
    background-color: #f7941d;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #cc7515;
}

/* Features section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
}
.feature {
    flex: 1 1 300px;
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.feature h2 {
    color: #f7941d;
    margin-bottom: 10px;
}
.feature p {
    font-size: 16px;
    color: #555555;
}

/* Footer */
footer {
    background-color: #0d0d0d;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}