body {
    font-family: "Raleway", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.8;
}
.main-container {
    width: 80%;
    margin: 50px auto;
    background: white;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-top: 5px solid red;
}
.page-header {
    text-align: center;
}
.page-header h1 {
    color: red;
    font-size: 30px;
    font-weight: bold;
}
.testimonial {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    margin: 30px 0;
    border-left: 6px solid red;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}
.testimonial-content {
    flex: 1;
}
.testimonial p {
    font-size: 18px;
    text-align: justify;
}
.testimonial strong {
    font-size: 20px;
    display: block;
    margin-top: 10px;
    color: black;
}
.quote {
    font-style: italic;
    font-size: 22px;
    text-align: center;
    margin-top: 40px;
    color: #555;
    font-weight: bold;
}
.back-button {
    display: block;
    width: fit-content;
    margin: 30px auto;
    padding: 12px 20px;
    background-color: red;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}
.back-button:hover {
    background-color: darkred;
    transform: scale(1.05);
}




