
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
    padding: 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 40px 20px;
    text-align: center;
}
header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}
nav a:hover {
    border-bottom: 2px solid white;
}

/* Sections */
section {
    margin: 40px 0;
    padding: 20px;
    text-align: center;
}
section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Review Cards */
.review-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 30%;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);
}
.card h3 {
    text-align: center;
    margin-bottom: 10px;
}
.card p {
    margin-bottom: 8px;
}

/* Contact Section */
#contact a {
    color: #2575fc;
    text-decoration: none;
}
#contact a:hover {
    text-decoration: underline;
}

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

/* Responsive */
@media(max-width: 900px){
    .review-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 80%;
    }
}