        @font-face {
            font-family: 'MiSans';
            src: url('https://byte.8i5.net/font/misans/MiSans-Semibold.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "MiSans", system-ui, -apple-system, sans-serif;
        }

        /* 通用样式 */
        .oak-app-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .oak-app-btn {
            display: inline-block;
            background-color: #0071e3;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
            text-decoration: none;
        }

        .oak-app-btn:hover {
            background-color: #0077ed;
        }

        .error-message {
            color: #ff3b30;
            padding: 15px;
            background-color: #ffebe9;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
        }

/* 头部样式 */
.oak-app-header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px; /* 明确设置高度 */
}

.oak-app-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}

.oak-app-logo {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.oak-app-logo i {
    margin-right: 8px;
    color: #0071e3;
}

/* 菜单样式 */
.oak-app-nav {
    margin-left: 20px;
}

.oak-app-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.oak-app-menu li {
    margin-left: 24px;
}

.oak-app-menu a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.oak-app-menu a:hover {
    color: #0071e3;
}

/* 汉堡菜单按钮 - 默认隐藏 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1d1d1f;
    cursor: pointer;
}

.oak-app-search {
    flex: 0 1 400px;
    position: relative;
    margin-left: auto; /* 推到右侧 */
}

.oak-app-search form {
    width: 100%;
}

.oak-app-search input {
    width: 100%;
    padding: 8px 16px 8px 40px;
    border-radius: 20px;
    border: 1px solid #d2d2d7;
    background-color: #f5f5f7;
    font-size: 14px;
    transition: all 0.2s;
}

.oak-app-search input:focus {
    outline: none;
    background-color: white;
    border-color: #0071e3;
    box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.2);
}

