/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #0b0c10;
}

h1, h3 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

p {
    margin: 0;
    font-size: 1.2em;
}

a {
    text-decoration: none;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('assets/css/images/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3em;
}

.hero-content p {
    font-size: 1.5em;
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1f2833;
    color: #66fcf1;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #45a29e;
}

/* Video Section */
#video-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #1f2833;
}

.intro-text {
    font-size: 1.5em;
    margin-bottom: 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

/* Features Section */
#features {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background-color: #0b0c10;
}

.feature {
    max-width: 300px;
    text-align: center;
}

.feature img {
    width: 100px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.1em;
}
