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

/* Hero Section Styles */
.hero {
    background-image: url('./hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Updated logo styles */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 50px;
    z-index: 3; /* Higher than the overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

h1 {
    color: white;
    margin-bottom: 10px;
}

h2 {
    color: black;
    font-size: 1.2em;
}

#features {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
}

.feature {
    flex: 1 1 30%;
    margin: 10px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .feature {
        flex: 1 1 100%;
    }
}

.intro-text {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #333;
    max-width: 800px;
    line-height: 1.6;
}

.feature {
    flex: 1;
    margin: 10px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    text-align: center;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.feature h3 {
    color: #333;
}

#demo {
    padding: 20px;
    text-align: center;
    background-color: #FFDA00;
}

#demo h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#contact {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
}

#contact a {
    color: #007bff;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}