/* 招商加盟页面样式 */

/* 通用样式 */
.franchise-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* 主标题样式 */
.frc-main-title {
    text-align: center;
    margin-bottom: 60px;
}

.frc-main-title h1 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 167, 142, 0.1);
}

.frc-title-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #00a78e, #4ecdc4);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.frc-title-line:before {
    content: '';
    position: absolute;
    width: 200px;
    height: 1px;
    background-color: rgba(0, 167, 142, 0.2);
    top: 1.5px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
    .frc-main-title {
        margin-bottom: 40px;
    }
    
    .frc-main-title h1 {
        font-size: 32px;
    }
}

.frc-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.frc-section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.frc-section-header h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #00a78e;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.frc-section-header p {
    font-size: 16px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
}

/* 页面各部分通用样式 */
.frc-section {
    margin-bottom: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.frc-section-light {
    background-color: #f8f9fa;
}

/* 行业背景与市场前景 */
.frc-industry-section {
    margin-bottom: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.frc-industry-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.frc-industry-text {
    flex: 1;
    min-width: 300px;
}

.frc-industry-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    font-size: 16px;
}

.frc-industry-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    flex: 1;
    min-width: 300px;
}

.frc-stat-item {
    text-align: center;
    padding: 30px 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 167, 142, 0.1);
}

.frc-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 167, 142, 0.1);
    border-color: rgba(0, 167, 142, 0.3);
}

.frc-stat-number {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1;
}

.frc-stat-number span {
    font-size: 18px;
    margin-left: 5px;
}

.frc-stat-item p {
    font-size: 15px;
    color: #999;
}

/* 品牌与产品优势 */
.frc-advantage-section {
    margin-bottom: 80px;
}

.frc-advantage-block {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.frc-advantage-block:hover {
    transform: translateY(-5px);
}

.frc-advantage-title {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    color: #fff;
}

.frc-advantage-title i {
    font-size: 28px;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.frc-advantage-title h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

.frc-advantage-content {
    padding: 35px;
}

.frc-advantage-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    font-size: 16px;
}

.frc-brand-features, .frc-product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.frc-feature-item, .frc-category-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background-color: #f8f9fa;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.frc-feature-item:hover, .frc-category-item:hover {
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 167, 142, 0.2);
}

.frc-feature-item i, .frc-category-item i {
    margin-right: 12px;
    font-size: 18px;
}

/* 加盟支持 */
.frc-support-section {
    margin-bottom: 80px;
    padding: 50px 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.frc-support-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.frc-support-row {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.frc-support-row:last-child {
    margin-bottom: 0;
}

.frc-support-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    flex: 1;
    max-width: 230px;
}

.frc-support-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 167, 142, 0.15);
    border-color: rgba(0, 167, 142, 0.2);
}

.frc-support-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #e7f6f4;
    margin: 0 auto 25px;
    color: #00a78e;
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 167, 142, 0.15);
}

.frc-support-item:hover .frc-support-icon {
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    color: #fff;
    transform: scale(1.1);
}

.frc-support-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #222;
    font-weight: 600;
}

.frc-support-item p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

@media screen and (max-width: 1200px) {
    .frc-support-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .frc-support-item {
        max-width: 280px;
    }
}

@media screen and (max-width: 992px) {
    .frc-support-item {
        max-width: 45%;
        flex: 0 0 45%;
    }
}

@media screen and (max-width: 768px) {
    .frc-support-section {
        padding: 40px 20px;
    }
    
    .frc-support-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .frc-support-item {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* 加盟政策 */
.frc-policy-section {
    margin-bottom: 80px;
}

.frc-policy-tabs {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.frc-tab-headers {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    background-color: #f8f9fa;
}

.frc-tab-header {
    flex: 1;
    text-align: center;
    padding: 20px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.frc-tab-header:hover {
    color: #00a78e;
    background-color: #f0f8f7;
}

.frc-tab-header.active {
    color: #00a78e;
    background-color: #fff;
    font-weight: 600;
    border-bottom: 3px solid #00a78e;
}

.frc-tab-content {
    display: none;
    padding: 40px 30px;
}

.frc-tab-content.active {
    display: block;
}

/* 加盟级别 */
.level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.level-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 167, 142, 0.15);
    border-color: rgba(0, 167, 142, 0.2);
}

.level-card.popular {
    border: 2px solid #00a78e;
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 167, 142, 0.2);
}

.level-card.popular:hover {
    transform: translateY(-10px) scale(1.03);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    color: #fff;
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 167, 142, 0.2);
    z-index: 2;
}

