/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navigation */
.header {
    background: linear-gradient(90deg, #9BAFD9 0%, #B8C5E0 25%, #ffffff 50%, #B8C5E0 75%, #9BAFD9 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    color: #2C3E50;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a3a52 0%, #2d5670 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

/* Page Title */
.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #1a3a52;
    margin: 60px 0 50px 0;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Section */
.process-section {
    padding: 40px 20px 80px 20px;
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
}

.process-flow-image {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.process-flow-image img {
    width: 100%;
    max-width: 1400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-header-pricing {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-pricing h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    padding: 15px 50px;
    background: linear-gradient(135deg, #9BAFD9 0%, #B8C5E0 100%);
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(155, 175, 217, 0.3);
}

.pricing-image {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.pricing-note {
    margin-top: 30px;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a8b7e 0%, #22a89a 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #1a8b7e;
    padding: 18px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5670 100%);
    color: white;
    padding: 50px 20px 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    background: white;
    border-radius: 50%;
    padding: 5px;
}

.footer-logo h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 16px;
    color: #B8C5E0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #B8C5E0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #9BAFD9;
}

.footer-social {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1200px;
    margin: 0 auto;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    line-height: 40px;
    text-align: center;
    margin: 0 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .logo {
        grid-column: 1 / -1;
        justify-self: center;
        margin-bottom: 8px;
    }
    
    .nav-link {
        padding: 10px 20px;
        font-size: 14px;
        text-align: center;
    }
    
    /* Page Title */
    .page-title {
        font-size: 32px;
        margin: 40px 0 30px 0;
    }
    
    /* Process */
    .process-section {
        padding: 30px 15px 50px 15px;
    }
    
    .process-flow-image img {
        border-radius: 15px;
    }
    
    /* Pricing */
    .pricing-section {
        padding: 50px 15px;
    }
    
    .section-header-pricing h2 {
        font-size: 28px;
        padding: 12px 35px;
    }
    
    /* CTA */
    .cta-section {
        padding: 50px 15px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 18px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Navigation - Horizontal scroll */
    .nav-items {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
    }
    
    .nav-items::-webkit-scrollbar {
        display: none;
    }
    
    .logo {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
        margin: 0;
    }
    
    .logo img {
        width: 38px;
        height: 38px;
    }
    
    .nav-link {
        padding: 8px 16px;
        font-size: 13px;
        flex-shrink: 0;
        width: auto;
    }
    
    /* Page Title */
    .page-title {
        font-size: 26px;
    }
    
    /* Process */
    .process-flow-image img {
        border-radius: 10px;
    }
    
    /* Pricing */
    .section-header-pricing h2 {
        font-size: 22px;
        padding: 10px 25px;
    }
    
    .pricing-note {
        font-size: 14px;
    }
    
    /* CTA */
    .cta-title {
        font-size: 20px;
    }
    
    .cta-button {
        width: 90%;
        max-width: 300px;
        padding: 14px 30px;
        font-size: 16px;
    }
}