:root {
    --bg-color: #F8FAFC;
    --bg-color-dark: #eaeef3;
    --white: #FFFFFF;
    --primary: #0284C7;
    --primary-dark: #0369A1;
    --primary-light: #a0d7e0;
    --accent-main: #F97316;
    --accent-maindark: #dc5c00;
    --accent-light: #ffbc00;
    --accent-sub: #ee5261;
    --accent-subdark: #d23d51;
    --accent-green: #07b59e;
    --accent-greendark: #059178;
    --text-main: #253841;
    --text-light: #4a5d78;
    --text-lighter: #748193;
    --border: #253841;
    --darkgrey: #666;
    --midgrey: #999;
    --lightgrey: #c4c4c4;
    --purple: #9c81c5;
    --stoneblue: #56adc1;
    --brown: #987a5c;
    --wasabi: #a7bc50;
    --coral: #ff7f50;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    cursor: pointer;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

.p-x {
    padding: 0 0.5rem;
}

.bold {
    font-weight: bold;
}

.bolder {
    font-weight: bolder;
}

.d-flex {
    display: flex;
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

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

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

.pd-4 {
    padding: 4vh 4vw;
}

.pd-l {
    padding-left: 8px;
}

.pd-r {
    padding-right: 8px;
}

.pd-t {
    padding-top: 8px;
}

.h-px {
    height: 2px;
}

@font-face {
    font-family: 'MStiffHeiHK';
    src: url('https://newtrade.taiwantrade.com/assets/MStiffHeiHK.otf') format('otf');
    font-weight: bolder;
    font-style: border;
}

.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 1.5rem;
    padding: 10px 0;
    display: block;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.dropdown {
    position: relative;
    width: 100%;
    text-align: center;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 5px;
    vertical-align: middle;
    color: var(--text-light);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
    animation: fadeIn 0.2s ease-in-out;
}

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

.dropdown-item {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-main);
    font-size: 1.25rem;
    transition: 0.2s;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: #EFF6FF;
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes click {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
}

@keyframes popIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-cta {
    background: var(--accent-light);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 900;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    font-size: 1.35rem;
    border: var(--border) 2px solid;
    color: var(--border);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: -5px 5px rgba(0, 0, 0, 0.15);
    animation: 1s;
}

.btn-cta img {
    width: 1.75vw;
    height: auto;
    margin: 0 0.3vw;
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 900;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    font-size: 1.35rem;
    border: var(--border) 2px solid;
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    border: var(--border) 2px solid;
    box-shadow: -5px 5px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    background: var(--primary);
    color: var(--white);
    border: var(--border) 2px solid;
    box-shadow: -5px 5px rgba(0, 0, 0, 0.15);
}

.btn-register {
    display: inline-block;
    padding: 10px 25px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-register:hover {
    background-color: #333;
}

.btn-submit {
    width: 60%;
    margin: 5vh auto 1vh;
    padding: 1rem;
    background: var(--primary);
    color: #FFFFFF;
    font-weight: bold;
    border: 2px solid var(--border);
    border-radius: 50rem;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    box-shadow: 6px 6px rgba(0, 0, 0, 0.15);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: -6px 6px rgba(0, 0, 0, 0.15);
}

.btn-download {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-download:hover {
    background: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.3);
}

.btn-action {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50rem;
    margin-bottom: 1vh;
    transition: all 0.2s;
}

.btn-action:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: -6px 6px rgba(0, 0, 0, 0.15);
}

.btn-close {
    background: transparent;
    border: none;
    color: var(--text-sub);
    padding: 8px 20px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 1rem;
}

.btn-close:hover {
    color: var(--text-main);
}

.btn-text {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover {
    color: var(--primary-dark);
    gap: 8px;
}


.hero {
    background: url('https://newtrade.taiwantrade.com/assets/img/main_bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 10vh 4vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 40px;
    background: var(--white 0.5);
}

.hero h1 {
    font-size: 8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f2c56;
    font-weight: bolder;
    font-family: "MStiffHeiHK", "noto san tc";
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p.subtitle {
    font-size: 2.75rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 4.5rem;
}

.hero p.desc2 {
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: 0.25rem;
}

.hero p.desc2 span {
    color: var(--accent-main);
    font-weight: bolder;
    font-size: 2.5rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-btns img {
    width: 30vw;
}

.hero-btns .btn-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.25rem;
}

.button-container button .icon{
    margin-right: -20px;
}

.button-container {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
    transition: transform 0.6s ease;
}

.button {
    flex: 1;
    padding: 25px;
    font-size: 2rem;
    font-weight: bolder;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.button-left {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #2c3e50;
    border: 4px solid #2c3e50;
    border-radius: 50rem;
    z-index: 1;
}

.button-right {
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 4px solid #2c3e50;
    border-radius: 50rem;
    margin-left: -20%;
    padding-left: 15%;
}

.button-right span{
    margin-top:-2px
}

.button-right img {
    width: 2vw;
    height: auto;
}

.button-container:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.button-container:active {
    transform: scale(0.98);
}

.icon {
    font-size: 28px;
    animation: click 1.5s ease-in-out infinite;
}

.fixed-cta-container {
    position: fixed;
    right: 2vw;
    bottom: 2vh;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.fixed-cta-container img {
    width: 10vw;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.fixed-cta-container img:hover {
    transform: translateY(-4px) scale(1.04);
    filter: drop-shadow(-4px 6px 10px rgba(0, 0, 0, 0.4));
}

.fixed-cta-container.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.container {
    max-width: 80%;
    margin: -8vh auto 6vh;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.section {
    padding: 80px 20px;
}

.bg-white {
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0056b3;
    margin: 15px auto 0;
}

.section-title h2 {
    font-size: 3.25rem;
    color: var(--primary-dark);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.5rem;
}
.d-flex {
    display: flex;
}
.link-blue{
    color: var(--primary);
    text-decoration: underline;
    font-weight: bolder;
    transition: all 0.3s ease;
}

.link-blue:hover {
    color: var(--primary-dark);
}

.process-grid {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #E2E8F0;
    z-index: 0;
}

.process-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.75rem;
    border-radius: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.process-card h3 {
    font-size: 2.5rem;
    color: #116696;
    font-weight: bolder;
}

.process-card p {
    font-size: 1.35rem;
    margin-bottom: 2vh;
}

.process-card .btn-cta {
    margin-top: auto;
    font-size: 1.35rem;
    padding: 0.5rem 1.75rem;
    color: var(--text-main);
}

.icon-box {
    background: #EFF6FF;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 4px solid var(--white);
}

.icon-box img {
    width: 100%;
    height: auto;
}

.latest-events-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: "Microsoft JhengHei", Arial, sans-serif;
    color: #333;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 200px;
}

.event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.event-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-content {
    flex: 1;
    padding-right: 20px;
}

.event-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #222;
}

.event-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    color: #666;
}

.event-info span {
    display: flex;
    align-items: center;
}

.icon-time::before {
    content: '🕒 ';
    margin-right: 5px;
}

.icon-loc::before {
    content: '📍 ';
    margin-right: 5px;
}

.event-action {
    flex-shrink: 0;
}

.loading-msg {
    text-align: center;
    color: #888;
    padding: 20px;
}

#events-section #data-container #data-list {
    width: 80%;
    margin: auto;
}

#events-section #data-container #data-list li {
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--accent-main);
    width: 100%;
    margin: 0.5vh auto 2.25vh;
    padding: 2.5rem 1.75rem;
    border-radius: 1rem;
    border: var(--border) 1px solid;
    border-left: var(--border) 15px solid;
    border-right: var(--border) 15px solid;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

#events-section #data-container #data-list > li::before {
    content: '';
    position: absolute;
    top: -4vh;
    left: 20px;
    width: 6vw;
    height: 40px;
    background: url('https://newtrade.taiwantrade.com/assets/img/label.svg') no-repeat center / contain;
}

#events-section #data-container #data-list li h3.data-title {
    flex: 0 0 100%;
    font-size: 2rem;
    color: var(--text-main);
}

#events-section #data-container #data-list li p {
    display: inline-block;
    align-items: center;
    font-size: 1.5rem;
    padding-right: 2vw;
    color: var(--text-light);
}

#events-section #data-container #data-list li img {
    margin-bottom: -1vh;
}

