@charset "utf-8";
/* CSS Document */
/* Logo Styling */
.logo {
    max-width: 200px;
    margin: 20px auto;
}

/* Hero Section */
.hero-section {
    background-color: #000000;
    color: #f8f9fa;
    padding: 5rem 0;
}
.hero-video{
    width: 100%;
    display: block;
    object-fit: cover;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-section .btn {
    background-color: #ffbf00;
    border: none;
    color: #1c1c1c;
}

/* Features Section */
.features-section {
    background-color: #282828;
}

.features-section h3 {
    font-size: 1.5rem;
    margin-top: 15px;
}

.features-section p {
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: #1c1c1c;
    font-size: 0.9rem;
}

