/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
}

.header {
    text-align: center;
    margin-bottom: 50px;
    margin-top:10px;
}

.hero {
    position: relative;
}

    .hero img {
        width: 100%;
        height: auto;
    }

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}
    .hero-text h1 {
        font-size: 40px;
    }

.main-content {
    display: flex;
    justify-content: center;
}

.product {
    display: flex;
    width: 80%;
}

.product-image {
    flex: 1;
    margin-right: 20px;
}

    .product-image img {
        width: 100%;
        height: auto;
    }

.product-description {
    flex: 1;
    margin-left: 90px;
}

h2 {
    text-align: center;
    padding-bottom: 40px;
}

.price {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

button {
    text-align: center;
    margin-top: 20px;
    margin-left: 150px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

    button:hover {
        background-color: #45a049;
    }

.reviews {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.review {
    flex-basis: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

    .review:nth-child(odd) {
        margin-right: 20px;
    }

.customer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.customer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    text-align: center;
}

.customer-name {
    font-weight: bold;
    text-align: center;
}

.review-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
