html {
  scroll-behavior: smooth;
}
/* Main Hero Section */
        .hero-section {
            position: relative;
            height: 100%;
            background-color: #FFFFFF;
            margin-top: 60px;
            text-align: center;

        }
        .hero-section img {
            width: 90%;
            margin: auto;
            text-align: center;
            background: white;
        }
        .hero-overlay {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /*pointer-events: none;*/        
    }
        .hero-scroll {
        position: absolute;
            bottom: 40px;
            width: 30px;
            height: 30px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
    }

    .hero-scroll::after {
            content: '';
            width: 6px;
            height: 6px;
            border-right: 2px solid #ffffff;
            border-bottom: 2px solid #ffffff;
            transform: rotate(45deg);
            margin-top: -3px;
        }
        
    .hero-scroll a {
        text-decoration: none;
        width: 140px;
        display: inline-block;
    
    }
        .scroll-indicator {
            display: inline-block;
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255,255,255,0.6);
            border-radius: 50%;
            line-height: 34px;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }
        .scroll-indicator:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        /* Sketch Architectural Section */
        .sketch-section {
            background-color: #ddd4cc;
            padding: 5.5% 40px;
            text-align: center;
            width: 90%;
            text-align: center;
            margin: auto;
            margin-bottom: 20px;
            border-radius: 0 0 20px 20px;
            
        }
        .sketch-title {
            font-size: 1.5rem;
            font-weight: 400;
            letter-spacing: 1px;
            color: #6B6C51;
            margin-bottom: 20px;
        }
        .sketch-subtitle {
            font-size: 12px;
            letter-spacing: 2px;
            color: #8a7e72;
            margin-bottom: 15px;
        }
        .sketch-placeholder-text {
            font-size: 14px;
            color: #6B6C51;
            letter-spacing: 1px;
            line-height: 2;
        }
        
        /* 內容區塊通用樣式 */
    .content-section {
        display: flex;
        width: 90%;
        margin: auto;
        align-items: center;
        box-sizing: border-box;
        padding-bottom: 30px;
    }
    .content-text {
        flex: 1;
        
        text-align: center;
    }
    .content-text h2 {
        font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #6B6C51;
    
    }
    .content-text p {
        font-size: 0.8rem;
        color: #6B6C51;
        line-height: 1.6;
        padding: 20px 58px;
        text-align: left;
    }
    .content-text ul {
        text-align: left;
        padding-left: 70px;
    }
    .content-text ul p{
        padding: 0px;
    margin: 0;
    font-size: 1rem;
    }

    .content-text li {
        font-size: 0.8rem;
        color: #6B6C51;
        line-height: 1.6;
        padding: 5px 58px 5px 0px;
        text-align: left;
    }
    .content-text li::marker {
      color: #6B6C51; /* Changes bullet color */
      font-size: 1.2em; /* Changes bullet size */
    }

    .content-image-container {
        flex: 1;
        overflow: hidden;
    }
    .content-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
    }

    /* 左右交錯排列控制 */
    .white-section {

    }
    .text-left { order: 1; }
    .image-right { order: 2; }
    .text-right { order: 2; }
    .image-left { order: 1; }

    @media (max-width: 768px) {
    .text-left { order: 2; }
    .image-right { order: 1; }
    .text-right { order: 2; }
    .image-left { order: 1; }
    }
    /* 手機版圖文排列調整 */
    @media (max-width: 768px) {
        .content-section {
            flex-direction: column; /* 改為垂直排列 */
        }
        .content-text {
            padding: 40px 20px; 
            width: 100%;
        }
        .text-left, .text-right, .image-left, .image-right {
           /* order: unset !important; /* 恢復預設網頁流順序，避免畫面混亂 */
        }
        .content-text p {
        padding: 20px 10px;
    }
    .content-text li {
        padding: 5px 0px 5px 0px;
    }
    .content-text ul {
        padding-left: 0px;
    }
    .sketch-placeholder-text{
        line-height: 1.5;
        font-size: 0.8rem;
    }

    }

    @media (max-width: 500px) {
    .hero-section {margin-top: 60px;}
        .hero-scroll {

            bottom: 14px;
        }
}



    