/* CSS 變數定義，方便管理主色調 */
:root {
    --primary-color: #ff5e00; /* 橙色 */
    --secondary-color: #0a0a0a; /* 接近純黑的深色 */
    --text-light: #e0e0e0; /* 淺色文字，適合深色背景 */
    --text-dark: #333; /* 深色文字 */
    --border-color: rgba(255, 94, 0, 0.3); /* 橙色半透明邊框 */
    --bg-dark: #1a1a1a; /* 主要深色背景 */
    --bg-light: #2a2a2a; /* 稍淺的深色背景，用於區塊分隔 */
    --font-heading: 'Montserrat', sans-serif; /* 標題字體 */
    /* 內文字體堆疊：優先使用系統預設的無襯線中文字體，並為西文提供備用字體 */
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei",
                 "Helvetica Neue", "Noto Sans CJK TC", "Noto Sans TC", sans-serif;
}

/* 基本重置與全局樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden; /* 防止橫向滾動條 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* 預設左右內邊距 */
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5em;
    font-weight: 700;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 40px;
}

p {
    font-size: 1.1em;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff8c42; /* 稍淺的橙色 */
}

/* 按鈕樣式 */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color); /* 按鈕內文字為黑色 */
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.4);
}

.btn-primary:hover {
    background-color: #e65600; /* 稍深的橙色 */
    transform: translateY(-2px);
}

/* 導覽列 */
.navbar {
    background-color: rgba(10, 10, 10, 0.8); /* 半透明黑色背景 */
    color: var(--text-light);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(8px); /* 模糊效果，增加科技感 */
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 將 logo 和右側群組推向兩側 */
    max-width: none; /* 移除最大寬度限制，使其滿版 */
    padding: 0 40px; /* 在大螢幕上設定導覽列內容與螢幕邊緣的間距 */
}

.navbar .logo a {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 94, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px; /* 圖片與文字之間的間距 */
}

.navbar .logo a span {
    line-height: 1; /* 幫助文字垂直對齊 */
}

.logo-img {
    height: 40px; /* 您可以根據 logo 圖片的尺寸調整此數值 */
}

.nav-right-group { /* New wrapper for nav and actions */
    display: flex;
    align-items: center;
    /* margin-left: auto;  現在由父層的 justify-content: space-between; 處理對齊 */
    gap: 30px; /* Space between main-nav and nav-actions */
}

.main-nav .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between btn-primary and hamburger-menu */
}

.hamburger-menu {
    display: none; /* 預設隱藏漢堡按鈕 */
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.6em;
    cursor: pointer;
    z-index: 1100; /* 確保在最上層 */
    padding: 5px;
}

.main-nav .nav-links li {
    margin-left: 30px;
}

.navbar nav ul li a {
    color: var(--text-light);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.navbar nav ul li a::after { /* 導覽列底線動畫 */
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.navbar nav ul li a:hover::after {
    width: 100%;
}

.navbar nav ul li a.btn-primary {
    color: var(--secondary-color);
}

/* 語言下拉選單樣式 */
.language-dropdown {
    position: relative;
}

.language-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600; /* Added for consistency with main nav links */
    padding: 5px 0; /* Added for vertical alignment with main nav links */
    position: relative; /* Added for ::after positioning */
}

.language-trigger .fa-globe {
    font-size: 1.1em;
}

.language-dropdown-menu {
    display: none; /* 預設隱藏 */
    position: absolute;
    top: 100%;
    right: 0; /* 靠右對齊 */
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    list-style: none;
    padding: 8px 0;
    margin-top: 5px; /* 縮短與觸發器之間的距離 */
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1010;
    opacity: 0;
    transform: translateY(5px); /* 調整初始位移以配合新的 margin-top */
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-dropdown.is-open .language-dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.language-dropdown-menu a {
    display: block;
    padding: 5px 20px; /* Adjusted to match vertical padding of main nav links */
    white-space: nowrap;
    font-weight: 600; /* Added for consistency with main nav links */
    position: relative; /* Added for ::after positioning */
}

/* 語言下拉選單項目底線動畫 */
.language-dropdown-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 20px; /* 從文字開始的位置 (左側 padding) */
    right: 20px; /* 從文字結束的位置 (右側 padding) */;
    bottom: 0; /* 位於連結底部 */
    transition: width 0.3s ease;
}

.language-dropdown-menu a:hover::after {
    /* 這裡控制底線的長度 */
    width: calc(100% - 40px); /* 範例：100% 寬度減去左右 padding (20px + 20px) */
    /* 您也可以設定為固定像素值，例如：width: 80px; */
}

/* Hero Section 英雄區塊 */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/MainBanner.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px; /* 增加頂部間距，讓內容下移 */
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-section::before { /* 科技感粒子背景動態效果 */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 94, 0, 0.15) 0%, transparent 35%),
                radial-gradient(circle at bottom right, rgba(255, 94, 0, 0.15) 0%, transparent 35%);
    pointer-events: none;
    animation: pulseBg 10s infinite alternate;
}

