/* === Japandi Palette & Base Setup === */
:root {
    --alabaster-white: #F2F1EF;
    --forest-green: #223B2E;
    --forest-green-light: rgba(34, 59, 46, 0.75);
    --antique-gold: #B8860B;
    --antique-gold-hover: #c99a25;
    
    --font-serif-elegant: 'Playfair Display', serif;
    --font-sans-clean: 'Lato', sans-serif;

    --transition-calm: all 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--alabaster-white);
    font-family: var(--font-sans-clean);
    color: var(--forest-green-light);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === NOWE KOMPONENTY === */

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--antique-gold);
    width: 0%;
    z-index: 1001;
    transition: width 0.1s linear;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(242, 241, 239, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 1rem 0; 
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}
.sticky-header.is-visible {
    transform: translateY(0);
}
.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-header__logo {
    font-family: var(--font-sans-clean);
    font-weight: 400;
    color: var(--forest-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button--small {
    padding: 0.7rem 1.6rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* === STYLING LOGO === */
.hero__logo-img {
    max-width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border-radius: 4px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.footer__logo-img {
    display: block;
    margin: 0 auto 1.5rem auto;
    max-width: 180px;
    opacity: 0.8;
}


/* === Typographic Hierarchy === */
h1, h2, h3 {
    font-family: var(--font-serif-elegant);
    color: var(--forest-green);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    opacity: 0;
    filter: blur(12px);
    animation: softFocusIn 3s forwards 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

@keyframes softFocusIn {
    from { filter: blur(12px); opacity: 0; }
    to { filter: blur(0); opacity: 1; }
}

h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 2.5rem;
    position: relative; 
}

.content-section h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--antique-gold);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

h3 {
     font-size: 1.75rem;
     margin-bottom: 1rem;
}

p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    max-width: 70ch;
    margin-bottom: 1.5rem;
}

.centered-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.subtle-text {
    font-size: 0.9rem;
    color: rgba(34, 59, 46, 0.6);
    letter-spacing: 0.5px;
}

/* === Layout & Spacing Philosophy === */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.section-tinted {
    background-color: rgba(230, 229, 227, 0.5);
}

/* === Components with Soul === */
.cta-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(145deg, #FFD700, #FFA500);
    color: #000000;
    font-family: var(--font-sans-clean);
    font-weight: bold;
    font-size: 1.15rem;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.cta-button em { 
    font-style: normal;
    font-weight: 600;
}

.cta-button:hover, .cta-button:focus {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, #ffde2e, #ffb01a);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-45deg);
    transition: var(--transition-calm);
    z-index: 0;
}

.cta-button:hover::before {
    animation: pulse-shine 1.5s infinite;
}

#hero-cta {
    animation: pulse-shadow 3s infinite ease-in-out;
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.05);
    }
    50% {
        box-shadow: 0 6px 12px rgba(184, 134, 11, 0.2), 0 12px 25px rgba(184, 134, 11, 0.15);
    }
}

@keyframes pulse-shine {
    0% { left: -75%; }
    50% { left: 125%; }
    100% { left: -75%; }
}

.cta-microcopy {
    font-size: 0.85rem;
    color: var(--forest-green-light);
    margin: 1rem auto 0 auto; 
    padding: 0;
    text-align: center; 
    display: block; 
}

.gold-divider {
    height: 1px;
    width: 80px;
    background-color: var(--antique-gold);
    border: none;
    margin: 2rem 0;
}

.section-divider {
    height: 1px;
    background-color: var(--antique-gold);
    border: none;
    margin: 0;
    width: 100%;
    opacity: 0.7;
}

.centered-divider {
    margin-left: auto;
    margin-right: auto;
}

/* === Section Specific Styling === */

.hero {
    position: relative; 
    overflow: hidden; 
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse 80% 50% at 50% 40%, rgba(255, 255, 255, 0.4) 0%, rgba(242, 241, 239, 0) 70%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1; 
}

.hero__content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero__description {
    margin-top: 1.8rem;
    margin-bottom: 2.5rem;
}

/* Opóźnione Animacje na Scrollu */
.animated-parent.is-visible {
    opacity: 1;
}
.animated-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
.is-visible .animated-child {
    opacity: 1;
    transform: translateY(0);
}
.is-visible .animated-child:nth-child(1) { transition-delay: 0.1s; }
.is-visible .animated-child:nth-child(2) { transition-delay: 0.2s; }
.is-visible .animated-child:nth-child(3) { transition-delay: 0.3s; }
.is-visible .animated-child:nth-child(4) { transition-delay: 0.4s; }