#events-section #data-container #data-list li p.data-url {
    margin-left: auto;
    margin-right: 0;
    margin-top: -6vh;
    font-size: 1.75rem;
    font-weight: bolder;
    padding: 1.5rem;
    background: var(--accent-light);
    border: var(--border) 2px solid;
    color: var(--text-main);
    letter-spacing: 0.2rem;
    line-height: 2rem;
    border-radius: 5rem;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.15);
}

#events-section #data-container #data-list li p.disabled {
    margin-left: auto;
    margin-right: 0;
    margin-top: -6vh;
    font-size: 1.75rem;
    font-weight: bolder;
    padding: 1.5rem;
    background: var(--text-lighter);
    border: var(--border) 2px solid;
    color: var(--white);
    letter-spacing: 0.2rem;
    line-height: 2rem;
    border-radius: 5rem;
    cursor: not-allowed;
}

#events-section #data-container #data-list li p.data-url:hover {
    transform: translateY(-2px);
    box-shadow: -5px 5px rgba(0, 0, 0, 0.15);
    animation: 1s;
}

#events-section #data-container #data-list li p img {
    margin-bottom: -0.5vh;
    margin-right: 0.2vw;
}

.data-label {
    width: 8vw;
    height: auto;
    margin-left: 2vw;
    margin-right: auto;
    padding-left: 2vw;
}