@keyframes pulseBg {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.hero-section h1 {
    color: var(--text-light); /* 英雄區塊的標題用淺色 */
    font-size: 4.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 94, 0, 0.6);
    animation: slideInUp 1s ease-out;
}

.hero-section p {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
    opacity: 0.9;
    animation: slideInUp 1.2s ease-out;
}

/* 區塊通用樣式 */
section {
    padding: 80px 0; /* 預設上下內邊距 */
    position: relative;
    z-index: 1; /* 確保內容在背景動畫之上 */
}

.section-dark {
    background-color: var(--secondary-color);
    color: var(--text-light);
    /*border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);*/
}

.section-light {
    background-color: var(--bg-light); /* 稍淺的深色，提供區塊分隔感 */
    color: var(--text-light);
}

/* 痛點/功能網格 */
.pain-points-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 自動調整欄數 */
    gap: 40px;
    margin-top: 50px;
}

.pain-point-item, .feature-item {
    background-color: var(--bg-dark);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    position: relative;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pain-point-item:hover, .feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 94, 0, 0.3);
}

.pain-point-item i, .feature-item i { /* 圖示樣式 */
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 0 12px rgba(255, 94, 0, 0.5);
    transition: color 0.3s ease;
}

.custom-icon {
    height: 5em;
    width: 5em;
    fill: var(--primary-color); /* 對行內 SVG 使用 fill 來設定顏色 */
    display: block; /* 讓 margin: auto 生效 */
    margin: 0 auto 20px auto; /* 水平置中並設定底部間距 */
    transition: fill 0.3s ease, filter 0.3s ease;
    /* 增強光暈效果，使用多層 drop-shadow */
    filter: drop-shadow(0 0 1px rgba(255, 94, 0, 0.7)) drop-shadow(0 0 5px rgba(255, 94, 0, 0.5));
}

/* 當滑鼠懸停在父層項目上時，改變圖示顏色 */
.pain-point-item:hover .custom-icon,
.feature-item:hover .custom-icon {
    fill: #ff8c42; /* SVG 圖示的 hover 顏色 */
}

.pain-point-item:hover i, .feature-item:hover i {
    color: #ff8c42; /* hover 時圖示顏色變淺 */
}

.pain-point-item h3, .feature-item h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.6em;
    letter-spacing: 0.5px;
}

.pain-point-item p, .feature-item p {
    font-size: 1em;
    opacity: 0.8;
}

/* 區塊行動呼籲按鈕容器 */
.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Store Download Section */
.store-download-section {
    padding: 60px 0;
    text-align: center;
}

.store-download-section h3 {
    color: var(--text-light);
    font-size: 2em;
    margin-bottom: 15px;
}

.store-download-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    opacity: 0.8;
}

.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap; /* 在小螢幕上換行 */
}

.store-button img {
    height: 55px; /* 調整圖示高度 */
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-button:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}


/* 介面預覽 */
.interface-preview {
    padding-bottom: 120px; /* 預留更多空間 */
}
.interface-preview .interface-image {
    background-color: var(--secondary-color);
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 25px;
    margin-top: 50px;
    box-shadow: 0 0 40px rgba(255, 94, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 900px; /* 限制介面圖片最大寬度 */
    margin-left: auto;
    margin-right: auto;
}
                /* 這是讓影片自適應長寬比的關鍵 */
                .video-container {
                    position: relative;
                    width: 100%; /* 確保容器填滿父元素 .interface-image 的寬度 */
                    padding-bottom: 56.25%; /* 關鍵！這會創造一個 16:9 的長寬比 (9 / 16 = 0.5625) */
                    height: 0; /* 容器本身高度為0，由 padding-bottom 撐開 */
                }

                .video-container iframe {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                }

                /* 由於您有兩個影片區塊，這個樣式可以幫您在它們之間增加一些間距 */
                .interface-preview .interface-image:not(:last-of-type) {
                    margin-bottom: 30px;
                }
.interface-preview .interface-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.5s ease;
}