.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quote-highlight {
    margin: 4rem auto;
    padding: 2rem;
    max-width: 700px;
    text-align: center;
    border-left: 4px solid var(--antique-gold);
    background-color: rgba(230, 229, 227, 0.3);
}

.quote-highlight p {
    font-family: var(--font-serif-elegant);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--forest-green);
    line-height: 1.4;
    margin: 0;
}

.quote-highlight em {
    font-style: italic;
    color: var(--antique-gold);
}

.solution-list {
    list-style: none;
    padding-left: 0;
    max-width: 65ch;
    text-align: left;
    margin-top: 3rem;
}
.solution-list li {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}
.solution-list li .icon {
    margin-right: 15px; 
    flex-shrink: 0; 
    width: 24px; 
    height: 24px;
    color: var(--antique-gold); 
    margin-top: 3px; 
}
.solution-list li div strong {
    display: block;
    margin-bottom: 0.25rem;
}

.process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.process__step {
    padding: 2rem;
    border: 2px solid transparent; 
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(34, 59, 46, 0.04), 0 4px 10px rgba(34, 59, 46, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process__step p {
    flex-grow: 1;
}

.process__step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--antique-gold);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.process__step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(184,134,11,0.2);
}

.process__step:hover::after {
    transform: translateX(0);
}

.process__step .icon {
    margin-bottom: 1.5rem;
    width: 40px;
    height: 40px;
    color: var(--antique-gold);
}

.process__step h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-mid-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.cta-mid-section h3 {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === TEAM SECTION - NEW DESIGN === */

.team-section {
    padding: 6rem 0;
    background-color: #faf9f7;
    position: relative;
    overflow: hidden;
}

.team-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-section__title {
    font-family: var(--font-serif-elegant);
    color: var(--forest-green);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.team-section__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--antique-gold);
}

.team-section__description {
    font-size: 1.1rem;
    color: var(--forest-green-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.team-members {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.team-members-row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(34, 59, 46, 0.04), 0 6px 15px rgba(34, 59, 46, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border: 1px solid rgba(184, 134, 11, 0.08);
    margin: 0 auto;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.15);
    border-color: rgba(184, 134, 11, 0.3);
}

.team-member--leader {
    max-width: 900px;
    padding: 3rem;
    background: linear-gradient(135deg, #fff 0%, #fcfbf9 100%);
    border: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-member--leader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--antique-gold), #d4af37);
    border-radius: 12px 12px 0 0;
}

.team-member__image-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    border: 3px solid #f0eee8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.team-member--leader .team-member__image-container {
    width: 220px;
    height: 220px;
    border: 4px solid var(--antique-gold);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.2);
}

.team-member__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-member:hover .team-member__image {
    transform: scale(1.05);
}

