/* ===== 基礎重置 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans HK', 'Microsoft JhengHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== 通用樣式 ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #3498db;
}

/* ===== 跳至內容按鈕 ===== */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2c3e50;
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
}

/* ===== 網站頭部 ===== */
.site-header {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo背景效果 */
.header-with-logo-bg .header-container,
.contact-info-with-logo-bg > *:not(.logo-background) {
    position: relative;
    z-index: 20;
}

/* ===== 統一logo背景樣式 ===== */
.logo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000 !important; /* 強制純黑色 */
    z-index: 1;
    overflow: hidden;
}

.logo-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/company-logo.jpg');
    background-repeat: repeat;
    z-index: 2;
    pointer-events: none;
}

/* 頂部菜單：logo最小最密 - 簡化filter避免白色 */
.site-header .logo-background::before {
    background-size: 110px;
    opacity: 0.15;
    /* 簡化filter，只保留sepia和saturate */
    filter: 
        sepia(0.4)      /* 金色調 */
        saturate(1.2);  /* 輕微飽和 */
    /* 移除brightness和hue-rotate，避免白色 */
}

/* 聯絡資訊區域：logo中等大小 */
.contact-info .logo-background::before {
    background-size: 300px;
    opacity: 0.18;
    filter: 
        sepia(0.45)     /* 稍強的金色 */
        saturate(1.3);  /* 稍高飽和 */
}

/* 響應式調整 */
@media (max-width: 992px) {
    .site-header .logo-background::before {
        background-size: 90px;
        opacity: 0.14;
    }
    
    .contact-info .logo-background::before {
        background-size: 150px;
        opacity: 0.16;
    }

    .about-content {
        gap: 30px;
    }
    .about-media {
        margin-left: 0; /* 取消靠右對齊 */
        max-width: 100%; /* 寬度恢復為100% */
    }
}

