/* Improved Responsive CSS - Optimized for iOS and mobile devices */

/* Base responsive improvements */
html {
    /* Better text rendering on iOS */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    /* Prevent horizontal scroll */
    overflow-x: hidden;
    /* Better font rendering on iOS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container improvements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header improvements for mobile */
@media (max-width: 768px) {
    .header {
        /* Ensure header doesn't interfere with iOS notch */
        padding-top: env(safe-area-inset-top);
    }
    
    .nav {
        padding: 0.75rem 0;
        position: relative;
    }
    
    .logo {
        flex-shrink: 0;
        z-index: 10;
    }
    
    .logo-text {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
        /* Ensure touch target is large enough for iOS */
        min-height: 44px;
        min-width: 44px;

        -webkit-tap-highlight-color: transparent; /* Kein graues Aufblitzen */
        touch-action: manipulation; /* Optimiert Klick-Reaktion */
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
        background: var(--text-dark);
        margin: 2px 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        z-index: 999;
        /* iOS safe area */
        padding-top: calc(env(safe-area-inset-top) + 2rem);
        padding-bottom: calc(env(safe-area-inset-bottom) + 2rem);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 1rem;
        /* Larger touch targets for iOS */
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .cta-button {
        font-size: 1.125rem;
        padding: 1rem 2rem;
        min-height: 44px;
    }
}

/* Hero section mobile improvements */
@media (max-width: 768px) {
    .hero {
        padding: calc(5rem + env(safe-area-inset-top)) 0 3rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem;
        font-size: 1rem;
        /* iOS button improvements */
        -webkit-appearance: none;
        border-radius: 30px;
        min-height: 44px;
    }
}

/* Stats section mobile */
@media (max-width: 768px) {
    .stats {
        padding: 2rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .stat-item {
        padding: 1rem;
        background: var(--light-gray);
        border-radius: 12px;
    }
}

/* Services section mobile */
@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto 1rem;
    }
    
    .service-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

/* About section mobile */
@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        max-width: none;
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    .about-features {
        text-align: left;
        max-width: 400px;
        margin: 1.5rem auto;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}

/* Partners section mobile */
@media (max-width: 768px) {
    .partners {
        padding: 3rem 0;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .partner-logo {
        max-width: 250px;
        height: auto;
        margin-bottom: 1rem;
    }
    
    .partner-info h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .partner-info p {
        font-size: 0.9rem;
    }
}

/* Contact section - Information only styling */
@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
        /* iOS safe area */
        padding-bottom: calc(3rem + env(safe-area-inset-bottom));
    }
    
    .contact-content {
        display: block;
        gap: 0;
    }
    
    .contact-info-center {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-details {
        gap: 2rem;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        transition: transform 0.3s ease, background 0.3s ease;
    }
    
    .contact-item:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item strong {
        font-size: 1.1rem;
        color: white;
        margin-bottom: 0.5rem;
    }
    
    .contact-item a {
        font-size: 1.1rem;
        color: var(--accent-blue);
        text-decoration: none;
        padding: 0.5rem;
        border-radius: 8px;
        transition: background 0.3s ease;
        /* Better touch targets */
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-item a:hover {
        background: rgba(14, 165, 233, 0.1);
        text-decoration: underline;
    }
    
    .contact-item small {
        font-size: 0.9rem;
        color: #d1d5db;
        font-style: italic;
        margin-top: 0.25rem;
    }
    
    .contact-item address {
        font-style: normal;
        color: #d1d5db;
        line-height: 1.5;
    }
    
    .opening-hours {
        color: #d1d5db;
        line-height: 1.5;
    }
    
    .opening-hours div {
        margin-bottom: 0.25rem;
    }
    
    .contact-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
        flex-wrap: wrap;
    }
    
    .contact-cta .btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: 180px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.3s ease;
        min-height: 50px;
    }
    
    .contact-cta .btn span {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .contact-icon {
        font-size: 1.75rem;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Desktop contact section styling - Beautiful card design like mobile */
@media (min-width: 769px) {
    .contact {
        padding: 5rem 0;
        background: var(--dark-gray);
    }
    
    .contact-content {
        display: block;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .contact-info-center {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .section-title {
        color: var(--text-dark);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        color: var(--medium-gray);
        font-size: 1.125rem;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact .section-title {
    color: #ffffff !important; /* Reinweiß für "Kontakt aufnehmen" */
}

.contact .section-description {
    color: #f3f4f6 !important; /* Fast Weiß (sehr helles Grau) für den Text */
    opacity: 0.95; /* Leichte Transparenz sieht edler aus, bleibt aber lesbar */
}
    
    .contact-details {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-item {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(15px);
        position: relative;
        overflow: hidden;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    
    .contact-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .contact-item:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .contact-item:hover::before {
        transform: scaleX(1);
    }
    
    .contact-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: block;
        line-height: 1;
        flex-shrink: 0;
    }
    
    .contact-item-content {
        text-align: center;
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .contact-item strong {
        display: block;
        font-size: 1.125rem;
        color: white;
        margin-bottom: 0.75rem;
        font-weight: 600;
        line-height: 1.2;
    }
    
    .contact-item a {
        color: var(--accent-blue);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        margin: 0.25rem 0;
        background: rgba(14, 165, 233, 0.1);
        border: 1px solid rgba(14, 165, 233, 0.3);
        line-height: 1.2;
    }
    
    .contact-item a:hover {
        background: var(--accent-blue);
        color: white;
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
    }
    
    .contact-item small {
        display: block;
        font-size: 0.875rem;
        color: #d1d5db;
        font-style: normal;
        margin-top: 0.75rem;
        line-height: 1.4;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .contact-item address {
        font-style: normal;
        color: #e5e7eb;
        line-height: 1.5;
        font-size: 1rem;
        margin: 0;
        text-align: center;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .opening-hours {
        color: #e5e7eb;
        line-height: 1.4;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }
    
    .opening-hours div {
        margin-bottom: 0.5rem;
        padding: 0.25rem 0;
        font-weight: 500;
    }
    
    .opening-hours div:last-child {
        margin-bottom: 0;
        font-weight: 600;
        color: #fca5a5;
        font-size: 0.95rem;
    }
    
    /* CTA Section as a highlighted card */
    .contact-cta-section {
        background: var(--gradient-primary);
        border-radius: 20px;
        padding: 2.5rem 2rem;
        text-align: center;
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
        position: relative;
        overflow: hidden;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .contact-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
        background-size: 200% 200%;
        animation: shimmer 3s ease-in-out infinite;
    }
    
    @keyframes shimmer {
        0%, 100% { background-position: 0% 0%; }
        50% { background-position: 100% 100%; }
    }
    
    .contact-cta-title {
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
        line-height: 1.2;
    }
    
    .contact-cta-description {
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 1.5rem;
        line-height: 1.5;
        font-size: 1rem;
        position: relative;
        z-index: 2;
        max-width: 350px;
    }
    
    .contact-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 2;
        flex-wrap: wrap;
    }
    
    .contact-cta .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 160px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        line-height: 1.2;
    }
    
    .contact-cta .btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .contact-cta .btn span {
        font-size: 1.125rem;
    }
    
    .contact-cta .btn-primary {
        background: white;
        color: var(--primary-blue);
        border-color: white;
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    }
    
    .contact-cta .btn-primary:hover {
        background: #f8fafc;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
    }
    
    .contact-cta .btn-secondary {
        background: transparent;
        color: white;
        border-color: white;
        backdrop-filter: blur(10px);
    }
    
    .contact-cta .btn-secondary:hover {
        background: white;
        color: var(--primary-blue);
        transform: translateY(-3px) scale(1.05);
    }
    
    .emergency-notice {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 12px;
        padding: 1rem 1.5rem;
        text-align: center;
        position: relative;
        z-index: 2;
        backdrop-filter: blur(15px);
        width: 100%;
        max-width: 300px;
    }
    
    .emergency-notice strong {
        color: white;
        display: block;
        margin-bottom: 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.2;
    }
    
    .emergency-notice p {
        color: rgba(255, 255, 255, 0.95);
        margin: 0;
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1.3;
    }
}

/* Large desktop screens */
@media (min-width: 1200px) {
    .contact-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .contact-item {
        padding: 2.5rem 2rem;
        min-height: 220px;
        border-radius: 24px;
    }
    
    .contact-icon {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-item strong {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .contact-item a {
        font-size: 1.125rem;
        padding: 0.625rem 1.25rem;
    }
    
    .contact-item small {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .contact-item address {
        font-size: 1.125rem;
    }
    
    .opening-hours {
        font-size: 1rem;
    }
    
    .opening-hours div {
        padding: 0.375rem 0;
        margin-bottom: 0.625rem;
    }
    
    .contact-cta-section {
        padding: 3rem 2.5rem;
        border-radius: 24px;
        min-height: 320px;
    }
    
    .contact-cta-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-cta-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
    
    .contact-cta {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-cta .btn {
        min-width: 180px;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        border-radius: 14px;
    }
    
    .contact-cta .btn span {
        font-size: 1.25rem;
    }
    
    .emergency-notice {
        padding: 1.5rem 2rem;
        border-radius: 14px;
        max-width: 350px;
    }
    
    .emergency-notice strong {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .emergency-notice p {
        font-size: 0.95rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
    .contact-details {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .contact-item {
        min-height: 240px;
        padding: 3rem 2.5rem;
    }
    
    .contact-icon {
        font-size: 3rem;
    }
    
    .contact-item strong {
        font-size: 1.375rem;
    }
    
    .contact-item a {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Fernwartung section mobile */
@media (max-width: 768px) {
    .fernwartung {
        padding: 3rem 0;
    }
    
    .fernwartung-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .step {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .fernwartung-downloads {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .download-btn {
        width: 100%;
        max-width: 350px;
        padding: 1.5rem;
        text-align: center;
        /* iOS button improvements */
        -webkit-appearance: none;
        min-height: 60px;
    }
    
    .download-info {
        width: 100%;
        max-width: 350px;
        padding: 1.5rem;
        text-align: left;
    }
}

/* Footer mobile */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
        /* iOS safe area */
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 0.5rem;
    }
    
    .footer-links a {
        padding: 0.5rem;
        /* Better touch targets */
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        /* Better touch targets for iOS */
        min-width: 44px;
        min-height: 44px;
    }
}

/* Very small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: calc(4rem + env(safe-area-inset-top)) 0 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .service-card,
    .partner-card,
    .step {
        padding: 1.25rem;
    }
    
    .download-btn {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}

/* Large screens improvements */
@media (min-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        padding: 10rem 0 5rem;
    }
    
    .services,
    .about,
    .contact,
    .testimonials,
    .fernwartung {
        padding: 6rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: calc(3rem + env(safe-area-inset-top)) 0 2rem;
        min-height: 100vh;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn {
        width: auto;
        min-width: 200px;
    }
}

/* High DPI displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .about-img,
    .partner-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-button,
    .btn,
    .fernwartung-downloads,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero {
        padding: 2rem 0;
        background: white !important;
        color: black !important;
    }
    
    .hero-title {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
    
    .services,
    .about,
    .testimonials {
        background: white !important;
        padding: 1rem 0;
    }
    
    .service-card,
    .testimonial-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black !important;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
        color: black !important;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}