:root {
    --primary-red: #E63946;
    --dark-red: #C1121F;
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --white: #F8F9FA;
    --light-gray: #E8E8E8;
    --mid-gray: #6C757D;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Side Navigation */
.sidenav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: var(--charcoal);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    border-right: 2px solid var(--primary-red);
    transition: var(--transition);
}

.logo-container {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.nav-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.sidenav nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    background: rgba(230, 57, 70, 0.1);
    border-left-color: var(--primary-red);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1001;
    background: var(--primary-red);
    border: none;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--dark-red);
}

/* Main Content */
.main-content {
    margin-left: 280px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(230, 57, 70, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(230, 57, 70, 0.15) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
    animation: fadeIn 1.2s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.title-rise {
    display: block;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    animation: slideInLeft 0.8s ease-out 0.5s backwards;
}

.title-main {
    display: block;
    color: var(--white);
    animation: slideInRight 0.8s ease-out 0.7s backwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--light-gray);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.1s backwards;
}

/* Safari-specific button fix */
@supports (-webkit-appearance: none) and (stroke-color: transparent) {
    .btn {
        white-space: nowrap !important;
        flex-shrink: 0;
        width: max-content;
    }
    
    .calendar-info .btn {
        display: block;
        text-align: center;
        margin: 1rem auto 0;
    }
}

.btn {
    padding: 1.2rem 3rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;  /* prevents text wrapping */
    display: inline-block; /* helps Safari */
    min-width: fit-content; /* prevents squishing */
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-red));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.section-title.centered {
    text-align: center;
}

.title-accent {
    display: block;
    color: var(--primary-red);
    font-size: 0.4em;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

/* About Section Carousel */
.about-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.about-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: rgba(0, 0, 0, 0.5);
}

/* Carousel Controls */
.about-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 57, 70, 0.8);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.about-image:hover .about-carousel-btn {
    opacity: 1;
}

.about-carousel-btn:hover {
    background: var(--dark-red);
    transform: translateY(-50%) scale(1.1);
}

.about-carousel-btn.prev {
    left: 10px;
}

.about-carousel-btn.next {
    right: 10px;
}

/* Carousel Dots */
.about-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .about-carousel-dots {
    opacity: 1;
}

.about-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.about-carousel-dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

.about-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Ensure accent box stays on top for border effect */
.accent-box {
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInUp 0.8s ease-out;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    font-weight: 300;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid var(--primary-red);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(230, 57, 70, 0.2);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-gray);
}

.about-image {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('tablecard_back.png') center/cover no-repeat;
    border: 3px solid var(--primary-red);
}

.accent-box {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--white);
    top: 20px;
    right: 20px;
    z-index: -1;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--black);
}

/* Nested service lists - align to the right */
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    flex-wrap: wrap;  /* Allow wrapping on mobile */
}

.service-list li > ul {
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    color: var(--mid-gray);
    font-style: italic;
    text-align: right;  /* Align text to the right */
    margin-left: auto;  /* Push to the right side */
}

.service-list li > ul li {
    border: none;
    padding: 0;
    margin: 0;
}

.service-list li > ul li:before {
    content: "• ";
    color: var(--primary-red);
    margin-right: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--charcoal);
    border: 2px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3);
}

.card-header {
    background: var(--primary-red);
    padding: 2rem;
    text-align: center;
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--white);
}

.card-content {
    padding: 3rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.service-list li:hover {
    padding-left: 10px;
    color: var(--primary-red);
}

.bullet {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.tier {
    margin-bottom: 2rem;
}

.tier h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-red);
}

/* Nested service lists - align details to the right */
.service-list > li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-list > li > ul {
    margin: 0;
    padding: 0 0 0 1rem;
    list-style: none;
    text-align: right;
    font-size: 0.85rem;
    color: var(--mid-gray);
    font-style: italic;
    max-width: 45%;
    border-left: 2px solid rgba(230, 57, 70, 0.3);
}

.service-list > li > ul li {
    padding: 0.2rem 0;
    border: none;
}

.service-list > li > ul li:hover {
    padding-left: 0;
}

/* Mobile: Stack nested lists below */
@media (max-width: 768px) {
    .service-list > li {
        flex-direction: column;
    }
    
    .service-list > li > ul {
        max-width: 100%;
        margin-top: 0.5rem;
        text-align: left;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: var(--transition-slow);
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-content {
    background: var(--charcoal);
    padding: 4rem;
    border-left: 4px solid var(--primary-red);
    position: relative;
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--primary-red);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 2rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 2px solid rgba(230, 57, 70, 0.3);
    padding-top: 1.5rem;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.3rem;
}

.author-title {
    color: var(--mid-gray);
    font-size: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--dark-red);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary-red);
    transform: scale(1.3);
}

/* Calendar Section */
.calendar-section {
    padding: 8rem 0;
    background: var(--black);
}

.calendar-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.calendar-info {
    background: var(--charcoal);
    padding: 3rem;
    border-left: 4px solid var(--primary-red);
}

/* Fix for tablets and smaller laptops */
@media (max-width: 1200px) {
    .calendar-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calendar-info {
        text-align: center;
    }
}

/* Mobile specific fix */
@media (max-width: 768px) {
    .calendar-container {
        grid-template-columns: 1fr;
    }
    
    .calendar-embed iframe {
        height: 400px;
    }
}

/*safari/calender button*/
.calendar-info .btn {
    margin-top: 1rem;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    display: inline-block;
}

/* Mobile button fix */
@media (max-width: 768px) {
    .calendar-info {
        padding: 2rem;
    }
    
    .calendar-info .btn {
        width: 100%;
        text-align: center;
    }
}

.calendar-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.calendar-embed {
    background: var(--charcoal);
    padding: 1rem;
    border: 2px solid var(--primary-red);
}

.calendar-embed iframe {
    width: 100%;
    height: 600px;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--charcoal);
    border-left: 3px solid var(--primary-red);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(230, 57, 70, 0.1);
    transform: translateX(5px);
}

.info-item svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p,
.info-item a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-red);
}

.qr-section {
    background: var(--charcoal);
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--primary-red);
}

.qr-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qr-code {
    background: var(--white);
    padding: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.qr-note {
    font-size: 0.9rem;
    color: var(--mid-gray);
}

/* Contact Form */
.contact-form {
    background: var(--charcoal);
    padding: 3rem;
    border: 2px solid var(--primary-red);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--black);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--black);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: var(--charcoal);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--primary-red);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-red);
    font-style: italic;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-social .social-links {
    border: none;
    padding: 0;
    justify-content: flex-start;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--mid-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidenav {
        transform: translateX(-100%);
    }
    
    .sidenav.active {
        transform: translateX(0);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .calendar-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .about-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}