/* Global Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Section */
.header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
}

/* Main Banner Section */
.main-banner {
    background-color: #34495e;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.main-banner img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.main-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.main-banner p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #1abc9c;
    color: white;
    padding: 15px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #16a085;
}

/* Review Section */
.reviews {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.review {
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-style: italic;
}

.review-rating {
    font-size: 1.5rem;
    color: #f39c12;
}

/* Footer Section */
.footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    font-size: 1rem;
}
