/* General styles */
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
}
.reviews-page main * {
    color: #f61414; 
    font-size: 1.2em; 
}


.reviews-page {
    background-image: url("background.png"); /* Replace with your image URL or path */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background-color: #f4f4f4;
    padding: 1rem 0;
    text-align: center;
}
.logo {
    width: 100px; /* Adjust the width to your desired size */
    height: auto; /* Maintain the aspect ratio */
}


.header-container {
    width: 90%;
    margin: 0 auto;
}

.logo {
    width: 50px;
    display: inline-block;
    vertical-align: middle;
}

nav {
    display: inline-block;
    vertical-align: middle;
}
nav {
    display: inline-block;
}

nav a {
    display: inline-block;
    background-color: #4CAF50; /* Green background color */
    color: white; /* White text color */
    text-align: center;
    padding: 8px 16px; /* Adjust the padding for the desired size */
    text-decoration: none; /* Remove underline */
    border-radius: 4px; /* Rounded corners */
    margin-right: 10px; /* Add space between buttons */
    transition: background-color 0.3s; /* Smooth background-color change */
}

nav a:hover {
    background-color: #45a049; /* Darker green background color on hover */
}


/* Main content */
main {
    width: 90%;
    margin: 2rem auto;
}

.introduction,
.video-section,
.newsletter {
    text-align: center;
    margin-bottom: 2rem;
}
.reviews-page h2 {
    font-size: 2.5em; /* Adjust the size as desired */
}


/* Review cards */
.review-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.review-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.review-card p {
    margin-bottom: 10px;
}
/* Newsletter */
form {
    display: inline-block;
}

input[type="email"] {
    padding: 0.5rem;
    font-size: 1rem;
    margin-right: 0.5rem;
}

button[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

/* Responsive styles */
@media screen and (max-width: 400px) {
    h1 {
        font-size: 1.5rem;
    }

    .logo {
        width: 30px;
    }

    nav a {
        margin: 0 0.5rem;
    }

    input[type="email"] {
        font-size: 0.8rem;
        margin-right: 0.3rem;
    }

    button[type="submit"] {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}
