/* Tablet Styles */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .hero h1 { font-size: 2.5rem; }
    .page-header h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero adjustments */
    .hero {
        min-height: 70vh;
        padding: 120px 0 60px;
    }
    
    /* Grid adjustments */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .progress-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-direct {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Form adjustments */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    /* Content adjustments */
    .recruitment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Cookie banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Section padding adjustments */
    section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    /* Path timeline adjustments */
    .path-step {
        flex-direction: column;
        text-align: center;
    }
    
    .path-step::after {
        display: none;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    /* Tool items adjustments */
    .tool-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tool-icon {
        margin: 0 auto 1rem;
    }
    
    /* Table responsiveness */
    .cookie-table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.125rem; }
    
    .hero h1 { font-size: 2rem; }
    .page-header h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.75rem; }
    
    /* Grid adjustments */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-stats .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Button adjustments */
    .btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .thanks-actions .btn {
        width: auto;
        min-width: 200px;
    }
    
    /* Card padding adjustments */
    .service-card,
    .team-card,
    .testimonial-card,
    .resource-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .service-detailed-card {
        padding: 2rem 1.5rem;
    }
    
    .mv-card {
        padding: 2rem 1.5rem;
    }
    
    /* Form adjustments */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    /* Cookie banner mobile */
    .cookie-content {
        padding: 0 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        margin-bottom: 0.5rem;
    }
    
    /* Cookie modal mobile */
    .cookie-modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 20px;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Section padding */
    section {
        padding: 40px 0;
    }
    
    .page-header {
        padding: 90px 0 50px;
    }
    
    /* Hero mobile */
    .hero {
        min-height: 60vh;
        padding: 100px 0 40px;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    /* Contact items mobile */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item .contact-icon {
        width: 30px;
        height: 30px;
    }
    
    /* FAQ mobile */
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    /* Table mobile */
    .cookie-table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem 0.25rem;
        min-width: 100px;
    }
    
    /* Legal content mobile */
    .legal-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .legal-text h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }
    
    .legal-text h3 {
        font-size: 1.125rem;
        margin-top: 1.5rem;
    }
    
    /* Testimonial mobile */
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin: 0 auto 1rem;
    }
    
    /* Icons size adjustments */
    .stat-icon,
    .service-icon,
    .team-icon,
    .about-icon,
    .mv-icon,
    .value-icon,
    .achievement-icon,
    .method-icon,
    .metric-icon,
    .philosophy-icon,
    .feature-icon,
    .resource-icon,
    .step-icon,
    .tool-icon,
    .contact-icon,
    .success-icon {
        width: 50px;
        height: 50px;
    }
    
    .section-icon,
    .recruitment-icon {
        width: 120px;
        height: 120px;
    }
    
    /* Spacing adjustments */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .progress-intro {
        margin-bottom: 2rem;
    }
    
    .form-intro {
        margin-bottom: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.875rem;
    }
    
    .contact-form,
    .service-detailed-card,
    .mv-card {
        padding: 1rem;
    }
    
    .cookie-modal-content {
        padding: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Large desktop adjustments */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .social-links {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .page-header {
        background: none;
        color: #000;
        padding: 20px 0;
    }
    
    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .legal-text {
        font-size: 11pt;
    }
    
    .cookie-table {
        font-size: 10pt;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 5px;
        border: 1px solid #000;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background-color: #000;
        border-color: #000;
    }
    
    .btn-outline {
        border-color: #000;
        color: #000;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #000;
    }
    
    .stat-icon,
    .service-icon,
    .team-icon {
        fill: #000;
    }
}

/* Reduced motion */
@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;
    }
    
    .fade-in,
    .slide-in-left,
    .slide-in-right {
        transform: none;
        opacity: 1;
    }
}

/* Dark mode preference (optional, since no dark theme requested) */
@media (prefers-color-scheme: dark) {
    /* Keep light theme as requested - no dark mode implementation */
}
