.mun_name_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    text-align: center;
    color: white;
    width: 80%;
}

.mun_name_header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.mun_name_logo {
    width: 70px;
    height: auto;
}

.mun_name_title {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.mun_name_headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 20px;
}

.mun_name_subtext {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.mun_name_buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.mun_name_button {
    background: linear-gradient(90deg, #f3e3c3, #eec063);
    color: white;
    font-size: 1rem;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
}

.mun_name_button:hover {
    background: linear-gradient(90deg, #eec063, #f3e3c3);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 180, 0, 0.5);
}

.mun_name-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0px;
    width: 100%;
}

.mun_name-section {
    width: 48%;
    color: #fff;
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
}

.mun_name-section h2 {
    color: #eec063;
}

.mun_name-btn {
    margin-top: 20px;
    text-decoration: none;
    background: linear-gradient(90deg, #f3e3c3, #eec063);
    color: #000;
    font-size: 0.9rem;
    padding: 12px 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
}

.mun_name-btn:hover {
    background: linear-gradient(90deg, #eec063, #f3e3c3);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 180, 0, 0.5);
}

@media (max-width: 1024px), (max-width: 768px), (max-width: 480px) {
    .mun_name-container {
        width: 80%;
        flex-direction: column;
        align-items: center;
    }
    .mun_name-section {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    .mun_name_headline {
        font-size: 2.5rem;
    }
    .mun_name_subtext {
        font-size: 1rem;
    }
    .mun_name_buttons {
        flex-direction: column;
        gap: 10px;
    }
}
.trusterp_name {
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 50px 0;
    width: 100%;
    overflow: hidden;
    text-align: center;
    background-color: #0a0a0a;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trustname {
    font-size: 28px;
    color: #FFB400;
    margin-bottom: 20px;
}

.trusterp_name-container {
    position: relative;
    width: 1100px;
    max-width: 80%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.trusterp_name-slider {
    display: flex;
    width: max-content;
    white-space: nowrap;
    overflow: hidden;
}

.trusterp_name-wrapper {
    display: flex;
    gap: 50px;
    animation: scroll 40s linear infinite; /* Slower speed */
}

.trusterp_name-logo {
    flex: 0 0 auto; /* Prevent shrinking */
    display: flex;
    align-items: center;
    gap: 10px;
}

.trusterp_name-logo img {
    max-width: 50px; /* Slightly larger for visibility */
    height: auto;
}


.trusterp_name-logo img:hover {
    filter: brightness(1);
}

.partner-text {
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    color: white;
    font-weight: 500;
    font-weight: bold;
    white-space: nowrap;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.trusterp_name-container::before,
.trusterp_name-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.trusterp_name-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0));
}

.trusterp_name-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0));
}

@media (max-width: 1024px) {
    .trusterp_name-container {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .trusterp_name-container {
        width: 80%;
    }
    .trusterp_name-logo img {
        max-width: 50px;
    }
}

@media (max-width: 480px) {
    .trusterp_name-container {
        width: 80%;
    }
    .trusterp_name-logo img {
        max-width: 50px;
    }
    .partner-text {
        font-size: 14px;
    }
}