.level-header {
    background-color: #f8f9fa;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.level-header h3 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #222;
    font-weight: 600;
}

.level-price {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.level-body {
    padding: 30px 25px;
    background-color: #fff;
}

.level-body p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

.level-value {
    margin-top: 20px;
    font-size: 15px;
    color: #777;
    text-align: center;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.level-card.special .level-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.level-card.special .level-header h3 {
    color: #fff;
}

/* 设备配置 */
.equipment-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.equipment-item {
    padding: 20px;
    border-radius: 12px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.equipment-item:hover {
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 167, 142, 0.2);
    transform: translateY(-5px);
}

.equipment-name {
    font-weight: 600;
    color: #222;
    font-size: 16px;
}

.equipment-price {
    color: #00a78e;
    font-weight: 600;
    font-size: 18px;
}

.equipment-level {
    font-size: 14px;
    color: #777;
    padding-top: 5px;
    border-top: 1px dashed #eee;
}

/* 升级政策 */
.upgrade-info {
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 12px;
    line-height: 1.8;
    border: 1px solid #f0f0f0;
}

.upgrade-contact {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}

.upgrade-contact p {
    margin-bottom: 20px;
    color: #444;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 167, 142, 0.2);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 167, 142, 0.3);
}

.contact-btn i {
    margin-right: 12px;
    font-size: 18px;
}

/* 加盟流程 */
.frc-process-section {
    margin-bottom: 80px;
    padding: 50px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.frc-process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.frc-process-steps-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.frc-process-steps-row:first-child {
    margin-bottom: 70px;
    padding: 0;
}

.frc-process-steps-row:last-child {
    padding: 0 15%;
}

.frc-step-item {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    flex: 1;
}

.frc-process-steps-row:first-child .frc-step-item {
    max-width: 220px;
    margin: 0 5px;
}

.frc-process-steps-row:last-child .frc-step-item {
    max-width: 280px;
    margin: 0 10px;
}

.frc-process-steps-row:first-child .frc-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #00a78e, #4ecdc4);
    transform: scaleX(1);
}

.frc-process-steps-row:last-child .frc-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -35px;
    width: 45px;
    height: 2px;
    background: linear-gradient(to right, #00a78e, #4ecdc4);
    transform: scaleX(1);
}

.frc-step-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: #e7f6f4;
    color: #00a78e;
    font-size: 30px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 167, 142, 0.15);
}

.frc-step-number {
    position: absolute;
    top: -10px;
    right: 15px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 167, 142, 0.2);
}

.frc-step-item:hover .frc-step-icon {
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 167, 142, 0.25);
}

.frc-step-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.frc-step-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    max-width: 200px;
    margin: 0 auto;
}

.frc-connector-down {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #00a78e, #4ecdc4);
}

@media screen and (max-width: 1200px) {
    .frc-process-steps-row:first-child,
    .frc-process-steps-row:last-child {
        padding: 0;
    }
    
    .frc-process-steps-row {
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 30px;
        justify-content: center;
    }
    
    .frc-step-item {
        width: calc(50% - 15px);
        max-width: none !important;
        margin: 0 !important;
        flex: none;
    }
    
    .frc-process-steps-row:first-child .frc-step-item:not(:last-child)::after,
    .frc-process-steps-row:last-child .frc-step-item:not(:last-child)::after {
        display: none;
    }
    
    .frc-connector-down {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .frc-process-steps-row {
        gap: 20px;
    }
    
    .frc-step-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 26px;
    }
    
    .frc-step-number {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 14px;
    }
    
    .frc-step-item h3 {
        font-size: 16px;
    }
    
    .frc-step-item p {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .frc-process-section {
        padding: 40px 20px;
    }
    
    .frc-process-steps-row {
        margin-bottom: 0;
    }
    
    .frc-step-item {
        width: 100%;
        margin-bottom: 30px !important;
    }
    
    .frc-step-item:last-child {
        margin-bottom: 0 !important;
    }
}

/* 联系我们 */
.contact-section {
    margin-bottom: 80px;
}

.contact-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #00a78e, #4ecdc4);
}

