:root {
    --primary-color: #00afec;
    --dark-bg: #ffffff;
    --darker-bg: #f8f9fa;
}

body {
    background-color: var(--dark-bg);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    background-attachment: fixed;
    color: #aaaaaa;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.navbar {
    background-color: var(--darker-bg);
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.navbar-brand {
    font-weight: 600;
    color: var(--primary-color);
}

.check-icon {
    color: var(--primary-color);
}

.custom-icon {
    width: 96px;
    height: 96px;
    display: block;
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #000000;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    display: block;
}

.desktop-title {
    display: block;
}

.mobile-title {
    display: none;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #000000;
}

.lead {
    color: #aaaaaa;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
}

.logo-comparison-container {
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 864px;  /* Increased from 720px by 20% (720 * 1.2) */
    margin: auto;
    overflow: hidden;
}

.thumbnail-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px auto 10px;
    max-width: 800px;
    padding: 0 20px;
}

.thumbnail {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

@media (max-width: 768px) {
    .thumbnail-gallery {
        max-width: 340px;
        gap: 15px;
        justify-content: space-between;
    }
    
    .thumbnail {
        width: calc(33.33% - 10px);
        height: auto;
        aspect-ratio: 1/1;
    }
    
    .thumbnail:nth-child(4),
    .thumbnail:nth-child(5),
    .thumbnail:nth-child(6) {
        margin-top: 15px;
        width: calc(33.33% - 10px);
    }
}

.thumbnail:hover {
    transform: translateY(-2px);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
}

.logo-comparison-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image comparison slider styles */
.image-compare {
    position: relative;
    width: 100%;
    max-width: 100%; /* Removed max-width restriction */
    margin: 0; /*Removed margins*/
    padding: 0; /*Removed padding*/
    overflow: hidden;
    user-select: none;
}

.image-label {
    position: absolute;
    top: 25px;
    padding: 4px 8px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 14px;
    z-index: 10;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
}

.before-label {
    left: 15px;
}

.after-label {
    right: 15px;
    background-color: #00afec;
}

.image-before {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.image-after-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid var(--primary-color);
}

.image-after {
    display: block;
    width: 200%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.slider-line {
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.slider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #fff;
}

.slider-icon i {
    font-size: 12px;
}

.action-button {
    background-color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: transform 0.2s ease;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
}

.action-button:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Pricing Card Styles */
.pricing-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    max-width: 580px;
    margin: 1rem auto 0.25rem auto;
    box-shadow: 0 0 66px 31px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    margin-bottom: 2rem;
}

.service-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.delivery-tag {
    background-color: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
    font-family: 'Roboto', sans-serif;
}

.service-subtitle {
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
}

.service-description {
    color: #aaaaaa;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif;
}

.pricing-section {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.delivery-time-label {
    font-size: 0.875rem;
    color: #aaaaaa;
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
}

.upgrade-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
}

.upgrade-toggle .toggle-switch input:not(:checked) + .toggle-slider {
    background-color: #e9ecef;
    opacity: 0.6;
}

.upgrade-toggle .toggle-switch input:not(:checked) + .toggle-slider:before {
    background-color: #dee2e6;
}

.delivery-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-label {
    font-size: 0.875rem;
    color: #aaaaaa;
    font-family: 'Open Sans', sans-serif;
}

.pricing-button {
    width: 100%;
    margin-bottom: 2rem;
}

.scroll-button {
    background-color: #000000;
    border: 2px solid #000000;
    color: #ffffff;
    transition: all 0.2s ease;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
}

.scroll-button:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
}

.arrow-button {
    background-color: transparent;
    border: 2px solid #cccccc;
    color: #cccccc;
    transition: all 0.2s ease;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
}

.arrow-button:hover {
    background-color: #cccccc;
    color: #ffffff;
    border-color: #cccccc;
    transform: translateY(-2px);
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}



.details-column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
}

.details-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-column li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
    color: #aaaaaa;
    font-size: 0.875rem;
    font-family: 'Open Sans', sans-serif;
}

.radio-circle {
    width: 16px;
    height: 16px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    flex-shrink: 0;
}

.checkmark {
    color: #28a745;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}



.how-we-work-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000000;
    text-align: left;
}

