body {
    font-family: 'Inter', sans-serif;
}

.nav-link {
    color: #4a4a4a;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1d4ed8;
}

.section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

button {
    transition: background-color 0.3s ease;
}

button:hover span.material-symbols-outlined {
    color: #ffffff;
}

/* Media Query for Tablets (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding: 4rem;
    }

    .section h2 {
        font-size: 1.25rem;
    }

    .section button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .space-y-6 {
        gap: 24px;
    }
}