.interface-preview .interface-image:hover img {
    transform: scale(1.02); /* hover 時輕微放大效果 */
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color); /* 使用較粗的半透明橘色邊框 */
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* 確保圓角效果在內部元素上正常作用 */
}

.faq-item[open] {
    border-color: var(--primary-color); /* 展開時邊框變為實色 */
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.3); /* 展開時增加光暈效果 */
}

.faq-item summary {
    font-size: 1.3em;
    font-weight: 600;
    padding: 20px 50px 20px 20px; /* 增加右側 padding 給箭頭空間 */
    cursor: pointer;
    position: relative;
    list-style: none; /* 移除預設的箭頭 */
    color: var(--text-light);
    transition: color 0.3s ease;
}

/* 隱藏 Webkit/Blink 的預設箭頭 */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after { /* 自訂箭頭圖示 */
    content: '\f078'; /* Font Awesome 向下箭頭 */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-item[open] summary {
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg); /* 展開時旋轉箭頭 */
}

.faq-item p {
    padding: 0 25px 25px 25px; /* 在答案周圍增加內邊距 */
    opacity: 0.9; /* 讓文字稍微柔和，與其他內文一致 */
    line-height: 1.8; /* 確保行高與其他段落一致 */
}

/* 頁尾 */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 30px 0;
    font-size: 0.9em;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* 在小螢幕上換行 */
    gap: 20px; /* 項目之間的間距 */
}

.footer p {
    margin: 0; /* 移除段落的預設邊距 */
    opacity: 0.8;
}

.footer-social-links {
    display: flex;
    gap: 20px; /* 圖示之間的間距 */
}

.footer-social-links a {
    color: var(--text-light);
    font-size: 1.4em;
    opacity: 0.7;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.2); /* 增加懸停時的放大效果 */
}

/* 平板和較小的筆記型電腦 (最大寬度 992px) */
@media (max-width: 992px) {
        .main-nav.is-open {
        /* 
         * 設定最大高度。
         * 100vh 是指螢幕的總高度。
         * 70px 是您導覽列 header 的預估高度，請根據實際情況調整此數值。
         * 這樣可以確保選單不會遮擋到底部或超出畫面。
        */
        max-height: calc(100vh - 70px);

        /* 
         * 當內容超過最大高度時，自動顯示垂直捲軸。
        */
        overflow-y: auto;
        
        /* --- 隱藏捲軸但保留滾動功能 --- */
        /* 適用於 Firefox */
        scrollbar-width: none;
        /* 適用於 IE 和 Edge */
        -ms-overflow-style: none;
    }

    /* 適用於 Chrome, Safari 和 Opera 等 Webkit 核心的瀏覽器 */
    .main-nav.is-open::-webkit-scrollbar {
        display: none;
    }

    .container {
        padding: 0 15px; /* 縮小左右內邊距 */
    }

    /* 調整導覽列在平板上的邊距 */
    .navbar .container {
        padding: 0 25px;
    }

    h1 { font-size: 3em; }
    h2 { font-size: 2.2em; }
    p { font-size: 1em; } /* 內文稍小 */

    .navbar nav ul li {
        margin-left: 20px;
    }

    .hero-section {
        padding-top: 140px; /* 同步增加平板上的頂部間距 */
    }

    section {
        padding: 60px 0; /* 縮小區塊上下內邊距 */
    }

    .pain-points-grid, .features-grid {
        gap: 30px; /* 縮小網格間距 */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 適應更小寬度 */
    }

    .pain-point-item, .feature-item {
        padding: 25px; /* 縮小卡片內邊距 */
    }
    .pain-point-item i, .feature-item i {
        font-size: 3em; /* 縮小圖示 */
    }
    .pain-point-item h3, .feature-item h3 {
        font-size: 1.5em; /* 縮小卡片標題 */
    }

    .store-download-section h3 {
        font-size: 1.8em;
    }

    .store-button img {
        height: 50px;
    }


}

