@import url(“/css/style.css”);
.home-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inner-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main Content Section */
.text-section {
    flex: 2;
    padding-right: 20px;
}
.title1, .title2, .title3{
    font-size: 78px;
}
.title2{
    color: var(--second-color);
}
.title3{
    color: var(--third-color);
}

.page-title{
    text-align: left;
    margin-bottom: 10px;
}

.page-subtitle{
    color: var(--second-color);
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.image-section {
    flex: 3;
    text-align: right;
}
.image-section img {
    max-width: 100%;
    height: auto;
}

/* Testimonial Section */
.testimonials-section {
    width: 100%; /* Set the width to 80% of the screen */
    margin: 0 auto;
}

.testimonials-section h1 {
    margin-top: 50px;
    text-align: center;
}

.testimonial-subtitle {
    color: var(--second-color);
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.testimonials-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.testimonial {
    width: calc(33.33% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
    text-align: center;
}

.review {
    font-size: 48px;
    font-weight: 600;
    text-align: left;
    color: var(--second-color);
    position: relative;
}

.testimonial-quote {
    font-size: 72px;
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
}

.testimonial-quote:first-child {
    left: 0;
}

.testimonial-quote:last-child {
    padding-left: 15px;
}

.customer {
    margin-top: 10px;
    text-align: left;
}

.customer-name {
    font-size: 20px;
    color: var(--accent-color);
}

.customer-position {
    font-size: 14px;
    color: var(--second-color);
}