/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 960px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Navbar */
.navbar {
    background: #373743;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
    display: block;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar ul li {
    margin-left: 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px; 
    border: 2px solid #dd7703; 
    border-radius: 5px; 
    display: inline-block; 
    box-sizing: border-box;
}

.navbar ul li a:hover {
    outline: 1px solid #dd7703;
}

/* Footer */
.footer {
    background: #373743;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.footer ul li {
    margin-left: 15px;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px; 
    border: 2px solid #dd7703; 
    border-radius: 5px; 
    display: inline-block; 
    box-sizing: border-box;
}

/* Page Content */
.content {
    padding: 20px;
    flex: 1;
    padding-bottom: 60px; 
}

.topSection {
    text-align: center;
}

.intro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
    margin: 40px auto;
    gap: 20px; 
    border:#dd7703;
    border-radius: 10px;
    padding: 0 5%;
}

.intro-text-section {
    flex: 1 1 45%;
    min-width: 300px;
    padding-right: 10px;
}

.intro-image-section {
    flex: 1 1 45%;
    min-width: 300px;
    display: flex;
    justify-content: center;
    padding-left: 10px;
}

.intro-image-section img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Image Carousel */
.carousel {
    position: relative;
    width: 750px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height: 400px;
}

.carousel-images img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-images img.active {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(123, 49, 3, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease-in-out;
}

.prev:hover, .next:hover {
    background: rgba(123, 49, 3, 0.8);
}

.prev { left: 10px; }
.next { right: 10px; }

/* Review Box Section */
.review-container {
    display: flex;
    gap: 20px;
    padding: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.review-box {
    background: #373743;
    flex: 1 1 45%;
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.review-box-title {
    width:99.5%;
    height: 75px;
    border: 1px solid #dd7703;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.review-box-title h1 {
    margin: 0;
    margin-left: 30px;
    font-size: 20px;
    text-align: left;
}

.review-box-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-box-img img {
    margin-top: 20px;
    width: 50%;
    display: block;
    border-radius: 3px;
    box-shadow: 0 40px 10px rgba(0, 0, 0, 0.1);
}

.review-box-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-box-text p {
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    max-width: 90%;
    margin: 20px auto 0 auto;
    white-space: normal;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .intro-container {
        flex-direction: column;
        text-align: center;
    }

    .intro-text-section, .intro-image-section {
        width: 100%;
        padding: 0;
    }

    .carousel {
        width: 90%;
        height: auto;
    }

    .review-box {
        flex: 1 1 100%;
    }

    .footer ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer ul li {
        margin: 10px 0;
    }
}

img {
    max-width: 100%;
    height: auto;
}