/* ===== FONTS ===== */
@font-face {
    font-family: 'Roboto';
    src: local('Roboto');
    font-display: swap; /* Improve font loading performance */
}

/* ===== GLOBAL STYLES ===== */
:root {
    /* Color variables */
    --primary-green: #B9FF66;
    --primary-dark: #191A23;
    --light-gray: #F3F3F3;
    --text-dark: #000;
    --text-light: #fff;
    
    /* Layout variables */
    --container-max-width: 1200px;
    --container-padding: 20px;
    --section-spacing: 40px;
    --content-spacing: 20px;
    
    /* Animation variables */
    --transition-normal: all 0.3s ease-in-out;
    --transition-fast: all 0.2s ease-in-out;
    --transition-slow: all 0.5s ease-in-out;
    
    /* Border variables */
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 35px;
    --standard-border: 2px solid black;
    
    /* Typography variables */
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-medium: 500;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    font-family: var(--font-body);
    margin: 0;
}

body {
    color: var(--text-dark);
    background-color: white;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative; /* Added for positioning context */
}

/* Mobile menu backdrop overlay */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.menu-backdrop.active {

    visibility: visible;
}

/* ===== BUTTON STYLES ===== */
[class^="blackbutton"] {
    padding: 12px 20px;
    border: 1px solid black;
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; /* Specify exact properties for better performance */
}

.blackbutton {
    color: black;
}

.blackbutton-secondary {
    background-color: var(--primary-dark);
    color: white;
}

.blackbutton:hover, .blackbutton-secondary:hover {
    background-color: var(--primary-green);
}

.blackbutton-secondary:hover {
    color: black;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    position: relative;
    z-index: 100;
}

.navbar-content {
    max-width: calc(var(--container-max-width) + 200px); /* 1400px */
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--container-padding);
}

.navbar-logo {
    z-index: 100;
}

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navlinks {
    display: flex;
    align-items: center;
}

.navlinks a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    padding: 10px 20px;
    transition: var(--transition-fast);
}

.navlinks a:hover {
    background-color: rgba(185, 255, 102, 0.2); /* Subtle green background */
    color: var(--primary-green);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 200;
    position: relative;
}

.burger-icon {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-green);
    transition: var(--transition-fast);
    border-radius: 1px;
}

/* Change burger icon color to black */
.mobile-menu-toggle .burger-icon {
    background-color: black; /* Changed from green to black */
}

.mobile-menu-toggle:hover .burger-icon {
    background-color: white; /* Keep black on hover */
}

.mobile-menu-toggle.active .burger-icon::before,
.mobile-menu-toggle.active .burger-icon::after {
    background-color: black; /* Changed from green to black */
}

/* Add focus styles for accessibility */
.navlinks a:focus,
[class^="blackbutton"]:focus,
[class^="service-btn"] a:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    flex: 0.8; 
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--content-spacing);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    margin-top: 40px;
}

.hero p {
    font-size: 1.1rem;
    margin-top: 40px;
}

.hero-content a {
    display: inline-block;
    margin-top: 40px;
}

/* ===== BRANDS SECTION ===== */
.brands {
    flex: 0.2; 
    display: flex;
    align-items: center;
}

.hero-brand-container {
    min-height: 600px;
    padding: 60px 0; 
    display: flex;
    flex-direction: column;
}

.brands-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 75px;
}

.brands-content img {
    opacity: 0.7; 
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Specify exact properties for better performance */
}

.brands-content img:hover {
    opacity: 1; 
    transform: scale(1.1);
}

/* ===== SERVICES SECTION ===== */
.services-text {
    max-width: 1200px;
    width: 100%;
    margin: 25px auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.cta-text {
    margin: 0px auto;
}

.services-text h1, .cta-text h1 {
    width: auto;         /* Let the width be determined by content */
    display: inline-block;  /* Changed from inline to inline-block */
    padding: 0 10px;     /* Add some padding around the text */
    line-height: 1.5;    /* Proper line height for headings */
    background-color: var(--primary-green);
    white-space: nowrap; /* Prevent text from wrapping */
    box-decoration-break: clone; /* For multi-line highlights if needed */
    -webkit-box-decoration-break: clone;
}

/* Remove this specific width constraint */
.cta-text h1 {
    width: auto; /* Override the width */
}

.services {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* ===== SERVICE CARDS ===== */
/* Common service card styles */
.service-style1, .service-style2, .service-style3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    border: var(--standard-border);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    align-items: center;
    text-align: left;
    color: black;
}

/* Service style specific backgrounds */
.service-style1 {
    background-color: var(--light-gray);
}

.service-style2 {
    background-color: var(--primary-green);
}

.service-style3 {
    background-color: var(--primary-dark);
}

.service-style3 p {
    color: white;
}

/* Common grid layout for service cards */
[class^="service-style"] h2,
[class^="service-style"] .highlight-text {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 10px;
}

[class^="service-style"] p {
    grid-column: 1;
    grid-row: 2;
}

[class^="service-style"] img {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: center;
}

/* ===== HIGHLIGHT & BUTTONS ===== */
/* Highlight text styles */
[class^="highlight-text"] h2 {
    width: fit-content;
    margin: 0;
    font-weight: 700;
}

.highlight-text1 h2 {
    background-color: var(--primary-green);
}

.highlight-text3 h2 {
    background-color: #ffffff;
}

/* Service buttons */
[class^="service-btn"] {
    margin-top: 15px;
}

[class^="service-btn"] a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.service-btn-2 a {
    color: white;
}

.service-style1 a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    height: 30px;
}