.work-process-list {
    list-style: none;
    color: #999999;
    padding: 0;
    margin: 0;
}

.work-process-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #000000;
}

.work-process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 50%;
}

.work-process-list li:last-child {
    margin-bottom: 0;
}

.hero-section {
    background-color: transparent;
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
}

.how-we-work-section {
    background-color: transparent;
    max-width: 600px;
    margin: 0.5rem auto 1.5rem auto;
    padding: 2rem;
}

.revamp-section,
.affordable-section {
    background-color: transparent;
    max-width: 600px;
    margin: 1rem auto;
    padding: 2rem;
}

.hero-section {
    text-align: left;
}

.hero-section .check-icon {
    text-align: left;
    margin-bottom: 2rem;
}

.hero-section .availability-status {
    text-align: left;
    margin-bottom: 1rem;
}

.hero-section h1 {
font-size: 3rem;
}

.revamp-section h2,
.affordable-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000000;
    text-align: left;
}

h1 em, h2 em, h3 em {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
}

.service-subtitle {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
}

.revamp-content p,
.affordable-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #000000;
}

.revamp-content p:last-child,
.affordable-content p:last-child {
    margin-bottom: 0;
}

.revamp-content strong,
.affordable-content strong {
    font-weight: 700;
    color: #000000;
}

.affordable-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.affordable-content a:hover {
    text-decoration: underline;
}

.accordion-item {
    background-color: rgba(0, 0, 0, 0.03);
    border: none !important;
    outline: none !important;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

.accordion-item *:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.accordion-item *:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.accordion-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: transparent !important;
    color: #000000;
    font-weight: 500;
    padding: 1.25rem;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.5);
    margin-left: 1rem;
    transition: transform 0.2s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 0, 0, 0.05) !important;
    color: var(--primary-color);
    border: none !important;
    box-shadow: none !important;
}

.accordion-body {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    padding: 1.25rem;
    font-size: 0.95rem;
}

.accordion-button:hover {
    color: rgba(0, 0, 0, 0.8);
}

.accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

.accordion-collapse {
    transition: all 0.2s ease-out;
}

footer {
    color: #6c757d; /* Changed footer text color */
}

.portfolio-link:hover {
    text-decoration: underline !important;
}

.portfolio-link {
    color: #6c757d !important;
}

.ebaq-logo-container {
    background-color: transparent;
    margin-top: 2rem;
    width: 100vw;
    position: relative;
}

.ebaq-logo {
    height: auto;
    width: auto;
    opacity: 0.33;
}

.availability-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e7e00;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00a300;
    display: inline-block;
    animation: pulse-flat 2s ease-in-out infinite;
}

@keyframes pulse-flat {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 163, 0, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(0, 163, 0, 0);
    }
}

.status-text {
    color: #137413;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        display: block !important;
    }
    
    .logo-comparison-container {
        margin: 0 1rem;
    }
    
    .action-button {
        width: 100%;
        max-width: 300px;
    }
    
    .desktop-title {
        display: none;
    }
    
    .mobile-title {
        display: block;
    }
}

