/* General Styles */
body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
    letter-spacing: 0.5px;
    padding-left: 20px; /* Add some space on the left */
    padding-right: 20px; /* Add some space on the right */
}

header {
    text-align: center;
    background: #333;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

header p {
    font-size: 1.2rem;
    margin: 10px 0 0;
}

/* Navigation */
nav {
    position: absolute;
    top: 10px;
    left: 10px;
}

.nav-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
}

.nav-button:hover {
    background-color: #575757;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    left: 10px;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1;
}

.nav-dropdown a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-weight: 500;
}

.nav-dropdown a:hover {
    background-color: #575757;
}

/* Review Section */
.review {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    padding-left: 20px; 
    padding-right: 20px; 
}

.review:hover {
    transform: scale(1.02);
}

.review img {
    width: 600px;
    height: 500px;
    object-fit: cover;
}

.review-content {
    flex: 1;
    padding: 10px;
}

.review-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.review-description {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* Footer */
footer {
    text-align: center;
    background: #333;
    color: #fff;
    padding: 10px 0;
    margin-top: 20px;
}

/* Newsletter Section */
.newsletter {
    text-align: center;
    background: #333;
    color: white;
    padding: 20px;
}

.newsletter input {
    padding: 10px;
    font-size: 1rem;
    width: 60%;
    font-weight: 400;
}

.newsletter button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: white;
    color: #333;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

/* Ensure responsiveness for smaller screens */
@media (max-width: 768px) {
    body {
        padding-left: 10px; 
        padding-right: 10px;
    }

    .carousel {
        max-width: 100%;
        height: 400px;
    }

    .review img {
        width: 100%;
        height: auto;
    }
}