/* Responsive Design */

/* Tablets */
@media (max-width: 768px) {
    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .navbar-brand h1 {
        font-size: 1.3rem;
    }

    .navbar-logo {
        max-height: 40px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 0.7rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .navbar-brand h1 {
        font-size: 1rem;
    }

    .navbar-logo {
        max-height: 30px;
        margin-right: 0.5rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1rem;
    }

    .section {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
    }
}
