/* Additional responsive design styles */

/* Base responsive adjustments */
@media (max-width: 1200px) {
    .container {
        width: 95%;
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    /* Header adjustments */
    .header-container {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .logo {
        margin-bottom: 15px;
        justify-content: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    /* Timeline adjustments */
    .timeline::before {
        left: 50px;
    }
    
    .timeline-item {
        width: calc(100% - 100px);
        margin-left: 100px;
    }
    
    .timeline-item::before {
        left: -50px;
    }
    
    .timeline-date {
        left: -100px;
        width: 80px;
    }
    
    /* Contact page adjustments */
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    /* Mobile menu */
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
    }
    
    nav {
        display: none;
        width: 100%;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    /* Hero section adjustments */
    .hero-content {
        padding: 40px 20px;
        flex-direction: column;
    }
    
    .hero-text {
        order: 2;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .hero p {
        font-size: 16px;
        text-align: center;
    }
    
    /* Services section adjustments */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-links {
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* Image placeholders */
    .image-placeholder {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    p {
        font-size: 15px;
    }
    
    /* Timeline further adjustments */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .timeline-item::before {
        left: -30px;
    }
    
    .timeline-date {
        left: -60px;
        width: 50px;
        font-size: 12px;
    }
    
    /* Form adjustments */
    .form-group {
        margin-bottom: 15px;
    }
    
    input, textarea, select {
        padding: 8px;
    }
    
    button.btn {
        padding: 10px 15px;
    }
}
