body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1f1f1f;
    padding: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

nav .logo {
    font-size: 1.5em;
    color: #ff0000;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.header-content {
    padding: 50px 20px;
}

header h1 {
    margin: 0;
    font-size: 3em;
}

header p {
    margin: 10px 0;
    font-size: 1.2em;
}

.cta-button {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

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

main {
    padding: 20px;
}

h2 {
    color: #ff0000;
    font-size: 2em;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background-color: #1f1f1f;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.feature-list .dropdown-btn {
    background-color: #1f1f1f;
    color: #ffffff;
    border: none;
    padding: 10px;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-list .dropdown-btn:hover {
    background-color: #333333;
}

.feature-list .dropdown-content {
    display: none;
    padding: 10px;
    background-color: #333333;
    border-radius: 5px;
}

.feature-list .dropdown-content p {
    margin: 0;
}

.feature-list .dropdown-content img {
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
}

#about img {
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
}

.video-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.get-started {
    text-align: center;
    margin: 40px 0;
}

.get-started .cta-button {
    font-size: 1.5em;
    padding: 20px 40px;
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.get-started .cta-button:hover {
    background-color: #e60000;
    transform: scale(1.05);
}

footer {
    background-color: #1f1f1f;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #ff0000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.arrow {
    font-size: 1.2em;
}

/* Gallery Section */
#gallery {
    text-align: center;
    margin: 40px 0;
}

#gallery img {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}