﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding: 0 15px;
}

    .testimonial-text::before {
        content: '"';
        font-size: 60px;
        font-family: Georgia, serif;
        color: #e9ecef;
        position: absolute;
        left: -20px;
        top: -20px;
        z-index: 0;
        opacity: 0.5;
    }

.testimonial-author {
    font-weight: 600;
    color: #495057;
    text-align: right;
}

.testimonial-location {
    display: inline-block;
    color: #6c757d;
}

.video-testimonial {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-responsive {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

    .video-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 10px 10px 0 0;
    }

.video-caption {
    background-color: #fff;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

.page-header {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
    margin-bottom: 40px;
    text-align: center;
}

.highlight {
    color: #007bff;
}
