/* Welcome Banner Section */
.welcome-banner {
    background: #fbb511;
    color: #000000;
    text-align: center;
    padding: 40px 0;
}

.welcome-title {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.welcome-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

/* Features Highlight Section */
.features-highlight {
    background: white;
    padding: 80px 0;
}

.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 0;
}

.feature-highlight-item {
    text-align: left;
    padding: 0 24px;
}

.feature-highlight-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-highlight-title img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-highlight-description {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    line-height: 1.3;
}

.feature-highlight-subdesc {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    margin-top: 8px;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.testimonial-card {
    background: #F8F8F8;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #fbb511;
    margin-bottom: 4px;
}

.testimonial-position {
    font-size: 14px;
    color: #666666;
}
