/* Note 區塊幾何背景裝飾樣式 */
.note {
    position: relative;
    overflow: hidden;
}

.note-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.note>* {
    position: relative;
    z-index: 2;
}

/* 深色圓點 */
.note-shape-circle-dark {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #2C2C54;
    border-radius: 50%;
    top: calc(50% - 138px);
    left: 8px;
    z-index: 3;
}

/* 橙色大圓形 */
.note-shape-circle-orange-large {
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: #FF8F60;
    border-radius: 50%;
    top: 50%;
    left: -125px;
    transform: translateY(-50%);
    z-index: 2;
}

/* 響應式設計 */
/* Note 右側圖片 */
.note-image-right {
    position: absolute;
    top: 20%;
    right: 0;
    width: 220px;
    height: auto;
    z-index: 4;
}

/* 響應式設計 - 右側圖片 */
@media (max-width: 768px) {
    .note-image-right {
        width: 79px;
        top: 38%;
        right: 0;
        z-index: 0;
    }

    .note-shape-circle-dark {
        width: 20px;
        height: 20px;
        top: calc(50% - 82px);
        left: 8px;
    }

    .note-shape-circle-orange-large {
        width: 180px;
        height: 180px;
        top: 50%;
        left: -90px;
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {
    .note-image-right {
        width: 79px;
        top: 38%;
        right: 0;
        z-index: 0;
    }

    .note-shape-circle-dark {
        width: 20px;
        height: 20px;
        top: calc(50% - 82px);
        left: 8px;
    }

    .note-shape-circle-orange-large {
        width: 100px;
        height: 100px;
        top: 48%;
        left: -50px;
        transform: translateY(-50%);
    }
}