* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333333;
    --accent-color: #666666;
    --text-light: #999999;
    --background-light: #f8f8f8;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Serif SC', serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Navigation Highlights */
.nav-highlight {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    position: relative;
    transition: all 0.3s ease !important;
}

.nav-highlight:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-1px) !important;
}

.nav-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-highlight:hover::after {
    background: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    text-align: center;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-avatar {
    margin-bottom: 2rem;
}

.hero-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--accent-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--accent-color);
}

.hero-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 0 auto 3rem auto;
    max-width: 600px;
    text-align: left;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    min-width: 280px;
}

.hero-btn.primary {
    background: var(--primary-color);
    color: var(--white);
}

.hero-btn.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-btn.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.btn-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.member-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--border-color);
}

.member-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-color);
    text-align: left;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.service-features .feature-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
}

.service-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-features p {
    font-size: 0.9rem;
    color: var(--accent-color);
    line-height: 1.5;
}

.service-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--accent-color);
    line-height: 1.5;
}

/* Cases Section */
.cases {
    padding: 80px 0;
    background-color: var(--white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.case-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    padding: 2rem;
}

.case-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.case-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: visible;
    flex: 1;
    max-width: 300px;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-details p {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0;
}

/* 微信卡片特殊布局 */
.wechat-card {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
}

.wechat-card .contact-qr {
    width: 80px;
    height: 80px;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* 微信二维码样式 */
.contact-qr {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
}

.contact-display {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 8px;
}

.phone-display {
    font-size: 1.8rem;
    opacity: 0.8;
}

.wechat-card .contact-qr {
    width: 80px;
    height: 80px;
}

.contact-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

/* 其他联系卡片保持原有布局 - 删除重复规则 */

/* 微信hover大图展示 */
.wechat-hover {
    text-align: center;
}

.large-qr {
    margin: 0 auto 1rem auto;
    width: 160px;
    height: 160px;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.large-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: none;
}

/* Hover信息卡片 */
.contact-hover-info {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    padding: 1.2rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-hover);
}

.contact-item:hover .contact-hover-info {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hover-content p {
    margin: 0 0 0.3rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.hover-content p:last-child {
    margin-bottom: 0;
}

.hover-content strong {
    color: var(--white);
}

/* 可点击联系方式 */
.contact-number, .contact-email {
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-number:hover, .contact-email:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    font-size: 0.9rem;
}

.icp-info {
    margin-top: 0.5rem;
}

.icp-info a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.icp-info a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.mobile-active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.mobile-active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.mobile-active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.mobile-active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.mobile-active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.mobile-active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.mobile-active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.mobile-active li:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .nav-menu .nav-highlight {
        background: var(--primary-color);
        color: var(--white) !important;
        font-weight: 600 !important;
        margin: 0.5rem 0;
    }
    
    .nav-menu .nav-highlight::after {
        display: none;
    }
    
    .nav-menu .nav-highlight:hover,
    .nav-menu .nav-highlight:active {
        background: var(--secondary-color);
        color: var(--white) !important;
        transform: translateY(-2px);
    }
    
    .nav-menu a:not(.nav-highlight):hover {
        background: var(--background-light);
        transform: translateY(-2px);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin: 1rem 0;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin: 1.5rem 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-item {
        min-width: auto;
        padding: 1.5rem 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-process {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .contact-item {
        max-width: 100%;
        width: 100%;
        padding: 2rem 1.5rem;
        min-height: auto;
        flex-direction: row;
        align-items: center;
    }
    
    .contact-details {
        text-align: left !important;
    }
    
    .contact-details h4,
    .contact-details p {
        text-align: left !important;
    }
    
    .wechat-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .contact-qr {
        position: static;
        transform: none;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .contact-display {
        position: static;
        transform: none;
        margin-left: auto;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
    }
    
    .phone-display {
        font-size: 1.5rem;
    }
    
    .wechat-card .contact-qr {
        width: 70px;
        height: 70px;
    }
    
    .large-qr {
        width: 140px;
        height: 140px;
    }
    
    .contact-hover-info {
        display: none;
    }
    
    .wechat-hover {
        background: var(--background-light);
        color: var(--secondary-color);
    }
    
    .wechat-hover .large-qr {
        background: var(--white);
    }
    
    .hover-content strong {
        color: var(--primary-color);
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-item {
        padding: 1.5rem;
    }
    
    .services-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-avatar img {
        width: 100px;
        height: 100px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card,
    .team-member {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-item,
    .wechat-card {
        padding: 1.5rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .hero-quote {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-top: 4px solid var(--primary-color);
        padding-top: 1rem;
        font-size: 0.9rem;
        margin: 1.5rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
}

/* New Styles for Enhanced Content */

/* Team Grid 2x2 Layout */
.team-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-card-main {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card-main:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background: var(--secondary-color);
}

/* Service Link Enhanced */
.service-link-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.service-link-enhanced:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.link-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-link-enhanced:hover .link-arrow {
    transform: translateX(3px);
}

/* Service Highlights */
.service-highlights {
    margin: 2rem 0;
    display: grid;
    gap: 0.8rem;
}

.highlight-item {
    background: var(--background-light);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(26, 26, 26, 0.05);
    transform: translateX(3px);
}

/* Target Audience */
.target-audience {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.audience-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.audience-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.audience-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

/* Knowledge System */
.knowledge-system {
    padding: 80px 0;
    background-color: var(--background-light);
}

.knowledge-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.knowledge-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.knowledge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.knowledge-image {
    height: 200px;
    overflow: hidden;
}

.knowledge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.knowledge-content {
    padding: 1.5rem;
}

.knowledge-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.knowledge-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

.knowledge-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.knowledge-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Course Modules */
.course-modules {
    margin-top: 2rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.modules-table {
    display: grid;
    gap: 1px;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}

.module-row {
    display: grid;
    grid-template-columns: 140px 1fr 1.5fr 1.2fr;
    background: var(--white);
}

.case-row {
    display: grid;
    grid-template-columns: 120px 200px 1.2fr 1fr;
    background: var(--white);
}

.module-header {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.module-id, .module-name, .module-content, .module-experience,
.student-profile, .core-challenge, .solution, .final-result {
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.module-id,
.student-profile {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

.module-name {
    font-weight: 600;
    color: var(--primary-color);
}

/* Student Cases - now uses modules-table styles */

/* Offer Showcase */
.offer-showcase {
    margin-bottom: 4rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offer-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.offer-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
}

/* Student Success Cloud */
.student-success-cloud {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cloud-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.offer-cloud-section, .feedback-cloud-section {
    margin-bottom: 3rem;
}

.cloud-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-cloud, .feedback-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 12px;
    min-height: 200px;
}

.offer-tag, .feedback-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.offer-tag {
    background: rgba(26, 26, 26, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(26, 26, 26, 0.2);
}

.feedback-tag {
    background: rgba(102, 102, 102, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(102, 102, 102, 0.2);
}

.offer-tag:hover, .feedback-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Tag sizes */
.offer-tag.large, .feedback-tag.large {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

.offer-tag.medium, .feedback-tag.medium {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
}

.offer-tag.small, .feedback-tag.small {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    font-weight: 400;
}

/* Special styling for large tags */
.offer-tag.large {
    background: var(--primary-color);
    color: var(--white);
}

.feedback-tag.large {
    background: var(--secondary-color);
    color: var(--white);
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background-color: var(--white);
}

.process-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-item {
    background: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.process-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.process-image {
    height: 120px;
    width: 160px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content {
    flex: 1;
    background: transparent;
    padding: 0;
}

.process-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.process-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 0;
}

/* Mobile Responsive Updates for New Content */
@media (max-width: 768px) {
    .nav-highlight {
        font-size: 0.9rem !important;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btn {
        min-width: 100%;
        max-width: 350px;
    }
    
    .btn-content {
        align-items: flex-start;
        text-align: left;
    }
    
    .team-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .services-overview {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        overflow-x: auto;
        border-radius: 8px;
        box-shadow: var(--shadow);
        margin: 2rem 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .modules-table,
    .cases-table {
        min-width: 800px;
        margin: 0;
    }
    
    .module-row,
    .case-row {
        grid-template-columns: 120px 1fr 1.5fr 1.2fr;
        min-width: 900px;
    }
    
    .case-row {
        grid-template-columns: 100px 160px 1.2fr 1fr;
        min-width: 800px;
    }
    
    .module-id, .module-name, .module-content, .module-experience,
    .student-profile, .core-challenge, .solution, .final-result {
        padding: 1rem 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .module-id,
    .student-profile {
        min-width: 80px;
    }
    
    .module-name {
        min-width: 180px;
    }
    
    .module-content, .module-experience,
    .core-challenge, .solution, .final-result {
        min-width: 200px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .process-showcase {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-image {
        width: 200px;
        height: 150px;
    }
    
    .knowledge-showcase {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .target-audience {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .audience-item {
        padding: 1.5rem;
    }
    
    .audience-item h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .audience-item p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
}

/* Detailed Pages Styles */

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.page-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent-color);
    max-width: 900px;
    margin: 0 auto;
}

/* Personal Training */
.personal-training {
    padding: 80px 0;
    background-color: var(--white);
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.target-detail {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--background-light);
    border-radius: 12px;
}

.detail-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.target-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.target-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
}

.card-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.card-icon {
    font-size: 1.5rem;
}

.card-content {
    padding: 2rem;
}

.pain-point, .goal {
    margin-bottom: 1.5rem;
}

.pain-point strong, .goal strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.pain-point p, .goal p {
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Core Philosophy */
.core-philosophy {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.philosophy-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.philosophy-steps {
    display: grid;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

/* Practical Training */
.practical-training {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--background-light);
    border-radius: 12px;
}

.training-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.training-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.training-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.training-item:hover {
    transform: translateY(-3px);
}

.training-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.training-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.training-item p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

/* Enterprise Training */
.enterprise-training {
    padding: 80px 0;
    background-color: var(--background-light);
}

.enterprise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.enterprise-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.enterprise-card:hover {
    transform: translateY(-5px);
}

.enterprise-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.enterprise-needs, .enterprise-value {
    margin-bottom: 1.5rem;
}

.enterprise-needs strong, .enterprise-value strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.8rem;
}

.enterprise-needs ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--secondary-color);
}

.enterprise-value p {
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Enterprise Process */
.enterprise-process {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.process-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.process-flow {
    display: grid;
    gap: 2rem;
}

.flow-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

.flow-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.flow-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.flow-content ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--secondary-color);
}

.flow-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Course Menu */
.course-menu {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--background-light);
    border-radius: 12px;
}

.menu-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.menu-categories {
    display: grid;
    gap: 2rem;
}

.menu-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.course-items {
    display: grid;
    gap: 1.5rem;
}

.course-item {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.course-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.course-item ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--secondary-color);
}

.course-item li {
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

/* Job Coaching Specific Styles */
.service-overview {
    padding: 80px 0;
    background-color: var(--background-light);
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Four Phases */
.four-phases {
    padding: 80px 0;
    background-color: var(--white);
}

.phase-container {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--background-light);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.phase-number {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.phase-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.phase-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.phase-description {
    margin-bottom: 2rem;
}

.phase-description p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.steps-grid .step-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.steps-grid .step-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.steps-grid .step-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.steps-grid .step-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.steps-grid .step-item p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.5;
    margin: 0;
}

.phase-outcome {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.phase-outcome p {
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Success Cases Detail */
.success-cases-detail {
    padding: 80px 0;
    background-color: var(--background-light);
}

.detailed-cases {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.case-detail {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.case-profile h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.case-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.case-result {
    text-align: right;
}

.result-badge {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.result-company {
    font-size: 1.1rem;
    font-weight: 500;
}

.case-content {
    padding: 2rem;
}

.case-challenge, .case-solution, .case-outcome {
    margin-bottom: 2rem;
}

.case-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.case-content p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

.case-solution ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--secondary-color);
}

.case-solution li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--background-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-content blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    font-style: italic;
    margin: 0 0 1.5rem 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
}

.author-result {
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Service Guarantee */
.service-guarantee {
    padding: 80px 0;
    background-color: var(--background-light);
}

.guarantee-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-3px);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guarantee-item p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-btn.primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Mobile Responsive for Detail Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .target-cards {
        grid-template-columns: 1fr;
    }
    
    .enterprise-cards {
        grid-template-columns: 1fr;
    }
    
    .training-items {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-items {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .case-result {
        text-align: left;
    }
}

/* Mobile Touch Optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-menu a,
    .contact-number,
    .contact-email,
    .mobile-menu-toggle {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .team-member:hover,
    .contact-item:hover {
        transform: none;
        box-shadow: var(--shadow);
    }
    
    /* Add touch-friendly active states */
    .service-card:active,
    .team-member:active,
    .contact-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .nav-menu a:active {
        background: var(--accent-color);
        color: var(--white);
    }
    
    /* Improve button touch feedback */
    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }
    
    /* Optimize scroll behavior */
    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Improve text selection */
    .hero-description,
    .service-card p,
    .team-member p {
        -webkit-user-select: text;
        user-select: text;
    }
    
    /* Prevent zoom on input focus */
    input, textarea, select {
        font-size: 16px;
    }
}

/* Mobile Typography and Spacing Fine-tuning */
@media (max-width: 768px) {
    /* Improve text readability */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Optimize heading spacing */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    /* Better paragraph spacing */
    p {
        margin-bottom: 1rem;
        line-height: 1.7;
    }
    
    /* Section spacing optimization */
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    /* Card content spacing */
    .service-card p,
    .team-member p,
    .case-item p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
    
    /* List item spacing */
    ul, ol {
        padding-left: 1.2rem;
        margin-bottom: 1rem;
    }
    
    li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }
    
    /* Quote styling for mobile */
    blockquote {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 1rem;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    /* Tighter spacing for very small screens */
    section {
        padding: 2.5rem 0;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    /* Smaller font adjustments */
    .service-card p,
    .team-member p,
    .case-item p {
        font-size: 0.9rem;
    }
    
    /* Compact list spacing */
    ul, ol {
        padding-left: 1rem;
    }
    
    li {
        margin-bottom: 0.3rem;
    }
}