@media (max-width: 768px) {
    .site-header .logo-background::before {
        background-size: 70px;
        opacity: 0.12;
    }
    
    .contact-info .logo-background::before {
        background-size: 120px;
        opacity: 0.15;
    }
    .about-content {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .stats-grid {
        padding: 25px 15px;
        gap: 15px;
    }
    .stat-item {
        min-width: 140px; /* 在手機上允許稍窄一些 */
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .about-text, .about-media {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-header .logo-background::before {
        background-size: 60px;
        opacity: 0.1;
    }
    
    .contact-info .logo-background::before {
        background-size: 100px;
        opacity: 0.13;
    }
}

/* ===== Logo和導航 ===== */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.tagline {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

/* 導航菜單 */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    padding: 5px 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* 中英文菜單樣式 */
.nav-link-bilingual {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.nav-link-chinese {
    font-size: 1rem;
    font-weight: 600;
}

.nav-link-english {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* ===== 社交媒體圖標 ===== */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 30px;
}

.social-icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* ===== 英雄區域 ===== */
.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(41, 128, 185, 0.85)), #2c3e50;
}

body.page-index .hero-section,
.hero-section.hero-index {
    background: url('../images/Back1.jpeg');
    background-size: cover;
    background-position: center;
}

body.page-audit .hero-section,
.hero-section.hero-audit {
    background: url('../images/Back2.jpeg');
    background-size: cover;
    background-position: center;
}

body.page-accounting .hero-section,
.hero-section.hero-accounting {
    background: url('../images/Back3.jpg');
    background-size: cover;
    background-position: center;
}

body.page-about .hero-section,
.hero-section.hero-about {
    background: url('../images/Back4.jpg');
    background-size: cover;
    background-position: center;
}

body.page-company-secretary .hero-section,
.hero-section.hero-company-secretary {
    background: url('../images/Back5.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* ===== 服務項目 ===== */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    color: #3498db;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== 關於我們 ===== */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px; /* 增加底部間距，與統計數據分開 */
    align-items: flex-start;
}

.about-text {
    flex: 2;
    min-width: 300px; /* 確保在移動設備上不會太窄 */
}

/* 影片區域：佔 1/3 寬度 */
.about-media {
    flex: 1; /* 比例為 1 */
    min-width: 250px; /* 最小寬度，避免在手機上太小 */
    max-width: 400px; /* 最大寬度，避免在桌面上過大 */
    margin-left: auto; /* 在桌面上讓影片靠右對齊 */
}

/* 影片容器樣式 */
.video-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.about-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    background-color: #000;
}

.video-caption {
    text-align: center;
    margin-top: 15px;
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.video-caption i {
    color: #3498db;
    margin-right: 6px;
    font-size: 1rem;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-grid {
    display: flex;
    justify-content: space-around; /* 平均分布三個項目 */
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.stat-item {
    flex: 1; /* 每個項目平均分配寬度 */
    min-width: 180px; /* 確保在平板時仍能三欄並排 */
    padding: 15px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #5a6c7d;
    font-weight: 500;
    line-height: 1.4;
}

/* ===== 內容頁面樣式 ===== */
.content-section {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin: 30px 0 15px;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.content-wrapper strong {
    color: #2c3e50;
}

/* 流程列表樣式 */
.process-list {
    list-style: none;
    padding-left: 0;
}

.process-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.process-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-list {
    counter-reset: step-counter;
}

/* 優勢特色 ===== */
.advantages-section {
    padding: 100px 0;
    background: white;
}

.advantages-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
}

.advantage-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.advantage-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.advantage-item h3::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
    font-size: 0.9rem;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* ===== 聯絡表單 ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 50%, #fff 50%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    position: relative;
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 400px;
    overflow: hidden;
}

.contact-info a {
    color: #fff !important;
    text-decoration: underline;
    position: relative;
    z-index: 15;
}

.contact-info a:hover {
    color: #3498db !important;
    text-decoration: none;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
}

/* 公司名稱與Logo并排樣式 */
.company-name-with-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-logo {
    height: 60px;
    width: auto;
    border-radius: 4px;
}

.contact-company-names {
    display: flex;
    flex-direction: column;
}

.contact-company-names .chinese-name {
    margin: 0 0 4px 0;
    font-size: 1.2rem;
    color: #fff;
}

.contact-company-names .english-name {
    margin: 0;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.contact-info address p {
    margin-bottom: 15px;
    font-style: normal;
    display: flex;
    align-items: flex-start;
}

.contact-info address i {
    width: 20px;
    margin-right: 10px;
    color: #fff;
}

/* 表單樣式 */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.submit-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* 3. 頁腳背景 */
.site-footer {
    background: #000000;
    color: white;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/company-logo.jpg');
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.15;
    filter: sepia(0.3);
    z-index: 1;
}

.site-footer > .container {
    position: relative;
    z-index: 2;
}

/* 響應式調整 */
@media (max-width: 768px) {
    .site-footer::before {
        background-size: 130px;
        opacity: 0.12;
    }
    
    .site-footer {
        padding: 50px 0 15px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text, .about-media {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-footer::before {
        background-size: 100px;
        opacity: 0.1;
    }
}

/* 頁腳內容樣式 */
.site-footer,
.site-footer h3,
.site-footer p,
.site-footer .footer-links a,
.site-footer .footer-links li {
    color: #ffffff;
}

.site-footer .footer-links a:hover {
    color: #3498db;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.site-footer .fa-check {
    color: #3498db;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

/* 頁腳區塊半透明背景 */
.footer-content .footer-section {
    border-radius: 8px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
}


/* ===== 強制所有內容頁面字體一致 ===== */
body.page-about .content-wrapper h2,
body.page-audit .content-wrapper h2,
body.page-company-secretary .content-wrapper h2 {
    font-size: 2rem !important;
}

body.page-about .content-wrapper h3,
body.page-audit .content-wrapper h3,
body.page-company-secretary .content-wrapper h3 {
    font-size: 1.5rem !important;
}

body.page-about .content-wrapper p,
body.page-about .content-wrapper li,
body.page-audit .content-wrapper p,
body.page-audit .content-wrapper li,
body.page-company-secretary .content-wrapper p,
body.page-company-secretary .content-wrapper li {
    font-size: 1.1rem !important;
}

/* ===== 響應式設計 ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
        z-index: 1001;
        position: relative;
    }
    
    .header-container {
        position: relative;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .social-icons {
        order: 2;
        margin-right: 15px;
        gap: 12px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo a {
        gap: 8px;
    }
    
    .main-nav {
        order: 4;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #2c3e50;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav.active ~ .social-icons {
        display: none;
    }

    .nav-menu li {
        margin: 0 0 30px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 10px 20px;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .company-name-with-logo {
        gap: 12px;
    }
    
    .contact-logo {
        height: 50px;
    }
    
    .contact-company-names .chinese-name {
        font-size: 1.1rem;
    }
    
    .contact-company-names .english-name {
        font-size: 0.9rem;
    }
    
    body.page-about .content-wrapper h2,
    body.page-audit .content-wrapper h2,
    body.page-company-secretary .content-wrapper h2 {
        font-size: 1.8rem !important;
    }
    
    body.page-about .content-wrapper h3,
    body.page-audit .content-wrapper h3,
    body.page-company-secretary .content-wrapper h3 {
        font-size: 1.3rem !important;
    }
    
    body.page-about .content-wrapper p,
    body.page-about .content-wrapper li,
    body.page-audit .content-wrapper p,
    body.page-audit .content-wrapper li,
    body.page-company-secretary .content-wrapper p,
    body.page-company-secretary .content-wrapper li {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 30px;
    }
    
    .service-card,
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }
    
    body.page-about .content-wrapper h2,
    body.page-audit .content-wrapper h2,
    body.page-company-secretary .content-wrapper h2 {
        font-size: 1.5rem !important;
    }
    
    body.page-about .content-wrapper h3,
    body.page-audit .content-wrapper h3,
    body.page-company-secretary .content-wrapper h3 {
        font-size: 1.2rem !important;
    }
    
    body.page-about .content-wrapper p,
    body.page-about .content-wrapper li,
    body.page-audit .content-wrapper p,
    body.page-audit .content-wrapper li,
    body.page-company-secretary .content-wrapper p,
    body.page-company-secretary .content-wrapper li {
        font-size: 0.95rem !important;
    }
}