.team-member__name {
    font-family: var(--font-serif-elegant);
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.team-member--leader .team-member__name {
    font-size: 2.2rem;
}

.team-member__role {
    font-size: 1rem;
    color: var(--antique-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member--leader .team-member__role {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.team-member__bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--forest-green-light);
    max-width: 600px;
}

/* === Testimonials Section: New Card & Video Layout === */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(34, 59, 46, 0.04), 0 6px 15px rgba(34, 59, 46, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.15);
}

.testimonial-card__image-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--antique-gold);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.testimonial-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__content .star-rating {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-card__content .star-rating svg {
    width: 22px;
    height: 22px;
    color: var(--antique-gold);
    margin: 0 2px;
}

.testimonial-card__text {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-card__author {
    font-weight: bold;
    color: var(--forest-green);
    font-family: var(--font-serif-elegant);
    font-size: 1.2rem;
    line-height: 1.4;
}

.testimonial-card__author span {
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-sans-clean);
    font-weight: normal;
    font-style: normal;
    color: var(--forest-green-light);
    margin-top: 0.25rem;
}

/* Video Testimonials */
.video-testimonials {
    margin-top: 6rem;
}

.video-testimonials h3 {
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    margin-bottom: 3rem;
}

.video-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #e9e8e6;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--forest-green-light);
    border: 1px dashed var(--antique-gold);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.video-placeholder:hover {
    background-color: #e0deda;
    color: var(--forest-green);
}

.video-placeholder svg {
    color: var(--antique-gold);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.video-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.action__wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form__group {
    position: relative;
    margin-bottom: 2.5rem; 
}

.form__input, .form__textarea {
    width: 100%;
    padding: 1rem 0.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--forest-green-light);
    font-family: var(--font-sans-clean);
    font-size: 1rem;
    color: var(--forest-green);
    transition: border-color 0.3s;
}

.form__label {
    position: absolute;
    top: 1rem;
    left: 0.5rem;
    color: var(--forest-green-light);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
    top: -1rem;
    left: 0;
    font-size: 0.85rem;
    color: var(--antique-gold);
}

.form__textarea:focus + .form__label,
.form__textarea:not(:placeholder-shown) + .form__label {
    top: -1rem;
    left: 0;
    font-size: 0.85rem;
    color: var(--antique-gold);
}

.form__input:focus, .form__textarea:focus {
    outline: none;
    border-bottom-color: var(--antique-gold);
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
}

.footer {
    padding: 3rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer a {
    color: var(--forest-green-light);
    text-decoration: none;
    transition: color 0.3s ease; /* ZMIANA: Płynne przejście koloru */
}

.footer a:hover {
    color: var(--antique-gold);
    text-decoration: underline;
}

.footer__logo-img {
    display: block;
    margin: 0 auto 1.5rem auto;
    max-width: 180px;
    opacity: 0.8;
}

.footer p {
    text-align: center;
    margin: 0.5rem 0;
}

/* === Baner RODO === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(242, 241, 239, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner__content h3 {
    font-family: var(--font-serif-elegant);
    color: var(--forest-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cookie-banner__content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: none;
}

.cookie-options {
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    accent-color: var(--antique-gold);
}

.cookie-option label {
    font-size: 0.95rem;
    color: var(--forest-green-light);
}

.cookie-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.cookie-banner__buttons .cta-button {
    margin: 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.cta-button--secondary {
    background-color: transparent;
    color: #DAA520; /* Darker Gold for readability */
    border: 2px solid #DAA520;
    box-shadow: none;
}

.cta-button--secondary:hover {
    background-color: #DAA520;
    color: #000000;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner__link {
    color: var(--antique-gold);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: auto;
}

.cookie-banner__link:hover {
    text-decoration: underline;
}

/* === Responsive with Personality (Desktop) === */
@media (min-width: 768px) {
    .process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-members-row {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .team-members-row .team-member {
        flex: 1;
        max-width: 380px;
    }
    
    .action__wrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: 6rem;
        align-items: center;
    }
    .action__text { flex-basis: 45%; }
    .action__form { flex-basis: 55%; }

    .video-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .team__container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 4rem;
    }
    .team__profile--leader {
        flex: 1;
        max-width: none;
        margin: 0;
    }
    .team__profiles-wrapper {
        flex: 1;
        margin: 0;
        grid-template-columns: 1fr;
    }
    .action__wrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: 6rem;
        align-items: center;
    }
    .action__text { flex-basis: 45%; }
    .action__form { flex-basis: 55%; }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .process__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .video-testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Video Testimonial Captions --- */
.video-testimonial-item {
    text-align: center;
}

/* Wrapper for HORIZONTAL (16:9) videos */
.video-embed-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(34, 59, 46, 0.08);
    margin-bottom: 1.5rem;
}

.video-embed-wrapper .voomly-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Container for VERTICAL videos (no enforced aspect ratio) */
.video-testimonial-embed--vertical {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(34, 59, 46, 0.08);
    line-height: 0; /* Fix for potential extra space */
}

.video-testimonial-caption {
    padding: 0 1rem;
}

.video-testimonial-caption .star-rating {
    justify-content: center;
    margin-bottom: 1.25rem;
}

.video-testimonial-caption .star-rating svg {
    width: 20px;
    height: 20px;
    color: var(--antique-gold);
    margin: 0 2px;
}

.video-testimonial-author {
    font-family: var(--font-serif-elegant);
    font-size: 1.3rem;
    color: var(--forest-green);
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.video-testimonial-title {
    font-size: 0.95rem;
    color: var(--forest-green-light);
    line-height: 1.5;
    margin: 0;
}