<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Responsive Styles */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    .service-card,
    .benefit-card,
    .blog-post-card {
        padding: 20px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    /* Header &amp; Navigation */
    .logo img {
        height: 35px;
    }
    
    .main-nav li {
        margin-left: 20px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image,
    .about-text {
        flex: none;
        width: 100%;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Blog Page */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services Page */
    .service-detail {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-detail.reverse {
        flex-direction: column;
    }
    
    .service-image,
    .service-content {
        flex: none;
        width: 100%;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* About Page */
    .story-content,
    .mission-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .story-image,
    .story-text,
    .mission-image,
    .mission-text {
        flex: none;
        width: 100%;
    }
    
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    /* Header &amp; Navigation */
    .main-header .container {
        padding: 10px 20px;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav li {
        margin: 0 0 15px 0;
    }
    
    .main-nav li:last-child {
        margin-bottom: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Services Grid */
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Blog Section */
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    /* Newsletter */
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 4px;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 4px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about,
    .footer-links,
    .footer-services,
    .footer-contact {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Blog Page */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    /* Related Articles */
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Page */
    .team-grid,
    .values-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }
    
    /* Page Header */
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Blog Article */
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-excerpt {
        font-size: 1.1rem;
    }
    
    .article-content h2 {
        font-size: 1.6rem;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
    }
    
    /* Thank You Page */
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-buttons {
        flex-direction: column;
    }
    
    .thank-you-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Cookie Banner */
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}</pre></body></html>