body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background: #0db72f;
    color: white;
    padding: 2rem;
    width: 100%;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.video-title {
    text-align: center; /* Centers the text above the video */
    color: #2c3e50;    /* Dark blue color to match the header */
    margin-bottom: 15px; /* Adds a little gap between the title and the video */
    font-size: 1.5rem;   /* Makes the size slightly smaller than the main header */
}
.video-section {
    max-width: 500px; /* Adjust this number (e.g., 400px or 600px) to change the size */
    margin: 0 auto 2rem auto; /* The "auto" on the left and right centers the video */
    display: block;
}
.product-features {
    text-align: left;       /* Keeps the text aligned left within the list */
    display: inline-block; /* Helps keep the list centered as a block */
    margin: 1rem 0;        /* Adds space above and below the list */
    padding-left: 20px;    /* Gives room for the actual bullet dots */
}

.product-features li {
    margin-bottom: 10px;   /* Adds a little gap between each bullet point */
    font-size: 1.1rem;     /* Matches your paragraph text size */
}
.description {
    text-align: center;
}




.buy-button:hover {
    background-color: #219150;
}