/* Existing desktop styles */
.contact_section {
    margin: 10px auto;
    padding: 20px;
}

.contact_title {
    text-align: center;
}

.contact_title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #007BFF;
    font-family: 'Eina_Bold';
}

.contact_title p {
    font-size: 16px;
    color: #666;
}

.warning {
    background-color: #fce7e9;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px 0 20px 0;
}
 

.all_contact {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#single_contact {
    color: black;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

#tab_header h2 {
    margin: 0 0 10px;
    font-size: 18px;
}

#button_contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    width: 300px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

ion-icon {
    font-size: 24px;
}

#tab_content p {
    margin: 5px 0;
    font-size: 16px;
}

.atas {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}

/* Responsive styles for tablets and mobile devices */
@media (max-width: 1024px) {
    .contact_title h2 {
        font-size: 36px;
    }

    .contact_title p {
        font-size: 16px;
    }

    .warning {
        padding: 15px;
        font-size: 16px;
    }

    .all_contact {
        margin-top: 20px;
        margin-bottom: 20px;
        gap: 20px;
    }

    #tab_header h2 {
        font-size: 18px;
    }

    #button_contact {
        font-size: 16px;
        width: 250px;
    }
}

@media (max-width: 768px) {
    .contact_title h2 {
        font-size: 36px;
    }

    .contact_title p {
        font-size: 16px;
    }

    .warning {
        padding: 15px;
        font-size: 16px;
    }

    .all_contact {
        margin-top: 20px;
        margin-bottom: 20px;
        gap: 20px;
    }

    #tab_header h2 {
        font-size: 18px;
    }

    #button_contact {
        font-size: 16px;
        width: 200px;
    }

    .atas {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact_title h2 {
        font-size: 36px;
    }

    .contact_title p {
        font-size: 16px;
    }

    .warning {
        padding: 15px;
        font-size: 16px;
    }

    .all_contact {
        margin-top: 20px;
        margin-bottom: 20px;
        gap: 20px;
    }

    #tab_header h2 {
        font-size: 18px;
    }

    #button_contact {
        font-size: 16px;
        width: 180px;
    }

    .atas {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}