.contact-hotline, .contact-direct {
    text-align: center;
    margin-bottom: 20px;
}

.contact-label {
    font-size: 20px;
    color: #555;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.contact-phone {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 167, 142, 0.1);
}

.contact-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 167, 142, 0.3), transparent);
    margin: 15px 0 25px;
}

.contact-action {
    display: inline-block;
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 167, 142, 0.25);
    margin-top: 15px;
}

.contact-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 167, 142, 0.35);
    color: #fff;
}

.contact-action i {
    margin-right: 8px;
}

@media screen and (max-width: 768px) {
    .contact-simple {
        padding: 40px 20px;
    }
    
    .contact-label {
        font-size: 18px;
    }
    
    .contact-phone {
        font-size: 28px;
    }
    
    .contact-action {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* 响应式调整 */
@media screen and (max-width: 992px) {
    .frc-industry-stats {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .level-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .equipment-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* 产品展示 */
.frc-products-showcase {
    margin-bottom: 80px;
}

.frc-products-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.frc-product-item {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.frc-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 167, 142, 0.15);
}

.frc-product-item.reverse {
    flex-direction: row-reverse;
}

.frc-product-image {
    max-height: 380px;
    overflow: hidden;
    position: relative;
}

.frc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.frc-product-item:hover .frc-product-image img {
    transform: scale(1.03);
}

.frc-product-info {
    flex: 0 0 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.frc-product-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.frc-product-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background: linear-gradient(to right, #00a78e, #4ecdc4);
}

.frc-product-features {
    margin-bottom: 20px;
}

.frc-product-features p {
    margin-bottom: 13px;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.frc-product-features i {
    color: #00a78e;
    margin-right: 8px;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.frc-product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.frc-product-benefits span {
    padding: 8px 15px;
    background-color: #e7f6f4;
    color: #00a78e;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.frc-product-benefits.plus span {
    padding: 8px 15px;
    font-size: 13px;
    width: 100%;
    margin-bottom: 8px;
}

.frc-product-item:hover .frc-product-benefits span {
    background: linear-gradient(135deg, #00a78e 0%, #4ecdc4 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 167, 142, 0.15);
}

.frc-product-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-style: italic;
    font-size: 16px;
    color: #888;
    font-weight: 500;
}

@media screen and (max-width: 992px) {
    .frc-product-item, .frc-product-item.reverse {
        flex-direction: column;
    }
    
    .frc-product-image {
        flex: 0 0 auto;
        height: 250px;
    }
    
    .frc-product-info {
        padding: 25px;
    }
    
    .frc-product-info h3 {
        font-size: 22px;
    }
    
    .frc-product-features p {
        font-size: 14px;
    }
    
    .frc-product-tag {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        text-align: right;
    }
}

@media screen and (max-width: 768px) {
    .franchise-container {
        padding: 40px 15px;
    }
    
    .frc-section-header {
        margin-bottom: 40px;
    }
    
    .frc-section-header h2 {
        font-size: 26px;
    }
    
    .industry-content,
    .advantage-content,
    .timeline-content {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .industry-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .timeline-content {
        padding: 25px 20px;
    }
    
    .process-timeline:before {
        left: 25px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .level-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-list {
        grid-template-columns: 1fr;
    }
    
    .tab-header {
        padding: 15px 10px;
        font-size: 15px;
    }
    
    .tab-content {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
} 