/* 主内容区样式 */

/* ==== 全局部分 ==== */
.site-main {
    padding-top: var(--header-height);
}

.section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section:nth-child(odd) {
    background-color: var(--color-paper);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==== 导航栏 ==== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(249, 246, 240, 0.95);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: transform 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-primary);
}

/* 导航菜单 */
.main-nav {
    height: 100%;
}

.nav-list {
    display: flex;
    height: 100%;
    list-style: none;
}

.nav-item {
    height: 100%;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 50%;
    left: 25%;
}

/* 汉堡菜单 */
.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 菜单展开时汉堡变X */
.menu-open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==== 公司简介部分 ==== */
.section-company-intro {
    background-color: transparent;
    position: relative;
}

.company-intro-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: transparent;
    width: 100%;
}

.intro-quote {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.intro-description, .intro-philosophy {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-description {
    text-align: left;
    font-family: var(--font-serif);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 0;
}

/* ==== 关于我们部分 ==== */
.about-us-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.about-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.about-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.about-description {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
}

/* ==== 产品服务部分 ==== */
.services-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    flex: 0 0 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-paper);
    padding: 20px;
    color: var(--color-primary);
}

.service-icon svg {
    width: 80px;
    height: 80px;
}

.service-text {
    flex: 1;
    padding: 30px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.service-description {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style-type: none;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* ==== 主讲老师部分 ==== */
.teacher-profile {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.teacher-avatar-placeholder {
    flex: 0 0 250px;
    text-align: center;
}

.avatar-frame {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--color-border);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-paper);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.avatar-text {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-primary);
}

.teacher-info {
    flex: 1;
    min-width: 300px;
}

.teacher-name {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.teacher-title {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-text-light);
    margin-left: 15px;
}

.teacher-credentials {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--color-secondary);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.teacher-description p {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ==== 联系方式部分 ==== */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-text {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-methods {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.8;
}

.contact-methods p {
    margin-bottom: 15px;
}

.contact-qrcode {
    flex: 0 0 250px;
    text-align: center;
}

.qrcode-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.qrcode-img {
    max-width: 200px;
    border: 1px solid var(--color-border);
}

.qrcode-text {
    margin-top: 15px;
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--color-text-light);
}

/* ==== 页脚部分 ==== */
.site-footer {
    background-color: var(--color-paper);
    padding: 30px 0;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.copyright, .site-url, .footer-icp {
    flex: 1;
    min-width: 250px;
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--color-text-light);
}

/* ==== 响应式调整 ==== */
@media (max-width: 992px) {
    .service-card {
        flex-direction: column;
    }
    
    .service-icon {
        flex: 0 0 auto;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }
    
    .site-header {
        background-color: rgba(249, 246, 240, 0.98);
    }
    
    .section {
        padding: 80px 0;
    }
    
    /* 移动端导航菜单 */
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--color-bg);
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: var(--shadow-md);
    }
    
    .menu-open .main-nav {
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }
    
    .nav-list {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }
    
    .nav-item {
        height: auto;
    }
    
    .nav-link {
        height: auto;
        padding: 15px 20px;
        justify-content: center;
    }
    
    .nav-link::after {
        bottom: 10px;
    }
    
    /* 移动端内容调整 */
    .intro-quote {
        font-size: 28px;
    }
    
    .intro-description {
        padding: 0 15px;
    }
    
    .about-us-content {
        flex-direction: column;
    }
    
    .about-card {
        min-width: 100%;
    }
    
    .teacher-profile {
        padding: 30px;
    }
    
    .teacher-avatar-placeholder, .contact-qrcode {
        flex: 1 0 100%;
        margin-bottom: 30px;
    }
    
    .teacher-name {
        font-size: 30px;
    }
    
    .teacher-title {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    /* 修改页脚在移动端的显示方式 */
    .footer-content {
        justify-content: center;
    }
    
    .site-url, .footer-icp {
        display: none;
    }
    
    .copyright {
        min-width: 100%;
    }
    
    /* 调整内容容器 */
    .section-container {
        width: 100%;
        padding: 20px 5px;
    }
    
    /* 增加内容区域宽度 */
    .company-intro-content {
        max-width: 100%;
        padding: 0 5px;
    }
    
    /* 减少内容区域的内边距 */
    .intro-text {
        padding: 15px 10px;
        border: none;
    }
    
    /* 调整小标题样式 */
    .content-subtitle {
        width: 100%;
        padding: 8px 5px;
        margin: 20px 0 5px;
    }
    
    /* 调整章节内容 */
    .chapter-content {
        padding-left: 5px;
        margin-left: 3px;
    }
    
    /* 调整章节内容中的文字 */
    .intro-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* 调整折叠切换图标的位置 */
    .subtitle-toggle {
        min-width: 20px;
    }
    
    /* 调整折叠内容区域 */
    .collapsible-content {
        padding: 0 5px;
    }
    
    /* 移除不必要的边框和装饰 */
    .chapter-content {
        border-left-width: 0;
    }
    
    /* 调整折叠按钮 */
    .collapse-toggle {
        margin: 20px auto 10px;
    }
    
    /* 优化引言样式 */
    .intro-quote {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    /* 调整时间线宽度 */
    .timeline-content {
        width: calc(100% - 60px);
        padding: 15px;
    }
}

/* 超小屏幕设备优化 */
@media (max-width: 480px) {
    /* 进一步减少内边距 */
    .intro-text {
        padding: 10px 5px;
    }
    
    /* 调整内容字体大小 */
    .intro-description {
        font-size: 15px;
    }
    
    /* 调整小标题字体大小 */
    .content-subtitle {
        font-size: 18px;
    }
    
    /* 完全移除装饰性元素 */
    .content-subtitle::after {
        display: none;
    }
    
    /* 优化章节内容空间 */
    .chapter-content.active {
        margin: 10px 0;
    }
}

/* 修改可折叠内容区域样式 */
.collapsible-content-wrapper {
    position: relative;
    margin: 20px 0;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-out;
    opacity: 0;
    background-color: transparent !important;
    margin-top: 20px;
}

.collapsible-content.active {
    max-height: 50000px; /* 设置足够大的值确保内容显示 */
    opacity: 1;
    background-color: transparent !important;
}

.collapse-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 15px;
    margin: 20px auto;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 1px solid var(--color-secondary);
    border-radius: 50px;
    width: 120px;
    height: 120px;
}

.collapse-toggle:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.toggle-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.toggle-text {
    font-size: 16px;
    color: var(--color-primary);
    font-family: var(--font-serif);
    text-align: center;
}

.collapse-toggle-bottom {
    margin-top: 30px;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 30px;
    flex-direction: row;
}

.collapse-toggle-bottom .toggle-icon {
    width: 24px;
    height: 24px;
    margin: 0 8px 0 0;
}

/* 在移动端调整折叠控件的尺寸 */
@media (max-width: 768px) {
    .toggle-icon {
        width: 36px;
        height: 36px;
    }
    
    .toggle-text {
        font-size: 14px;
    }
}

/* 为不同板块设置不同的延迟，创造错落感 */
.section-about-us.visible {
    transition-delay: 0.2s;
}

.section-services.visible {
    transition-delay: 0.3s;
}

.section-teacher.visible {
    transition-delay: 0.4s;
}

.section-contact.visible {
    transition-delay: 0.5s;
}

/* 图片轮播样式 */
.testimonial-slideshow {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    background-color: #fff;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: auto;
}

.slide {
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slide.active {
    display: block;
}

.slide-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    max-height: 500px;
}

/* 确保在各种设备上正确显示 */
@media screen and (min-width: 992px) {
    .testimonial-slideshow {
        width: 100%;
        max-width: 800px;
    }
    
    .slide-image {
        max-height: 600px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-slideshow {
        width: 100%;
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .testimonial-slideshow {
        width: 100%;
        max-width: 450px;
    }
    
    .slide-image {
        max-height: 400px;
    }
}

/* 前后按钮 */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* 指示点样式 */
.dots-container {
    text-align: center;
    padding: 10px 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--color-border);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: var(--color-accent);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .prev, .next {
        padding: 10px;
        font-size: 14px;
    }
    
    .dot {
        height: 8px;
        width: 8px;
    }
}

/* 项老师生平经历部分 */
.section-teacher-journey {
    background-color: var(--color-paper);
    position: relative;
}

.journey-content {
    max-width: 900px;
    margin: 0 auto;
}

.journey-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 20px;
    color: var(--color-text);
    font-family: var(--font-serif);
}

.journey-timeline {
    position: relative;
    padding: 30px 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(178, 34, 34, 0.2),
        rgba(178, 34, 34, 0.6),
        rgba(178, 34, 34, 0.2));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(178, 34, 34, 0.1);
}