/* 大型手機和小型平板 (最大寬度 768px) */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between; /* 在手機上，讓 logo 和右側按鈕分散對齊 */
        padding: 0 20px; /* 在手機上使用更小的邊距 */
    }

    .nav-right-group {
        margin-left: 0; /* Reset margin for mobile */
        gap: 15px; /* Adjust gap for mobile between button and hamburger */
    }

    .main-nav {
        /* 在手機版，這個容器會變成彈出式選單 */
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 120px; /* 留出頂部空間 */
        transform: translateX(100%);
        transition: transform 0.35s ease-in-out;
        z-index: 1050; /* 確保在內容之上，但在漢堡按鈕之下 */
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .main-nav .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .main-nav .nav-links a,
    .language-trigger {
        font-size: 1.4em;
    }

    .hamburger-menu {
        display: block; /* 手機版顯示漢堡按鈕 */
    }

    /* 手機版語言選單樣式 */
    .language-dropdown {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .language-trigger {
        justify-content: center; /* 置中觸發器內容 */
    }

    .language-dropdown-menu {
        position: static; /* 在手機版變為靜態定位，內聯展開 */
        display: none; /* 預設還是隱藏 */
        background: none;
        border: none;
        box-shadow: none;
        width: 100%;
        padding: 10px 0 0 0;
        margin-top: 0;
        opacity: 1;
        transform: none;
        transition: none;
        text-align: center;
    }
    .hero-section h1 {
        font-size: 2.8em; /* 更小標題 */
    }
    .hero-section p {
        font-size: 1.1em; /* 更小內文 */
        max-width: 90%;
    }
    .btn-primary {
        padding: 10px 20px; /* 縮小按鈕 */
        font-size: 0.9em;
    }

    h2 {
        font-size: 2em; /* 更小區塊標題 */
        margin-bottom: 30px;
    }

    section {
        padding: 50px 0; /* 進一步縮小區塊內邊距 */
    }

    .pain-points-grid, .features-grid {
        grid-template-columns: 1fr; /* 痛點和功能卡片單欄顯示 */
        gap: 25px; /* 縮小間距 */
    }

    .pain-point-item, .feature-item {
        margin-bottom: 0; /* 移除額外底部間距，由gap控制 */
    }
    
    .store-download-section {
        padding: 50px 0;
    }

    .store-button img {
        height: 45px; /* 在手機上再小一點 */
    }


    .interface-preview .interface-image {
        padding: 15px; /* 縮小介面預覽框內邊距 */
    }
}

/* 小型手機 (最大寬度 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px; /* 極小左右內邊距 */
    }

    .navbar .logo a {
        font-size: 1.5em; /* 縮小 Logo */
    }
    .navbar nav ul li {
        margin: 0 8px 8px; /* 更緊湊導覽列 */
    }

    .hero-section h1 {
        font-size: 2.2em; /* 再次縮小標題 */
    }
    .hero-section p {
        font-size: 0.95em; /* 再次縮小內文 */
    }
    .hero-section .btn-primary {
         padding: 8px 18px; /* 縮小按鈕 */
    }

    h2 {
        font-size: 1.6em; /* 再次縮小區塊標題 */
    }

    section {
        padding: 40px 0; /* 更小區塊內邊距 */
    }

    .pain-point-item i, .feature-item i {
        font-size: 2.8em; /* 再次縮小圖示 */
    }
    .pain-point-item h3, .feature-item h3 {
        font-size: 1.3em; /* 再次縮小卡片標題 */
    }
    .pain-point-item p, .feature-item p {
        font-size: 0.9em; /* 再次縮小卡片內文 */
    }

    .footer {
        padding: 20px 0;
        font-size: 0.8em;
    }
}

/* Policy Page Content Styles */
.policy-content {
    max-width: 850px; /* A bit wider for readability of legal text */
    margin: 0 auto;
    padding: 2rem 0;
    text-align: left; /* Legal text should be left-aligned */
}

.policy-content h1,
.policy-content h2,
.policy-content h3 {
    text-align: left; /* Override global center alignment */
}

.policy-content h1 {
    font-size: 2.8em;
    color: var(--text-light); /* Use light text color for main title on this page */
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
}

.policy-content h2 {
    font-size: 2em;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    font-size: 1.5em;
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p,
.policy-content li {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.policy-content ul {
    list-style: disc; /* Use standard disc for unordered lists */
    padding-left: 25px; /* Indent list items */
    margin-bottom: 1.2rem;
}

.policy-content a {
    word-break: break-all; /* Break long links to prevent overflow */
}
