body {
    font-family: Arial, sans-serif;
}

.hero {
    height: 100vh;
    background: url('image/homepage-image.jpeg') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    font-weight: bold;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 1em;
}

.btn-primary {
    background-color: #343a40;
    border: none;
}

.btn-primary:hover {
    background-color: #474e54;
}

/* About Section */
.about {
    padding: 60px 0;
}

.about img {
    max-width: 100%;
    border-radius: 10px;
}

/* Features Section */
.features {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.feature-icon {
    font-size: 2em;
    color: #ff5722;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.navbar {
    background-color: #343a40;
}

.navbar-brand,
.navbar-nav .nav-link {
    color: white;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5em;
}

.navbar-nav .nav-link:hover {
    color: #a2d2ff;
}

.btn-space {
    margin-right: 10px;
}

.nav-space {
    margin-left: 10px;
}