body{
    margin: 0;
    width: 100%;
    height: 100vh;
}

/* Product Section */
.product-section{
    background-color: #f9f9f9;
    padding: 60px 0px;
    width: 100%;
    height: auto;
}

.product-wrapper {
    height: 100%;
    padding: 40px 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.product-image-container {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 450px;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-description-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 15px 5px;
}

.product-description-heading{
    margin-bottom: 10px;
}

.product-title {
    font-size: 2em;
    font-weight: 600;
    color: rgb(0, 95, 133);
    margin: 0px 0px 5px 0px;
    text-decoration: none;
    cursor: pointer;
}

.product-description {
    font-size: 1.2em;
    color: #333;
    margin: 0px 0px 10px 0px;
}

.product-description-content{
    margin-bottom: 10px;
}

.product-process{
    margin: 2px;
}

.book-button {
    width: 200px;
    text-align: center;
    text-decoration: none;
    color: white;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
    background-color: rgb(0, 95, 133);
}

.book-button:hover {
    background-color: #a4bdd6;
}