/* Horizontal Before/After Slider */
.horizontal-slider-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.horizontal-slider {
    position: relative;
    width: 100%;
    height: 510px;
    background-color: transparent;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media (min-width: 1200px) {
    .horizontal-slider {
        height: 472px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .horizontal-slider {
        height: 434px;
    }
}

@media (max-width: 767px) {
    .horizontal-slider {
        height: 380px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        display: block !important;
    }
}

.horizontal-slider:active {
    cursor: grabbing;
}

.before-lane,
.after-lane {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 100px;
}

.before-lane {
    clip-path: inset(0 50% 0 0);
}

.after-lane {
    clip-path: inset(0 0 0 50%);
}

.scrolling-images {
    position: absolute;
    top: 294px;
    left: 30px;
    height: 446px;
    white-space: nowrap; 
    transform: translateY(-50%);
    min-height: 446px;
    max-height: 446px;
    will-change: transform;
}

@media (min-width: 1200px) {
    .scrolling-images {
        height: 408px;
        left: 25px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .scrolling-images {
        height: 370px;
        left: 20px;
    }
}

@media (max-width: 767px) {
    .scrolling-images {
        height: 344px;
        left: 15px;
    }
}

/* Animation is now handled by JavaScript for seamless looping */

/* Animation handled by JavaScript */

/* Animation handled by JavaScript for seamless looping */

.logo-image {
    display: inline-block;
    width: 510px;
    height: 357px;
    margin-right: 30px;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 66px 31px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    object-position: center;
    vertical-align: top;
    background: white;
    padding: 2px 5px;
    box-sizing: border-box;
    position: relative;
    min-height: 357px;
    min-width: 510px;
    max-height: 357px;
    max-width: 510px;
    flex-shrink: 0;
    aspect-ratio: 510/357;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Desktop: 5 images visible */
@media (min-width: 1200px) {
    .logo-image {
        width: 446px;
        height: 319px;
        margin-right: 25px;
        padding: 2px 5px;
        min-height: 319px;
        min-width: 446px;
        max-height: 319px;
        max-width: 446px;
        flex-shrink: 0;
        aspect-ratio: 446/319;
        box-shadow: 0 0 66px 31px rgba(0, 0, 0, 0.1);
    }
}

/* Tablet horizontal: 5 images visible */
@media (min-width: 768px) and (max-width: 1199px) {
    .logo-image {
        width: 383px;
        height: 281px;
        margin-right: 20px;
        padding: 2px 5px;
        min-height: 281px;
        min-width: 383px;
        max-height: 281px;
        max-width: 383px;
        flex-shrink: 0;
        aspect-ratio: 383/281;
        box-shadow: 0 0 66px 31px rgba(0, 0, 0, 0.1);
    }
}

/* Tablet vertical and mobile: 3 images visible */
@media (max-width: 767px) {
    .logo-image {
        width: 320px;
        height: 228px;
        margin-right: 10px;
        padding: 2px 4px;
        min-height: 228px;
        min-width: 320px;
        max-height: 228px;
        max-width: 320px;
        flex-shrink: 0;
        aspect-ratio: 320/228;
        box-shadow: 0 0 66px 31px rgba(0, 0, 0, 0.1);
    }
}

/* Logo button styling */
.logo-button {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f5f5f5;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 15;
    font-family: inherit;
    min-width: 80px;
    text-align: center;
    box-sizing: border-box;
}

.logo-button:hover {
    background-color: #4b5563;
}

.logo-button.before-btn {
    background-color: #cccccc;
}

.logo-button.after-btn {
    background-color: #00afec;
    color: #ffffff;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #00afec;
    cursor: col-resize;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider-line {
    width: 100%;
    height: 100%;
    background: #00afec;
    position: absolute;
}

.slider-grip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #00afec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 11;
}

.slider-grip:active {
    cursor: grabbing;
}

.slider-grip::before {
    content: '‹ ›';
    color: #ffffff;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1;
    position: absolute;
    top: 43%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

/* Remove slider labels */

/* Utility classes for content fitting */
.no-wrap {
    white-space: nowrap;
}

.single-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-text {
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.tight-spacing {
    margin-bottom: 0.25rem;
}

/* Custom margins to match bento box gap */
.custom-margins {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

/* Bento Images Grid Section */
.bento-grid-container {
    width: 100%;
    position: relative;
    padding: 0 2rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 66px 31px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 80px 40px rgba(0, 0, 0, 0.15);
}

.bento-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    border-radius: 20px;
    margin: 0 2rem;
}

.testimonials-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.testimonials-button {
    border: 2px solid #000000;
    color: #000000;
    background: transparent;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.testimonials-button:hover {
    background: #000000;
    color: #ffffff;
    text-decoration: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid #f8f9fa;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #000000;
    margin: 0 0 0.25rem 0;
}

.testimonial-company {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
}

.testimonial-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    font-style: italic;
}

/* Responsive adjustments for testimonials */
@media (max-width: 991px) {
    .testimonials-section {
        margin: 0 1rem;
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-button {
        display: block;
        text-align: center;
        margin: 0 auto 2rem auto;
        max-width: 250px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-name {
        font-size: 1.1rem;
    }
    
    .testimonial-company {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}