.data-label img {
    width: 100%;
}

.activity-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 30px;
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    align-items: center;
    gap: 30px;
    transition: 0.3s;
    position: relative;
}

.activity-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.activity-date {
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 8px;
    text-align: center;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80px;
    width: 80px;
}

.activity-date .month {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.activity-date .day {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.activity-status {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
}

.status-open {
    background: #DCFCE7;
    color: #166534;
}

.status-closed {
    background: #F1F5F9;
    color: #64748B;
}

.activity-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-main);
    margin: 0;
}

.activity-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    gap: 15px;
    align-items: center;
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-action {
    text-align: right;
}

#video-section {
    background: url('https://newtrade.taiwantrade.com/assets/img/video_bg.jpg') no-repeat center center;
    background-size: cover;
}

#video-section .section-title h2,
#video-section .section-title p {
    color: var(--white);
}

#sevice-section {
    background: url('https://newtrade.taiwantrade.com/assets/img/sevice_bg.jpg') no-repeat center center;
    background-size: cover;
}

#sevice-section .section-title h2,
#sevice-section .section-title p {
    color: var(--white);
}

.video-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.main-video {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.main-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    max-width: 100%;
}

.play-btn {
    font-size: 4rem;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

.play-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.video-item {
    display: flex;
    gap: 16px;
    padding: 0.8rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--border);
    background-color: var(--white);
    max-width: 100%;
    box-sizing: border-box;
}

.video-item:hover {
    background: #F1F5F9;
}

.video-item.active {
    background: #EFF6FF;
    border: var(--primary) 3px solid;
}

.video-thumb {
    width: auto;
    height: 100%;
    border-radius: 2rem;
    position: relative;
    flex-shrink: 0;
    max-width: 40%;
}

.video-thumb img {
    border-radius: 1rem;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.video-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.video-item:hover .play-btn {
    background: rgba(0, 0, 0, 0.6);
    transform: translate(-50%, -50%) scale(1.06);
}

.video-info {
    flex: 1;
    min-width: 0;
}

.video-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-info span {
    font-size: 1.5rem;
    color: var(--text-light);
}

.video-swiper {
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    padding: 24px 0;
    overflow: hidden;
    min-height: 66vh;
    box-sizing: border-box;
}

.video-swiper .swiper-slide {
    width: clamp(260px, 28vw, 520px);
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    filter: brightness(0.85);
    opacity: 0.85;
    transition: filter .25s, opacity .25s;
}

.video-swiper .swiper-slide.swiper-slide-active {
    height: 66vh;
    width: auto;
    aspect-ratio: 16 / 9;
    max-width: min(117.33vh, 90%); 
    filter: none;
    opacity: 1;
}

.video-swiper .swiper-slide:not(.swiper-slide-active) iframe {
    pointer-events: none;
}

.video-swiper .swiper-slide iframe {
    width: 100%;
    height: 100%;
    border: 0;
    max-width: 100%;
}

.video-swiper .swiper-button-prev,
.video-swiper .swiper-button-next {
    color: var(--white);
    z-index: 9999;
}
iframe,
video {
    max-width: 100%;
    box-sizing: border-box;
}

#video-section {
    overflow-x: hidden;
    max-width: 100%;
}

