/* Responsive Design */
@media (max-width: 600px) {
    .orange-section {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 0;
        border-bottom-left-radius: 80px;
        border-bottom-right-radius: 80px;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .orange-section h1 {
        font-size: 2.3rem;
    }
    .orange-section p {
        font-size: 0.8rem;
    }
    .banner {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .contact-details {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 1rem;
        align-items: center;
    }
    .contact-item {
        width: 90%;
        word-break: break-word; /* Ensure text wraps completely */
    }
    .services li {
        flex-direction: column;
        text-align: center;
    }
    .services span {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .services h2 {
        font-size: 1.5rem;
    }
}