.btn-1 {
    font-size: 30px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.btn-icon2 {
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
}

[class^="service-btn"] a:hover .btn-1 {
    transform: scale(1.2) rotate(-25deg);
}

.service-img {
    grid-row: span 2;
}

/* ===== CTA SECTION ===== */
.cta-section {
    margin: 20px 0;
    padding: 0 20px;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    background-color: var(--light-gray);
    border: var(--standard-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cta-content a {
    width: fit-content;
}

.cta-image img {
    width: 70%;
    height: auto;
    border-radius: 20px;
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Case Studies Section ===== */

.cs-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

/* Style for case study elements */
.cs-container [class^="cs-card"] {
    border: var(--standard-border);
    display: grid;
    grid-template-columns: 1fr;
    min-height: 200px;
    border-radius: var(--border-radius-md);
    padding: 20px;
}

/* Style for case study logo/image */
.cs-container [class^="cs-card"] img {
    grid-row: 1;
    justify-self: center;
    margin-bottom: 15px;
}

/* Style for case study paragraphs */
.cs-container [class^="cs-card"] p {
    word-break: break-word; /* Allows breaking of long words */
    overflow-wrap: break-word; /* Alternative property for better browser support */
    max-width: 100%; /* Ensures content doesn't exceed container width */
}

/* Style for the Learn More buttons */
.cs-container [class^="cs-card"] a {
    grid-row: 3;
    align-self: end;
    justify-self: start;
    margin-top: auto;
}

/* Card color scheme classes for reuse */
.bg-green {
    background-color: var(--primary-green);
}

.bg-light {
    background-color: var(--light-gray);
    color: black;
}

.bg-dark {
    background-color: var(--primary-dark);
    color: white;
}

/* Specific card styles */
.cs-card1, .cs-card5 {
    background-color: var(--primary-green);
}

.cs-card2, .cs-card6 {
    background-color: var(--light-gray);
    color: black;
}

.cs-card3, .cs-card4 {
    background-color: var(--primary-dark);
    color: white;
}

/* Wider cards */
.cs-card2, .cs-card4 {
    grid-column: span 2;
}

/* Invert colors for images with cs-white class */
.cs-white {
    filter: invert(1);
}

/* Optimize images */
.img-optimized {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.faq-card {
    border: var(--standard-border);
    border-radius: var(--border-radius-lg);
    margin-bottom: 15px;
    overflow: hidden;
}

.cta_clr-b {
    background-color: black;
    color: white;
}

.cta_clr-grn {
    background-color: var(--primary-green);
    color: black;
}

.cta_clr-gry {
    background-color: var(--light-gray);
    color: black;
}

.faq-question {
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 0.9rem;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease,
                padding 0.2s ease; /* Optimize with single transition property */
    padding: 0 20px;
    margin: 0;
    opacity: 0;
}

.faq-answer p {
    margin: 0;
    padding: 20px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.faq-card.active .faq-answer {
    max-height: 1200px;
    padding-bottom: 20px;
    opacity: 1;
}

.faq-card.active .faq-toggle {
    transform: rotate(45deg);
}

/* ===== Case Studies Section ===== */
.team-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
}

.team-card1, .team-card2 {
    flex: 1;
    min-width: 200px;
    border: var(--standard-border);
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.team-card1 h3 {
    text-align: left;
}

.team-card1 {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.team-card1 h3, .team-card2 h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.team-card1 p, .team-card2 p {
    margin-bottom: 10px;
}

.team-card2 {
    background-color: var(--primary-green);
    color: var(--text-dark);
}

.team-card1 img, .team-card2 img {
    align-items: center;
    width: 150px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1, .hero h1 {
        font-size: 2.5rem;
    }
    
    h2, .cta-content h2 {
        font-size: 1.8rem;
    }
    
    p, .hero p {
        font-size: 1rem;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    /* Common responsive adjustments */
    .services p, .services-text p, .cta-content p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .services h2 {
        font-size: 0.9rem;
        text-align: left;
    }
    
    /* Layout adjustments */
    .hero, .cta-container, .cs-container {
        grid-template-columns: 1fr;
    }
    
    /* Hero section */
    .hero {
        text-align: center;
        grid-template-areas: 
            "image"
            "content";
    }
    
    .hero-content {
        padding-bottom: 45px;
    }
    
    .grid-1 {
        grid-area: content;
    }
    
    .grid-2 {
        grid-area: image;
    }
    
    .grid-2 img {
        width: 90%;
        margin: 0 auto;
        display: block;
    }
    
    /* Brands section */
    .hero-brand-container {
        min-height: 400px;
        padding: 30px 0;
    }
    
    .brands-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .brands-content img {
        width: 100px;
        height: auto;
    }
    
    /* Services section */
    .services-text {
        margin-top: 0;
        margin-bottom: 0;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .services-text h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .services-text p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .cta-text h1 {
        width: auto;
        white-space: nowrap;
    }
    
    .services {
        grid-template-columns: 1fr;
    }
    
    .services img {
        width: 80%;
        height: auto;
    }
    
    /* CTA section */
    .cta-container {
        text-align: center;
    }
    
    .cta-content {
        align-items: center;
    }
    
    .cta-image {
        order: -1;
    }
    
    .cta-image img {
        max-width: 100%;
    }
    
    /* Case studies section */
    .cs-cards {
        padding: 20px;
    }
    
    .cs-container {
        gap: 20px;
        padding: 0;
        max-width: 100%;
    }
    
    [class^="cs-card"] {
        min-height: 150px;
        width: 100%;
        grid-column: span 1 !important;
        display: flex;
        flex-direction: column;
        padding: 20px;
        box-sizing: border-box;
    }
    
    /* Update team container for mobile */
    .team-container {
        flex-direction: column; /* Change from row to column */
        gap: 10px;
        padding: 20px;
    }
    
    .team-card1, .team-card2 {
        width: 100%; /* Take full width */
        min-width: 100%;
        margin-bottom: 15px;
    }
    
    .team-card1 img, .team-card2 img {
        width: 120px; /* Slightly smaller profile images on mobile */
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 20px 0;
    margin: 10px 0;
}

.testimonials-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    left: 0;
    top: 0;
    padding: 0 20px;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    border: var(--standard-border);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    position: relative;
    padding: 0 20px;
}

.testimonial-quote .fa-quote-left,
.testimonial-quote .fa-quote-right {
    font-size: 24px;
    opacity: 0.5;
}

.testimonial-quote .fa-quote-left {
    position: absolute;
    left: -10px;
    top: -10px;
}

.testimonial-quote .fa-quote-right {
    position: absolute;
    right: -10px;
    bottom: -10px;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 15px 0;
}

.testimonial-author {
    margin-top: 20px;
    text-align: right;
    padding-right: 20px;
}

.testimonial-author h4 {
    font-weight: var(--font-weight-bold);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-style: italic;
    opacity: 0.8;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.prev-testimonial,
.next-testimonial {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    transform: scale(1.2);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-slider {
        min-height: 450px; /* Increased from 300px */
        height: 450px; /* Fixed height */
    }
    
    .testimonial-content {
        height: 400px; /* Fixed content height */
    }
    
    .testimonial-slide {
        height: 450px; /* Match slider height */
    }

    .testimonial-controls {
        margin-top: 0;
    }
}

/* Footer Section */
footer {
    width: 1300px;
    margin: 0 auto;
}
.site-footer {
    background-color: var(--primary-green);
    padding: 60px 0 20px;
    margin-top: 40px;
    border: var(--standard-border);
    border-radius: 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-brand {
    flex: 0 0 30%;
}

.footer-brand p {
    margin: 15px 0;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.footer-links {
    flex: 0 0 65%;
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

/* Media query for responsive footer */
@media (max-width: 768px) {
    /* Responsive Navbar */
    .navbar-content {
        position: relative;
    }
      .mobile-menu-toggle {
        display: block;
        z-index: 1100; /* Ensure it's above everything */
        position: relative;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 30px;
        transition: var(--transition-normal);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navlinks {
        flex-direction: column;
        width: 100%;
    }
      .navlinks a {
        padding: 15px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-light);
    }
      .navbar-menu .blackbutton {
        margin-top: 30px;
        background-color: var(--primary-green);
        color: var(--primary-dark);
    }
    
    /* Animate burger icon to X when menu is open */
    .mobile-menu-toggle.active .burger-icon:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .burger-icon:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .burger-icon:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Body lock when menu is open to prevent scrolling */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Footer Responsive Styles */
    .site-footer {
        width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 25px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
        justify-content: center;
    }
}

/* Print styles - Hide interactive elements and optimize for printing */
@media print {
    .navbar, .hero-buttons, .service-btn, .service-btn-2, .faq-toggle, .testimonial-controls {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .hero, .services, .cta-container, .cs-container, .testimonial-slide {
        display: block;
        width: 100%;
        margin: 0;
        padding: 10px 0;
        position: relative;
        opacity: 1;
    }
    
    [class^="cs-card"], [class^="service-style"], .faq-card, .testimonial-content {
        page-break-inside: avoid;
        border: 1px solid #ccc !important;
        background-color: transparent !important;
        color: #000 !important;
        margin-bottom: 15px;
    }
    
    img {
        max-width: 500px !important;
    }
    
    .faq-answer, .testimonial-slide {
        max-height: none !important;
        opacity: 1 !important;
        padding-bottom: 10px !important;
    }
}
