/* ===================================
   Responsive Design
   =================================== */

/* Tablet Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }
    
    /* Grid Adjustments */
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Button Adjustments */
    .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Section Header */
    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle,
    .cta-section,
    .breadcrumbs {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