#video-section .container {
    max-width: 100%;
    overflow-x: hidden;
}

footer.footer {
    background: #eeeeee;
    color: var(--text-light);
    padding: 2rem 2rem 1rem;
    text-align: center;
    font-size: 1.2rem;
}

footer.footer .footer-menu {
    margin: 0 auto 2vh;
    font-size: 1.5rem;
}

footer.footer .footer-menu ul li {
    text-decoration: underline;
}

footer.footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
}

footer.footer ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    max-width: 100%;
}

footer.footer ul li span {
    padding-left: 0.5rem;
}

footer.footer .footer-logo ul li p img {
    display: inline-block;
    height: 3.5vh;
    width: auto;
}

footer.footer li p {
    padding: 0 0.5rem;
}

footer.footer .phone-list {
    padding: 0 0.25rem;
}

footer.footer .footer_icon img {
    color: #fff;
    width: auto;
    height: 1.5vw;
}

footer.footer .copyright {
    padding-top: 1vw;
    color: var(--text-light);
    border-top: var(--lightgrey) 1px solid;
    width: 90%;
    margin: 1rem auto 0;
}

.page-header {
    color: white;
    text-align: center;
    width: 100%;
    margin: auto;
    padding: 5vw 5vh;
}

.consulting-header {
    background: url('https://newtrade.taiwantrade.com/assets/img/consulting_bg.jpg') no-repeat center bottom;
    background-size: cover;
}

.consulting-header h1 {
    font-size: 6rem;
    line-height: 1.2;
    margin-bottom: 4vh;
    color: #fff;
    font-weight: bolder;
    font-family: "MStiffHeiHK", "noto san tc";
}

.consulting-header p {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto 1vh;
    opacity: 0.9;
}

.consulting-header .consulting-main {
    margin: 0vh auto 3vh;
    width: 23vw;
}

.breadcrumb {
    font-size: 1.2rem;
    opacity: 0.8;
    margin: 2vh auto;
    letter-spacing: 0.2rem;
}

.intro-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border: 2px solid var(--border);
}

.intro-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.intro-text {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 5vh;
    line-height: 1.8;
    text-align: center;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--accent-greendark);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    background: #eeeeee;
    border: 2px dashed var(--midgrey);
    border-radius: 5rem;
}

.check-icon {
    color: var(--accent-greendark);
    font-weight: bold;
    font-size: 2rem;
    padding-right: 0.2rem;
}

.category-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.category-grid::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #c8ced6;
    z-index: -2;
}

.category-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    border: 2px solid;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-card:first-child {
    border-color: var(--accent-green);
}

.category-card:nth-child(2) {
    border-color: var(--accent-main);
}

.category-card:nth-child(3) {
    border-color: var(--accent-sub);
}

.category-card:nth-child(4) {
    border-color: var(--purple);
}

.category-card:nth-child(5) {
    border-color: var(--stoneblue);
}

.category-card:nth-child(6) {
    border-color: var(--wasabi);
}

.category-card:nth-child(7) {
    border-color: var(--coral);
}

.category-card:nth-child(8) {
    border-color: var(--brown);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.category-card:first-child:hover {
    border-color: var(--accent-greendark);
}

.category-card:nth-child(2):hover {
    border-color: var(--accent-maindark);
}

.category-card:nth-child(3):hover {
    border-color: var(--accent-subdark);
}

.category-card:nth-child(4):hover {
    border-color: var(--purple);
}

.category-card:nth-child(5):hover {
    border-color: var(--stoneblue);
}

.category-card:nth-child(6):hover {
    border-color: var(--wasabi);
}

.category-card:nth-child(7):hover {
    border-color: var(--coral);
}

.category-card:nth-child(8):hover {
    border-color: var(--brown);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1vh;
    transition: 0.3s;
}

.category-card:first-child::before {
    background: var(--accent-green);
}

.category-card:nth-child(2)::before {
    background: var(--accent-main);
}

.category-card:nth-child(3)::before {
    background: var(--accent-sub);
}

.category-card:nth-child(4)::before {
    background: var(--purple);
}

.category-card:nth-child(5)::before {
    background: var(--stoneblue);
}

.category-card:nth-child(6)::before {
    background: var(--wasabi);
}

.category-card:nth-child(7)::before {
    background: var(--coral);
}

.category-card:nth-child(8)::before {
    background: var(--brown);
}

.category-card:first-child:hover::before {
    background: var(--primary);
}

.category-card h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
}

