/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

/* Header with Video Background */
.main-header {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

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

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #ff6600;
    padding: 15px 30px;
    font-size: 1.2em;
    text-transform: uppercase;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e55b00;
}


/* Product Showcase Section */
#product-showcase {
    padding: 50px 0;
    text-align: center;
}

.tiles-showcase-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tile-item {
    flex-basis: 30%;
    text-align: center;
}

.tile-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.tile-item h3 {
    font-size: 1.5em;
    margin-top: 10px;
}

/* How It Works Section */
#how-it-works {
    padding: 50px 0;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step-item {
    flex-basis: 30%;
}

.step-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.step-item h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

/* Reviews Section */
#reviews {
    padding: 50px 0;
    text-align: center;
}

.reviews-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.review-item {
    flex-basis: 30%;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-item blockquote {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
}

.review-item p {
    font-weight: bold;
    color: #ff6600;
}

/* Pricing Section */
#pricing {
    padding: 50px 0;
    text-align: center;
}

#pricing h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

#pricing p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #ff6600;
    padding: 15px 30px;
    font-size: 1.2em;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Footer */
footer {
    padding: 20px 0;
    background-color: #282828;
    color: white;
    text-align: center;
}