/* Reset default margin and padding for all elements */
body, h1, h2, h3, h4, h5, h6, p, ul, li, form, label, button, input, textarea {
    margin: 0;
    padding: 0;
}

/* Set box-sizing to border-box for all elements */
* {
    box-sizing: border-box;
}

/* Base styling */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f2f4f7;
    margin: 0;
}

/* Header styling */
header {
    position: fixed;
    background-color: #ff6a00;
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}



    
        body {
            padding-top: 60px;
        }
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        .content-section {
            padding: 20px;
        }

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffdd99;
}

/* Main content area */
main {
    padding: 40px 20px;
}

/* Hero section styling */
.hero {
    background: linear-gradient(135deg, #ff9900, #ff6a00);
    color: #fff;
    padding: 50px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Reviews section styling */
.reviews {
    margin-top: 40px;
}

.reviews h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.review-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.review-content {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
}

.see-more {
    display: inline-block;
    font-size: 18px;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.see-more:hover {
    color: #0056b3;
}

/* Add Review section styling */
.add-review {
    margin-top: 40px;
}

.add-review h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.add-review form {
    display: flex;
    flex-direction: column;
}

.add-review label {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.add-review input,
.add-review textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    transition: border 0.3s ease;
}

.add-review input:focus,
.add-review textarea:focus {
    border-color: #007bff;
}

.add-review textarea {
    resize: vertical;
    min-height: 100px;
}

.add-review button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-review button:hover {
    background-color: #0056b3;
}

/* Footer styling */
footer {
    background-color: #ff6a00;
    color: #fff;
    padding: 15px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

/* Select elements styling */
select {
    appearance: none;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
    transition: border-color 0.3s;
}

select:focus {
    border-color: #007bff;
}

button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}