.category-card p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.cat-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1E293B;
}

.cat-desc {
    color: var(--text-light);
    font-size: 1rem;
    flex-grow: 1;
    margin: 1rem 0;
    line-height: 1.6;
}

.cat-tag {
    display: inline-block;
    background: var(--text-lighter);
    color: var(--bg-color);
    padding: 0.4rem 0.8rem;
    border-radius: 50rem;
    font-size: 1rem;
    margin-top: 5px;
    margin-right: 5px;
}

.cat-tag:hover {
    opacity: 0.8;
    cursor: default;
}

.solutions-header {
    background: url('https://newtrade.taiwantrade.com/assets/img/solutions_bg.jpg') no-repeat center bottom;
    background-size: cover;
}

.solutions-header h1 {
    font-size: 6rem;
    line-height: 1.2;
    margin-bottom: 4vh;
    color: #fff;
    font-weight: bolder;
    font-family: "MStiffHeiHK", "noto san tc";
}

.solutions-header p {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.solutions-header .solutions-main {
    margin: 0vh auto 1vh;
    width: 26vw;
}

.notice-box {
    background-color: var(--white);
    border: 1px solid var(--accent-sub);
    border-left: 10px solid var(--accent-sub);
    padding: 4vh 2vw;
    border-radius: 8px;
    margin: -6vh auto -14vh;
    box-shadow: var(--shadow);
    display: flex;
    align-items: start;
    gap: 15px;
}

mark.highlight {
    background-color: #ffff99;
    padding: 0 2px;
    border-radius: 2px;
    color: var(--accent-subdark);
    font-weight: 500;
}

.notice-icon img {
    width: 5vw;
}

.notice-content p span {
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.notice-content p {
    color: var(--accent-subdark);
    font-size: 1.5rem;
    margin: 0;
}

.solutions-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.solutions-grid .category-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    text-align: left;
    gap: 40px;
}

.solutions-grid .icon-box {
    position: relative;
    width: 30%;
    margin: 0;
    margin-left: 30px;
    flex-shrink: 0;
}

.solutions-grid .cat-content {
    width: 68%;
    flex: 1;
    margin-left: 1.5vw;
}

.solutions-grid .icon-box .cat-num {
    margin-top: -5vh;
}

.solutions-grid .icon-box img {
    margin-left: -2vw;
}

.solutions-grid .cat-title,
.solutions-grid .cat-desc {
    text-align: left;
}

.solutions-grid .category-card > div:not(.icon-box):not(.cat-content):not(.d-flex):not(.tag_block) {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.solutions-grid .category-card > div.d-flex.justify-content-center {
    width: 100% !important;
    text-align: center;
    margin-top: auto;
    justify-content: center;
}

.solutions-grid .category-card .btn-primary {
    min-width: 40%;
    margin: 0.5vh auto;
}

.sol-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cat-num {
    font-size: 6rem;
    font-weight: 800;
    color: #fff;
    -webkit-text-stroke: 1px var(--primary);
    -moz-text-stroke: 1px var(--primary);
    -ms-text-stroke: 1px var(--primary);
    -o-text-stroke: 1px var(--primary);
    line-height: 1;
}

.sol-icon {
    font-size: 3rem;
    background: var(--primary-light);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.sol-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1E293B;
    min-height: 3rem;
}

.sol-desc {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.apply-cta {
    text-align: center;
    padding: 14vh 2vw;
    background-image: url('https://newtrade.taiwantrade.com/assets/img/apply_cta_bg.jpg');
    background-color: #df6666;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.apply-cta .container {
    margin: 0 auto;
}

.apply-cta h3 {
    font-size: 4.5rem;
    color: var(--accent-light);
    margin-bottom: 2vh;
}

.apply-cta p {
    font-size: 1.75rem;
    color: var(--bg-color);
    margin-bottom: 8vh;
}

.apply-cta .btn-cta {
    font-size: 2rem;
    box-shadow: 7px 7px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.apply-cta .btn-cta:hover {
    font-size: 2rem;
    box-shadow: -7px 7px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.eligibility-header {
    text-align: center;
    padding: 8vh 6vw 12vh;
    background: url('https://newtrade.taiwantrade.com/assets/img/eligibility_bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.eligibility-header h1 {
    font-size: 6rem;
    margin-bottom: 1.5vh;
}

.eligibility-header p {
    font-size: 1.75rem;
    margin-bottom: 1vh;
    opacity: 0.9;
}

.eligibility-header img {
    width: 26vw;
}

.eligibility-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.eligibility-notice {
    background-color: var(--white);
    border: 2px solid var(--accent-green);
    border-left: 10px solid var(--accent-green);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 5vh;
}

.eligibility-title {
    color: var(--accent-greendark);
    margin-bottom: 2vh;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.eligibility-title::before {
    content: "ℹ";
    display: inline-block;
    margin-right: 10px;
    background: var(--accent-green);
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    text-align: center;
    line-height: 1.75rem;
    font-size: 1.5rem;
}

.eligibility-note {
    margin: 0;
    padding-left: 2.5rem;
    color: var(--text-light);
    font-size: 1.25rem;
    list-style: disc;
}

.eligibility-note li {
    margin-bottom: 8px;
}

.eligibility-note li:last-child {
    margin-bottom: 0;
}

.form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 2rem;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    margin-top: -8vh;
}

.form-card .section-title {
    font-size: 2.5rem;
    color: var(--text-main);
}

.form-card form p.note {
    font-size: 1.2rem;
    color: var(--text-lighter);
    margin-bottom: 1.5vh;
}

.check-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f3f5f7;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: 0.3s;
}

.check-item:hover {
    border-color: var(--primary);
    background: #F0F9FF;
}

.check-question {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    color: var(--text-main);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #FFFFFF;
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: 0.2s;
    color: var(--text-light);
}

.radio-label:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* 選中狀態 */
.radio-label input:checked + span {
    font-weight: bold;
}

.radio-label:has(input:checked) {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: #026AA7;
}

.radio-label input {
    margin-right: 10px;
    accent-color: var(--primary);
    transform: scale(1.4);
}

/* 錯誤狀態 */
.error-msg {
    color: var(--accent-sub);
    font-size: 1.25rem;
    margin-top: 3vh;
    display: none;
    text-align: center;
    padding: 1rem;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 0.5rem;
}

/* 結果視窗 (Modal) */
.result-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 2vh;
    backdrop-filter: blur(4px);
}

.result-content {
    background: #FFFFFF;
    padding: 5vh 4vh;
    border-radius: 1rem;
    max-width: 30%;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popIn 0.3s ease-out;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.result-icon {
    margin-bottom: 25px;
    display: inline-block;
    width: 8vw;
}

.result-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.result-title {
    font-size: 1.8rem;
    margin-bottom: 2vh;
    font-weight: 800;
}

.result-desc {
    color: var(--text-sub);
    margin-bottom: 2vh;
    text-align: center;
    background: #F8FAFC;
    padding: 1.75rem;
    border-radius: 0.75rem;
    border: 1px solid #E2E8F0;
}

.result-desc p:first-child {
    font-weight: 800;
    font-size: 1.25rem;
}

.result-desc ul {
    margin-top: 1vh;
}

.result-desc li {
    margin-right: 0.5rem;
    color: var(--accent-greendark);
}

.result-desc li::before {
    content: '✓';
    margin-right: 0.5rem;
}

.result-desc .important-reminder {
    color: var(--text-light);
    border-top: 1px solid #E2E8F0;
    padding-top: 10px;
    margin-top: 10px;
}

.status-success {
    color: var(--success);
}

.status-fail {
    color: var(--warning);
}

.bg-success {
    background: var(--success);
    color: #fff;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.bg-fail {
    background: var(--warning);
    color: #fff;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.bg-neutral {
    background: var(--primary-light);
    color: var(--text-main);
}

.bg-primary {
    background: var(--primary);
    color: var(--white);
}

.bg-submit {
    background: var(--accent-light);
    color: var(--text-main);
    border: 2px solid var(--border);
    box-shadow: 6px 6px rgba(0, 0, 0, 0.15);
}

.archive-header {
    text-align: center;
    padding: 8vh 6vw 12vh;
    background: url('https://newtrade.taiwantrade.com/assets/img/archive_bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.archive-header h1 {
    font-size: 6rem;
    line-height: 1.2;
    margin-bottom: 3vh;
    color: #fff;
    font-weight: bolder;
    font-family: "MStiffHeiHK", "noto san tc";
}

.archive-header p {
    font-size: 1.75rem;
    margin: 0 auto 5vh;
}

.archive-header img {
    width: 26vw;
    margin: 0 auto 3vh;
}

.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5vh;
}

.year-toggle {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 50rem;
    display: flex;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.toggle-btn {
    padding: 0.5rem 2rem;
    border-radius: 50rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 6 6px rgba(0, 0, 0, 0.3);
    font-size: 2rem;
    font-weight: bolder;
}

.toggle-btn:hover:not(.active) {
    color: var(--white);
}

.dashboard-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    animation: fadeIn 0.5s ease-out;
}

.year-title-block {
    text-align: center;
    margin-bottom: 40px;
}

.year-title-block h2 {
    color: var(--text-main);
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.report-card {
    background: var(--primary-light);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid #BAE6FD;
    margin-bottom: 40px;
}

.report-content h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.report-content p {
    color: #475569;
    max-width: 600px;
    font-size: 0.95rem;
    margin: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F8FAFC;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.2s;
}

.stat-row:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.stat-label {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
}

.stat-number {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.8rem;
}

.global-stat-box {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(to right, #F0F9FF, #E0F2FE);
    border-radius: 16px;
    border: 1px solid #BAE6FD;
}

.global-stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.global-stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: bold;
}

.visual-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: #000;
    position: relative;
}

.video-box {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.achievement-section {
    margin-top: -17vh;
}

.map-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.map-total {
    font-size: 3.25rem;
    font-weight: 800;
}

.map-label {
    font-size: 1.25rem;
}

.map-value {
    font-size: 1.75rem;
}

.map-content {
    gap: 2vw;
}

.map-dot_first{
    top: 35%;
    left: 70%;
}

.map-dot_second{
    top: 23%;
    left: 52%;
}

.map-dot_third{
    top: 25%;
    left: 18%;
}

.map-dot_fourth{
    top: 60%;
    left: 28%;
}

.map-dot_fifth{
    top: 48%;
    left: 50%;
}

.map-dot_sixth{
    top: 68%;
    left: 85%;
}
.map-dot_4{
    width: 4rem;height: 4rem;
}

.map-dot_5{
    width: 5rem;height: 5rem;
}

.map-dot_7{
    width: 7rem;height: 7rem;
}

.map-text-en{
    font-size: 1.25rem;line-height: 1.5rem;
}
.map-text-zh{
    font-size: 1rem;
}

.bg-tech-wall {
    background-color: #0b1121;
    background-image:
        radial-gradient(circle at 50% 0%, #1d4ed8 0%, transparent 70%),
        radial-gradient(circle at 85% 30%, #4338ca 0%, transparent 50%),
        radial-gradient(circle at 15% 60%, #0e7490 0%, transparent 50%);
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(to bottom, #ffffff, #bae6fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.6));
}

.hover-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: #38bdf8;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.25);
}

.map-dot {
    animation: pulse-ring 2s infinite;
}

.tooltip-box {
    display: none;
    position: absolute;
    z-index: 100;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.group:hover .tooltip-box {
    display: block;
}

.map-box {
    height: 400px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-box::before {
    content: '🗺️';
    font-size: 8rem;
    opacity: 0.1;
}

.map-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    font-weight: bold;
    border-left: 4px solid var(--accent);
}
.h3_2024{
    font-size: 2rem;
}
.p_2024{
    font-size: 1.45rem;
}
.2024_download{
    font-size: 1.75rem;
}
.btn-cta img {
    width: 2vw;
}
.h3_2024 img{width: 3vw;height: auto;}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}