.timeline-svg {
    width: 30px;
    height: 30px;
    color: var(--color-primary);
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-content h3 {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
}

.timeline-content p {
    font-family: var(--font-serif);
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--color-text);
}

.journey-conclusion {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    font-style: italic;
    color: var(--color-text);
    font-family: var(--font-serif);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .journey-timeline::before {
        left: 30px;
    }
    
    .timeline-item, 
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        margin-left: 30px;
    }
    
    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
    }
}

/* 小标题折叠效果样式 */
.content-subtitle {
    width: calc(100% - 10px);
    margin: 30px 0 10px;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-left: 3px solid var(--color-secondary);
    border-radius: 0 4px 4px 0;
    position: relative;
    clear: both;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.content-subtitle:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.content-subtitle::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        var(--color-secondary), 
        rgba(139, 69, 19, 0.3), 
        rgba(139, 69, 19, 0.1));
}

.subtitle-toggle {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.subtitle-toggle.active {
    transform: rotate(45deg);
}

/* 章节内容区域样式 */
.chapter-content {
    background-color: transparent !important;
    display: none;
    padding-left: 15px;
    border-left: 1px dashed rgba(139, 69, 19, 0.3);
    margin-left: 5px;
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.chapter-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
    background-color: transparent !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 小标题后的第一段样式 */
.content-subtitle + .intro-description,
.content-subtitle + p {
    margin-top: 20px;
}

/* 移除背景 */
.ink-splash-bg {
    display: none;
}

/* 调整正文容器布局 */
.section-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 10px;
}

/* 古风国学留言按钮 */
.ancient-style-button {
    display: inline-block;
    position: relative;
    padding: 12px 30px;
    margin: 30px auto;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-text);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-secondary);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ancient-style-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/ink-texture.png');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.ancient-style-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, 
        var(--color-secondary), 
        rgba(139, 69, 19, 0.3), 
        rgba(139, 69, 19, 0.1));
    transition: width 0.3s ease;
}

.ancient-style-button:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.ancient-style-button:hover::before {
    opacity: 0.12;
}

.ancient-style-button:hover::after {
    width: 100%;
}

.leave-message-icon {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.leave-message-container {
    text-align: center;
    margin: 30px 0;
}

/* 留言按钮响应式调整 */
@media (max-width: 768px) {
    .ancient-style-button {
        padding: 10px 20px;
        font-size: 18px;
        width: 80%;
    }
} 