:root {
    --primary-color: #005B82;
    --accent-color: #00A7E1;
    --bg-gradient: radial-gradient(circle at top right, #e0f2f7 0%, #b2ebf2 50%, #80deea 100%);
    --card-bg: rgba(255, 255, 255, 0.7);
    --text-main: #1a2b3c;
    --text-muted: #546e7a;
    --shadow: 0 20px 50px rgba(0, 91, 130, 0.15);
    --glass-border: rgba(255, 255, 255, 0.5);
}

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

body {
    font-family: 'Noto Sans TC', sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text-main);
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(60% 60% at 50% 50%, rgba(0, 167, 225, 0.1) 0%, transparent 100%);
    z-index: -1;
    animation: pulse 8s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.container {
    width: 90%;
    max-width: 1000px;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.content-card:hover .hero-image {
    transform: scale(1.05);
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-title {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary-color);
    line-height: 1;
}

.status-badge {
    align-self: flex-start;
    padding: 0.5rem 1.2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #003d57;
    /* 加深顏色 */
    font-weight: 500;
}



.footer-info {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #003d57;
    /* 加深顏色 */
    font-weight: 500;
}

/* 響應式設計 */
@media (max-width: 850px) {
    .content-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

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

    .status-badge {
        align-self: center;
    }

    .brand-logo {
        font-size: 2.8rem;
    }

    .title {
        font-size: 1.8rem;
    }

    body {
        overflow-y: auto;
        padding: 2rem 0;
    }
}