.oak-app-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #86868b;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .oak-app-nav {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: white;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        margin-left: 0;
    }
    
    .oak-app-nav.active {
        max-height: 300px; /* 足够显示所有菜单项 */
    }
    
    .oak-app-menu {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .oak-app-menu li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
        margin-right: 10px;
    }
    
    .oak-app-search {
        flex: 1;
    }
}

        /* 主内容区 */
        .oak-app-main {
            margin: 10px;
        }

        /* 精选区域轮播 */
        .oak-app-featured {
            margin-bottom: 10px;
            position: relative;
        }

        .oak-app-section-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #1d1d1f;
        }

        /* 轮播容器 */
        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .carousel-slide {
            min-width: 100%;
                background: linear-gradient(135deg, #165DFF, #0E42D2);
            padding: 40px;
            color: white;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        /* 轮播控制按钮 */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.2s;
            color: #1d1d1f;
        }

        .carousel-control:hover {
            background-color: white;
        }

        .carousel-prev {
            left: 15px;
        }

        .carousel-next {
            right: 15px;
        }

        .oak-app-featured-logo {
            width: 120px;
            height: 120px;
            border-radius: 24px;
            background-color: white;
            padding: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .oak-app-featured-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 16px;
        }

        .oak-app-featured-info {
            flex: 1;
        }

        .oak-app-featured-name {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .oak-app-featured-developer {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 16px;
        }

        .oak-app-featured-rating {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }

        .oak-app-featured-rating .stars {
            color: #ffcc00;
            margin-right: 8px;
        }

        /* Bootstrap星级样式调整 */
        .stars i.bi-star {
            color: #d2d2d7;
        }

        .stars i.bi-star:not(:last-child) {
            margin-right: 2px;
        }

        .stars i.bi-star:first-child,
        .stars i.bi-star:nth-child(2),
        .stars i.bi-star:nth-child(3),
        .stars i.bi-star:nth-child(4),
        .stars i.bi-star:nth-child(5) {
            color: #ffcc00;
        }

        .stars.empty-stars i.bi-star {
            color: #d2d2d7 !important;
        }

        .oak-app-featured-description {
            font-size: 16px;
            margin-bottom: 24px;
            max-width: 800px;
        }

        .oak-app-featured-actions {
            display: flex;
            gap: 16px;
        }

        .oak-app-featured-actions .oak-app-btn {
            background-color: white;
            color: #0071e3;
            font-size: 16px;
            padding: 10px 24px;
        }

        .oak-app-featured-actions .oak-app-btn:hover {
            background-color: #f0f0f0;
        }

        /* 分类导航 */
        .oak-app-categories {
            margin-bottom: 40px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .oak-app-categories-list {
            display: flex;
            gap: 12px;
            list-style: none;
        }

        .oak-app-category-item {
            white-space: nowrap;
        }

        .oak-app-category-link {
            display: block;
            padding: 8px 16px;
            background-color: white;
            border-radius: 20px;
            text-decoration: none;
            color: #1d1d1f;
            font-weight: 500;
            border: 1px solid transparent;
            transition: all 0.2s;
        }

        .oak-app-category-link:hover,
        .oak-app-category-link.active {
            background-color: #1d1d1f;
            color: white;
        }

        /* 应用列表 */
        .oak-app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        @media (min-width: 1024px) {
            .oak-app-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .oak-app-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 767px) {
            .oak-app-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .oak-app-card {
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .oak-app-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .oak-app-card-image {
            padding: 15px;
            display: flex;
            justify-content: center;
            background-color: #f5f5f7;
        }

        .oak-app-card-image img {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            object-fit: contain;
        }

        .oak-app-card-content {
            padding: 12px;
        }

        .oak-app-card-name {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .oak-app-card-developer {
            font-size: 13px;
            color: #6e6e73;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .oak-app-card-rating {
            display: flex;
            align-items: center;
            font-size: 13px;
        }

        .oak-app-card-rating .stars {
            color: #ffcc00;
            margin-right: 3px;
            font-size: 12px;
        }

        .oak-app-card-age {
            display: inline-block;
            font-size: 11px;
            color: #c5c5c5;
            border: 1px solid #d2d2d7;
            border-radius: 4px;
            padding: 0 3px;
            margin-left: 6px;
        }

        /* 分页样式 */
        .oak-app-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
            margin-bottom: 60px;
        }

        .oak-app-page-item {
            list-style: none;
        }

        .oak-app-page-link {
            display: inline-block;
            padding: 8px 12px;
            border-radius: 20px;
            background-color: white;
            color: #1d1d1f;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .oak-app-page-link:hover {
            background-color: #f0f0f0;
        }

        .oak-app-page-item.active .oak-app-page-link {
            background-color: #0071e3;
            color: white;
        }

        .oak-app-page-item.disabled .oak-app-page-link {
            color: #86868b;
            background-color: #f5f5f7;
            cursor: not-allowed;
        }

        .oak-app-pagination-info {
            margin: 0 15px;
            font-size: 14px;
            color: #6e6e73;
        }

        /* ============================== */
        /* 应用详情弹窗样式                */
        /* ============================== */
        /* 弹窗遮罩层：全屏覆盖 */
        .oak-app-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .oak-app-modal.active {
            opacity: 1;
            visibility: visible;
        }

        /* 弹窗内容容器：手机端从菜单下方开始全屏显示 */
        .oak-app-modal-content {
            position: fixed;
            top: 60px; /* 紧贴菜单下方（菜单高度60px） */
            left: 0;
            width: 100vw;
            height: calc(100vh - 60px); /* 减去菜单高度，实现全屏效果 */
            background-color: white;
            border-radius: 0;
            overflow: hidden;
            transform: translateY(20px);
            transition: transform 0.3s;
            z-index: 102; /* 确保在遮罩层之上 */
        }

        .oak-app-modal.active .oak-app-modal-content {
            transform: translateY(0);
        }

        /* 弹窗头部：固定在弹窗顶部 */
        .oak-app-modal-header {
            position: sticky;
            top: 0;
            width: 100%;
            padding: 0px 20px;
            background-color: white;
            border-bottom: 1px solid #e2e2e7;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 103; /* 确保在弹窗内容之上 */
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .oak-app-modal-title {
            font-size: 18px;
            font-weight: 600;
        }

        /* 弹窗关闭按钮 */
        .oak-app-modal-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #6e6e73;
            text-decoration: none;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 104;
        }

        /* 手机端关闭按钮优化 */
        @media (max-width: 767px) {
            .oak-app-modal-close {
                font-size: 28px;
                width: 50px;
                height: 50px;
            }
        }

        /* 弹窗内容区：可滚动 */
        .oak-app-modal-body {
            position: absolute;
            top: 60px; /* 弹窗头部高度 */
            left: 0;
            width: 100%;
            height: calc(100% - 60px); /* 减去弹窗头部高度 */
            padding: 16px 20px;
            overflow-y: auto;
            overflow-x: hidden;
        }

        /* 应用详情布局 */
        .oak-app-app-detail {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            text-align: center;
        }

        .oak-app-detail-logo {
            width: 80px;
            height: 80px;
            border-radius: 16px;
        }

        .oak-app-detail-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 16px;
        }

        .oak-app-detail-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .oak-app-detail-developer {
            color: #0071e3;
            margin-bottom: 10px;
            text-decoration: none;
            font-size: 14px;
        }

        .oak-app-detail-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 16px;
            font-size: 13px;
        }

        .oak-app-detail-rating {
            display: flex;
            align-items: center;
        }

        .oak-app-detail-rating .stars {
            color: #ffcc00;
            margin-right: 6px;
            font-size: 13px;
        }

        .oak-app-detail-age {
            font-size: 12px;
            color: #6e6e73;
            border: 1px solid #d2d2d7;
            border-radius: 4px;
            padding: 0 4px;
        }

        .oak-app-detail-size {
            color: #6e6e73;
            font-size: 13px;
        }

        .oak-app-detail-actions {
            margin-bottom: 16px;
        }

        .oak-app-detail-actions .oak-app-btn {
            font-size: 14px;
            padding: 10px 24px;
        }

        .oak-app-detail-description {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 24px;
            text-align: left;
        }

        .oak-app-detail-screenshots {
            margin-bottom: 24px;
        }

        .oak-app-screenshots-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        /* 截图网格 */
        .oak-app-screenshots-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .oak-app-screenshot-item {
            border-radius: 8px;
            overflow: hidden;
        }

        .oak-app-screenshot-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        .oak-app-detail-version {
            color: #6e6e73;
            font-size: 13px;
        }

        /* 电脑端弹窗样式：居中且与顶部菜单保持距离 */
        @media (min-width: 768px) {
            .oak-app-modal-content {
                position: fixed;
                top: 80px;          /* 距离顶部菜单80px */
                left: 50%;
                transform: translateX(-50%);
                width: 90%;
                max-width: 900px;
                max-height: calc(100vh - 100px); /* 底部留20px空隙 */
                border-radius: 20px;
                margin: 0;
            }

            .oak-app-modal.active .oak-app-modal-content {
                transform: translateX(-50%);
            }

            /* 电脑端弹窗头部 */
            .oak-app-modal-header {
                padding: 10px;
            }

            .oak-app-modal-title {
                font-size: 20px;
            }

            /* 电脑端内容区 */
            .oak-app-modal-body {
                position: relative;
                top: 0;
                width: 100%;
                height: auto;
                max-height: calc(100vh - 210px);
                padding: 20px;
            }

            .oak-app-app-detail {
                flex-direction: row;
                align-items: center;
                gap: 30px;
                text-align: left;
            }

            .oak-app-detail-logo {
                width: 100px;
                height: 100px;
            }

            .oak-app-detail-name {
                font-size: 28px;
            }

            .oak-app-screenshots-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 16px;
            }
        }

        /* 手机端其他适配 */
        @media (max-width: 767px) {
            .oak-app-search {
                flex: 0 1 200px;
            }

            .carousel-slide {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }

            .oak-app-featured-actions {
                justify-content: center;
            }

            .oak-app-featured-name {
                font-size: 24px;
            }

            .oak-app-featured-description {
                font-size: 14px;
            }

            .oak-app-pagination {
                gap: 5px;
            }

            .oak-app-page-link {
                padding: 6px 10px;
                font-size: 13px;
            }

            .oak-app-pagination-info {
                display: none;
            }
        }
        
/*关于页面*/
.oak-app-about-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 主要内容区 */
        .oak-app-about-main {
            padding: 40px 0;
        }

        .oak-app-about-section {
            background-color: white;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .oak-app-about-section-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #1d1d1f;
            padding-bottom: 10px;
            border-bottom: 1px solid #e2e2e7;
        }

        .oak-app-about-section-content {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .oak-app-about-section-content p {
            margin-bottom: 16px;
        }

        .oak-app-about-feature-list {
            list-style: none;
        }

        .oak-app-about-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .oak-app-about-feature-item i {
            color: #0071e3;
            margin-right: 12px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .oak-app-about-highlight {
            color: #0071e3;
            font-weight: 500;
        }

        .oak-app-about-warning-box {
            background-color: #fff7e6;
            border-left: 4px solid #ff9500;
            padding: 16px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .oak-app-about-warning-box .oak-app-about-title {
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .oak-app-about-warning-box .oak-app-about-title i {
            margin-right: 8px;
            color: #ff9500;
        }

        .oak-app-about-safe-box {
            background-color: #e6f4ea;
            border-left: 4px solid #34c759;
            padding: 16px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .oak-app-about-safe-box .oak-app-about-title {
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .oak-app-about-safe-box .oak-app-about-title i {
            margin-right: 8px;
            color: #34c759;
        }

        /* 底部样式 */
        .oak-app-about-footer {
            background-color: white;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding: 30px 0;
            margin-top: 40px;
        }

        .oak-app-about-footer-content {
            text-align: center;
            font-size: 14px;
            color: #6e6e73;
        }

        .oak-app-about-back-link {
            display: inline-block;
            margin-top: 20px;
            color: #0071e3;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.2s;
        }

        .oak-app-about-back-link:hover {
            opacity: 0.8;
        }

        .oak-app-about-back-link i {
            margin-right: 6px;
        }

        @media (max-width: 767px) {
            .oak-app-about-main {
                padding: 20px 0;
            }
            
            .oak-app-about-section {
                padding: 20px;
            }
            
            .oak-app-about-section-title {
                font-size: 20px;
            }
            
            .oak-app-about-section-content {
                font-size: 15px;
            }
        }
        
/*提交页面*/
.oak-app-submit-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .oak-app-submit-page-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
            color: #1d1d1f;
        }

        .oak-app-submit-card {
            background-color: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .oak-app-submit-form-group {
            margin-bottom: 24px;
        }

        .oak-app-submit-form-label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            color: #1d1d1f;
        }

        .oak-app-submit-form-hint {
            font-size: 13px;
            color: #6e6e73;
            margin-top: 4px;
            display: block;
        }

        .oak-app-submit-form-control {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #d2d2d7;
            background-color: white;
            font-size: 16px;
            transition: all 0.2s;
        }

        .oak-app-submit-form-control:focus {
            outline: none;
            border-color: #0071e3;
            box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.2);
        }

        textarea.oak-app-submit-form-control {
            min-height: 120px;
            resize: vertical;
            line-height: 1.5;
        }

        .oak-app-submit-form-select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #d2d2d7;
            background-color: white;
            font-size: 16px;
            transition: all 0.2s;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }

        .oak-app-submit-form-select:focus {
            outline: none;
            border-color: #0071e3;
            box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.2);
        }

        .oak-app-submit-btn {
            display: inline-block;
            background-color: #0071e3;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
            text-align: center;
            width: 100%;
        }

        .oak-app-submit-btn:hover {
            background-color: #0077ed;
        }

        .oak-app-submit-alert {
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 24px;
            font-size: 16px;
        }

        .oak-app-submit-alert-success {
            background-color: #e6f4ea;
            color: #329143;
            border: 1px solid #c8e6c9;
        }

        .oak-app-submit-alert-error {
            background-color: #ffebe9;
            color: #d0021b;
            border: 1px solid #ffcdD2;
        }

        .oak-app-submit-instructions {
            background-color: #f0f7ff;
            border-left: 4px solid #0071e3;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .oak-app-submit-instructions-title {
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .oak-app-submit-instructions-title i {
            margin-right: 8px;
            color: #0071e3;
        }

        .oak-app-submit-instructions-content {
            font-size: 15px;
            color: #1d1d1f;
        }

        .oak-app-submit-instructions-content p {
            margin-bottom: 8px;
        }

        .oak-app-submit-instructions-content ul {
            margin-left: 20px;
            margin-bottom: 8px;
        }

        @media (max-width: 767px) {
            .oak-app-submit-page-title {
                font-size: 24px;
                margin-bottom: 20px;
            }
            
            .oak-app-submit-card {
                padding: 20px;
            }
            
            .oak-app-submit-form-group {
                margin-bottom: 20px;
            }
        }