* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft JhengHei', '·L³n¥¿¶ÂÅé', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%), url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideDown 0.8s ease-out;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero .description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    margin: 10px;
}

    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
        background: linear-gradient(45deg, #ff5252, #ff7043);
    }

@keyframes pulse {
    0% {
        box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    }

    50% {
        box-shadow: 0 15px 35px rgba(255, 107, 107, 0.5);
    }

    100% {
        box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    }
}

.features {
    background: white;
    padding: 100px 0;
    position: relative;
}

    .features::before {
        content: '';
        position: absolute;
        top: -50px;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
    }

    .features h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #333;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    justify-items: center;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    max-width: 300px;
    width: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.risk-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

    .risk-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

.risk-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.risk-stat {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

    .risk-stat h3 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .risk-stat p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

.benefits {
    background: #f8f9fa;
    padding: 100px 0;
}

    .benefits h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #333;
    }

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .benefit-item:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

.benefit-icon {
    font-size: 2.5rem;
    margin-right: 25px;
    width: 80px;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
}

    .benefit-text h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: #333;
    }

    .benefit-text p {
        color: #666;
        line-height: 1.5;
    }

.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

    .final-cta h2 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .final-cta p {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        opacity: 0.9;
    }

.urgency {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

    .urgency h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #ffeb3b;
    }

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .hero .description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
