h2 {
    margin-bottom: 3em;
}

header {
    height: 400px !important;
}

.header-desc {
    width: 60%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.8;
    color: #333;
}

.small {
    position: absolute;
    right: 20px;
    top: 20px;
}

.small img {
    width: 100px;
    height: 80px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.small img:hover,
.large img:hover {
    cursor: pointer;
}

.img-bg-l1 img {
    width: 60vw;
    height: auto;
    flex-direction: column-reverse;
    text-align: center;
    margin: 0 auto;
}

.img-bg-l2 img {
    width: 40vw;
    height: auto;
    flex-direction: column-reverse;
    text-align: center;
    margin: 0 auto;
}


.large {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    z-index: 10000;
    height: 120vh;
    width: 100vw;
    background-color: rgba(100, 100, 100, 0.562);
}

.img-bg-l1 {
    height: auto;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 8vh;
    left: 20vw;
}

.img-bg-l2 {
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 3vh;
    left: 30vw;
}

.hidden {
    display: none;
    transition: 0.5s;
}

.showing {
    display: block;
    transition: 0.5s;
}

#divisions {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* Make the container a positioned element */
}

#phare-shop {
    background-color: #fdf8e2;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid #e7d4a6;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.phare-info h2 {
    color: #444;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.phare-info p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.phare-link {
    background-color: #44c767;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.phare-link:hover {
    background-color: #3ab05d;
}

#phare-shop h2>a {
    text-decoration: none;
    color: black;
}

#phare-shop h2>a:hover {
    color: rgb(14, 160, 14);
    transition: 0.2s;
}


/* User Reviews Section */
#reviews {
    padding: 40px 20px;
    background-color: #e7f7e6;
    text-align: center;
}

.review-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.review {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.review p {
    margin: 0;
    font-style: italic;
    color: #555;
}

.review p:last-child {
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

/* Table section */

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

thead {
    background-color: #34495e;
    color: white;
}

thead th {
    padding: 10px;
    text-align: left;
}

tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

tbody td {
    padding: 10px;
    vertical-align: top;
}

ul {
    margin: 0;
    padding-left: 20px;
}

tfoot {
    text-align: right;
    font-style: italic;
}

tfoot .signature {
    text-align: center;
    padding-top: 10px;
    font-size: 12px;
    color: #555;
}

@media screen and (min-width: 851px) {}

/* Responsive Design */
@media screen and (max-width: 850px) {
    .review {
        width: 80%;
        /* Make reviews take up more space on medium screens */
    }
}

@media screen and (max-width: 480px) {
    .review {
        width: 100%;
        /* Full width for reviews on small screens */
    }
}

@media screen and (max-width: 768px) {
    .header-desc {
        width: 90%;
        font-size: 1em;
    }
}