body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}

header {
    background-color: #071478;
    color: white;
    padding: 1em 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}



main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2em;
}

.sponsor {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 1em;
    padding: 1em;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.sponsor:hover {
    transform: scale(1.05);
}

.sponsor img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
}

.sponsor h2 {
    font-size: 1.5em;
    margin: 0.5em 0;
}

.sponsor p {
    font-size: 1em;
    margin: 0.5em 0 1em;
}

.sponsor a {
    text-decoration: none;
    color: #336a75;
    font-weight: bold;
    border: 1px solid #336a75;
    padding: 0.5em 1em;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.sponsor a:hover {
    background-color: #336a75;
    color: white;
}

.mobile-toggler .fa-bars,
.mobile-toggler .fa-x {
    display: none;
}

@media (max-width: 767px) {
    .mobile-toggler .fa-bars {
        display: block;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu.open {
        transform: translateX(0);
    }
    .mobile-menu {
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%);
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        z-index: 1000;
    }
    .mobile-menu.hidden {
        transform: translateX(100%);
    }
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 20px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    display: flex;
    align-items: center;
}

.dropdown .dropbtn .caret {
    margin-left: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}





.regcontainer {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.sponsor-link {
  
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sponsor-category {
    margin-bottom: 20px;
}

.sponsor-category ul {
    list-style-type: disc;
    padding-left: 20px;
}

.text-center {
    text-align: center;
}

.text-blue-900 {
    color: #1e3a8a; /* Adjust color as needed */
}

.text-blue-600 {
    color: #2563eb; /* Adjust color as needed */
}

.text-blue-500 {
    color: #3b82f6; /* Adjust color as needed */
}

.hover\\:underline:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .regcontainer {
        width: 70%;
    }
}

@media (max-width: 767px) {
    .text-xl {
        font-size: 1.125rem; /* Adjust as needed for smaller screens */
    }

    .text-2xl {
        font-size: 1.5rem; /* Adjust as needed for smaller screens */
    }

    .sponsor-category ul {
        padding-left: 15px;
    }
}
