body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: black;
    margin: 0;
    padding: 20px;
}

.header {
    background-image: url('tralalelo.png'); /* Adjust path as necessary */
    background-size: cover; /* Cover the entire header */
    background-position: center; /* Center the image */
    padding: 60px 20px; /* Increase vertical padding for more space */
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
    height: 300px; /* Set a fixed height for the header */
    overflow: hidden; /* Prevent overflow if necessary */
}

.header h1 {
    margin: 0;
    color: #1d3557;
    font-size: 2.5em; /* Increase font size for the header */
}

.header p {
    color: #457b9d;
    font-size: 1.2em; /* Increase font size for the paragraph */
}

.star-rating {
    color: #ffc107; /* Gold color for stars */
    font-size: 1.5em;
}

.review-form-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group select,
.form-group textarea {
    width: calc(100% - 22px); /* Adjust for padding and border */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

button {
    background-color: #457b9d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #1d3557;
}

.comments-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.comment-text {
    font-size: 1em;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .header {
        padding: 20px;
    }

    .review-form-section,
    .comments-section {
        padding: 15px;
    }
}