/* Reset any default margin and padding */
* {
    margin: 0;
    padding: 0;
}

/* Ensure images are responsive and have maximum width of 100% */
img {
    max-width: 100%;
    height: auto;
}

/* Center align text and elements inside specific columns */
.text-center {
    text-align: center;
}

/* Styles for the header tagline section */
.header-tagline {
    text-align: center; /* Center align text */
}

.tagline {
    font-size: 30px;
}

/* Styles for the WhatsApp number section */
.whatsapp-number {
    color: #25d366;
    font-family: Kaushan Script;
    font-size: 22px;
    line-height: 26px;
    margin-top: 10px; /* Adjust margin as needed */
}

.whatsapp-number .number {
    color: black;
    padding-top: 5px;
}

/* Styles for the conference label */
.conference-label {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

/* Styles for the TAAI member label */
.member-taai {
    text-align: center;
    margin-top: 10px; /* Adjust margin as needed */
}
/* CSS for mobile devices only */
@media (max-width: 767px) {
    .tagline-mobile-only {
        line-height: normal;
        text-transform: capitalize;
        font-size: 27px;
        /* Additional styles for mobile */
    }
}

/* CSS to hide on screens larger than mobile */
@media (min-width: 768px) {
    .tagline-mobile-only {
        display: none;
    }
}

