/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

h1, h2 {
    text-align: center;
}

p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

section {
    padding: 60px 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.btn:hover {
    background-color: #004999;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    color: #fff;
    overflow: hidden;
}

#hero .hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

#hero h1 {
    font-size: 48px;
}

#hero p {
    font-size: 24px;
}

#background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    max-width: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Features List */
#features ul {
    list-style: none;
    padding: 0;
}

#features li {
    margin: 10px 0;
    font-size: 18px;
}

/* Buy Now Section */
#buy {
    background-color: #f9f9f9;
}

#buy .btn {
    margin-top: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #eee;
}

footer a {
    color: #0066cc;
    text-decoration: none;
}

.note {
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-top: 20px;
}
