
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}


.tp11-nav-container {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tp11-nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.tp11-nav-brand {
    flex: 0 0 auto;
}

.tp11-brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.tp11-brand-text {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

.tp11-nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tp11-menu-list {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.tp11-menu-item {
    position: relative;
}

.tp11-menu-link {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.tp11-menu-link:hover {
    color: #3498db;
}

.tp11-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.tp11-menu-link:hover::after {
    width: 100%;
}

.tp11-nav-cta {
    flex: 0 0 auto;
    margin-left: 20px;
}

.tp11-cta-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3498db;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tp11-cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.tp11-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.tp11-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .tp11-nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .tp11-nav-menu.tp11-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .tp11-menu-list {
        flex-direction: column;
        gap: 16px;
    }
    
    .tp11-menu-link {
        font-size: 12px;
        padding: 12px 0;
    }
    
    .tp11-nav-cta {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .tp11-mobile-menu-toggle {
        display: block;
    }
}


.tp11-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.tp11-hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tp11-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.tp11-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tp11-hero-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.tp11-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tp11-btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tp11-btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.tp11-btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #3498db;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tp11-btn-secondary:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}


.tp11-services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.tp11-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tp11-section-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tp11-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.tp11-section-description {
    font-size: 14px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tp11-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tp11-service-card {
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.tp11-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.tp11-service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.tp11-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.tp11-service-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}


.tp11-cases-section {
    padding: 80px 20px;
    background-color: #f5f7fa;
}

.tp11-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tp11-case-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tp11-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.tp11-case-image {
    height: 200px;
    background-color: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.tp11-case-content {
    padding: 24px;
}

.tp11-case-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.tp11-case-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tp11-case-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #3498db;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tp11-case-link:hover {
    padding-left: 8px;
}


.tp11-news-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.tp11-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tp11-news-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.tp11-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.tp11-news-meta {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 11px;
    color: #999;
}

.tp11-news-date {
    margin-right: 16px;
}

.tp11-news-category {
    padding: 4px 12px;
    background-color: #3498db;
    color: white;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tp11-news-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tp11-news-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tp11-news-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #3498db;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tp11-news-link:hover {
    padding-left: 8px;
}


.tp11-contact-section {
    padding: 80px 20px;
    background-color: #f5f7fa;
}

.tp11-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tp11-contact-info {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tp11-contact-form {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tp11-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.tp11-contact-icon {
    font-size: 20px;
    margin-right: 16px;
    color: #3498db;
    flex-shrink: 0;
}

.tp11-contact-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.tp11-form-group {
    margin-bottom: 20px;
}

.tp11-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tp11-form-input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tp11-form-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.tp11-form-textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.tp11-form-textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.tp11-form-submit {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tp11-form-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .tp11-hero-title {
        font-size: 28px;
    }
    
    .tp11-hero-subtitle {
        font-size: 14px;
    }
    
    .tp11-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .tp11-section-title {
        font-size: 24px;
    }
    
    .tp11-contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .tp11-nav-wrapper {
        padding: 0 16px;
    }
    
    .tp11-hero-section {
        padding: 60px 16px;
    }
    
    .tp11-services-section,
    .tp11-cases-section,
    .tp11-news-section,
    .tp11-contact-section {
        padding: 60px 16px;
    }
    
    .tp11-services-grid,
    .tp11-cases-grid,
    .tp11-news-grid {
        grid-template-columns: 1fr;
    }
    
    .tp11-service-card,
    .tp11-contact-info,
    .tp11-contact-form {
        padding: 24px;
    }
}



.tp11-btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tp11-btn-primary:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.tp11-btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border: 2px solid #333;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tp11-btn-secondary:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}


section {
    padding: 80px 0;
}

.tp11-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tp11-section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tp11-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.tp11-section-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}


.tp11-hero-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tp11-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.tp11-w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23ddd" stroke-width="0.5"/></svg>');
    opacity: 0.3;
}

.tp11-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tp11-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.tp11-hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.tp11-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.tp11-services-section {
    background-color: #fff;
}

.tp11-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tp11-service-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.tp11-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #333;
}

.tp11-service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tp11-service-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tp11-service-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tp11-service-link:hover {
    color: #666;
    transform: translateX(5px);
}

.tp11-service-link::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.tp11-service-link:hover::after {
    margin-left: 10px;
}


.tp11-cases-section {
    background-color: #f9f9f9;
}

.tp11-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tp11-case-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tp11-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tp11-case-image {
    width: 100%;
    height: 200px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.tp11-case-content {
    padding: 25px;
}

.tp11-case-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tp11-case-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}


.tp11-news-section {
    background-color: #fff;
}

.tp11-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tp11-news-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tp11-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tp11-news-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    padding: 15px 20px 0;
}

.tp11-news-content {
    padding: 0 20px 20px;
}

.tp11-news-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tp11-news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}


.tp11-contact-section {
    background-color: #333;
    color: #fff;
    text-align: center;
}

.tp11-contact-section .tp11-section-title {
    color: #fff;
}

.tp11-contact-section .tp11-section-description {
    color: #ddd;
}


@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .tp11-hero-title {
        font-size: 36px;
    }

    .tp11-hero-subtitle {
        font-size: 16px;
    }

    .tp11-section-title {
        font-size: 28px;
    }

    .tp11-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .tp11-services-grid,
    .tp11-cases-grid,
    .tp11-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }

    .tp11-hero-title {
        font-size: 28px;
    }

    .tp11-hero-subtitle {
        font-size: 14px;
    }

    .tp11-section-title {
        font-size: 24px;
    }

    .tp11-main-container {
        padding: 0 15px;
    }

    .tp11-service-card,
    .tp11-case-card,
    .tp11-news-card {
        padding: 30px 20px;
    }
}


.tp11-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.tp11-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
}

.tp11-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tp11-footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}


.tp11-footer-brand-section {
    grid-column: 1;
}

.tp11-footer-brand .tp11-footer-brand-link {
    display: inline-block;
    margin-bottom: 25px;
    text-decoration: none;
}

.tp11-footer-brand .tp11-footer-brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tp11-footer-brand-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 300px;
}

.tp11-footer-social {
    display: flex;
    gap: 12px;
}

.tp11-footer-social .tp11-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tp11-footer-social .tp11-social-link:hover {
    background-color: #4361ee;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.tp11-footer-social .tp11-social-icon {
    font-size: 16px;
}


.tp11-footer-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tp11-footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #4361ee;
}


.tp11-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp11-footer-links li {
    margin-bottom: 15px;
}

.tp11-footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.tp11-footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #4361ee;
    transition: all 0.3s ease;
    opacity: 0;
}

.tp11-footer-link:hover {
    color: #ffffff;
    padding-left: 20px;
}

.tp11-footer-link:hover::before {
    opacity: 1;
}


.tp11-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp11-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.tp11-contact-icon {
    font-size: 16px;
    color: #4361ee;
    margin-top: 2px;
    flex-shrink: 0;
}

.tp11-contact-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    flex: 1;
}


.tp11-footer-friends-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tp11-friends-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tp11-friends-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.tp11-footer-friends-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tp11-footer-friends-list.tp11-expanded {
    max-height: 500px;
}

.tp11-footer-friend-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}

.tp11-footer-friend-link:hover {
    color: #4361ee;
}


.tp11-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.tp11-footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tp11-footer-copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-align: center;
}

.tp11-footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tp11-legal-link {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tp11-legal-link:hover {
    color: #4361ee;
}


@media (max-width: 992px) {
    .tp11-footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .tp11-footer-brand-section {
        grid-column: 1 / -1;
        text-align: center;
    }

    .tp11-footer-brand-description {
        margin-left: auto;
        margin-right: auto;
    }

    .tp11-footer-social {
        justify-content: center;
    }

    .tp11-footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .tp11-footer-links {
        text-align: center;
    }

    .tp11-footer-link {
        padding-left: 0;
    }

    .tp11-footer-link::before {
        display: none;
    }

    .tp11-footer-link:hover {
        padding-left: 0;
    }

    .tp11-footer-contact-item {
        justify-content: center;
        text-align: center;
    }

    .tp11-footer-friends-header {
        justify-content: center;
        gap: 15px;
    }

    .tp11-footer-friends-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .tp11-footer {
        padding: 60px 0 30px;
    }

    .tp11-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tp11-footer-friends-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp11-footer-bottom-content {
        gap: 15px;
    }

    .tp11-footer-legal-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .tp11-footer {
        padding: 50px 0 20px;
    }

    .tp11-footer-top {
        gap: 30px;
    }

    .tp11-footer-brand .tp11-footer-brand-text {
        font-size: 18px;
    }

    .tp11-footer-brand-description {
        font-size: 13px;
    }

    .tp11-footer-section-title {
        font-size: 13px;
    }

    .tp11-footer-link,
    .tp11-contact-text,
    .tp11-footer-friend-link {
        font-size: 12px;
    }

    .tp11-footer-friends-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tp11-footer-copyright p {
        font-size: 11px;
    }

    .tp11-legal-link {
        font-size: 10px;
    }
}



.tp11-banner-section {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.tp11-banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tp11-banner-subtitle {
    font-size: 18px;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto;
}


.tp11-services-section {
    background-color: #fff;
}

.tp11-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.tp11-service-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tp11-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tp11-service-header {
    background-color: #333;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.tp11-service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tp11-service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tp11-service-content {
    padding: 30px;
}

.tp11-service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tp11-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.tp11-service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.tp11-service-feature::before {
    content: '✓';
    color: #333;
    font-weight: 600;
}


.tp11-process-section {
    background-color: #f9f9f9;
}

.tp11-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tp11-process-step {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tp11-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tp11-process-step::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.tp11-process-step:nth-child(1)::before {
    content: '1';
}

.tp11-process-step:nth-child(2)::before {
    content: '2';
}

.tp11-process-step:nth-child(3)::before {
    content: '3';
}

.tp11-process-step:nth-child(4)::before {
    content: '4';
}

.tp11-process-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-process-step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


.tp11-faq-section {
    background-color: #fff;
}

.tp11-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.tp11-faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tp11-faq-question {
    background-color: #f9f9f9;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.tp11-faq-question:hover {
    background-color: #f0f0f0;
}

.tp11-faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.tp11-faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tp11-faq-item.tp11-active .tp11-faq-icon {
    transform: rotate(180deg);
}

.tp11-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.tp11-faq-item.tp11-active .tp11-faq-answer {
    padding: 20px;
    max-height: 200px;
}

.tp11-faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


.tp11-contact-section {
    background-color: #333;
    color: #fff;
    text-align: center;
}

.tp11-contact-section .tp11-section-title {
    color: #fff;
}

.tp11-contact-section .tp11-section-description {
    color: #ddd;
}


@media (max-width: 768px) {
    .tp11-banner-title {
        font-size: 36px;
    }

    .tp11-banner-subtitle {
        font-size: 16px;
    }

    .tp11-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .tp11-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tp11-banner-title {
        font-size: 28px;
    }

    .tp11-banner-subtitle {
        font-size: 14px;
    }

    .tp11-services-grid {
        grid-template-columns: 1fr;
    }

    .tp11-process-steps {
        grid-template-columns: 1fr;
    }

    .tp11-service-header,
    .tp11-service-content {
        padding: 20px;
    }

    .tp11-process-step {
        padding: 30px 20px;
    }
}



.tp11-banner-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 60px 0;
    text-align: center;
}

.tp11-banner-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.tp11-banner-subtitle {
    font-size: 16px;
    color: #666;
}


.tp11-news-section {
    background-color: #fff;
}

.tp11-news-container {
    display: flex;
    gap: 40px;
}

.tp11-news-sidebar {
    flex: 0 0 300px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
}

.tp11-news-sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.tp11-news-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp11-news-category-item {
    margin-bottom: 15px;
}

.tp11-news-category-link {
    display: block;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 4px;
}

.tp11-news-category-link:hover {
    background-color: #e8e8e8;
    color: #333;
    transform: translateX(5px);
}

.tp11-news-category-link.tp11-active {
    background-color: #333;
    color: #fff;
}

.tp11-news-content {
    flex: 1;
}

.tp11-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp11-news-item {
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.tp11-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tp11-news-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tp11-news-item-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-news-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tp11-news-item-title a:hover {
    color: #555;
}

.tp11-news-item-date {
    font-size: 14px;
    color: #999;
}

.tp11-news-item-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tp11-news-item-link {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tp11-news-item-link:hover {
    color: #555;
    transform: translateX(5px);
}

.tp11-news-item-link::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.tp11-news-item-link:hover::after {
    margin-left: 10px;
}


.tp11-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.tp11-pagination-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #f9f9f9;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tp11-pagination-link:hover {
    background-color: #e8e8e8;
    transform: translateY(-2px);
}

.tp11-pagination-link.tp11-active {
    background-color: #333;
    color: #fff;
}

.tp11-pagination-link.tp11-disabled {
    background-color: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.tp11-pagination-link.tp11-disabled:hover {
    background-color: #f0f0f0;
    transform: none;
}


@media (max-width: 768px) {
    .tp11-banner-title {
        font-size: 28px;
    }

    .tp11-news-container {
        flex-direction: column;
    }

    .tp11-news-sidebar {
        flex: 1;
        order: 2;
    }

    .tp11-news-content {
        order: 1;
    }

    .tp11-news-item {
        padding: 30px 20px;
    }

    .tp11-news-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tp11-pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .tp11-banner-title {
        font-size: 24px;
    }

    .tp11-news-sidebar {
        padding: 20px 15px;
    }

    .tp11-news-item {
        padding: 20px 15px;
    }

    .tp11-news-item-title {
        font-size: 18px;
    }

    .tp11-pagination-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}


.tp11-nav-container {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tp11-nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.tp11-nav-brand .tp11-brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.tp11-nav-brand .tp11-brand-text {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 1px;
}

.tp11-nav-menu {
    display: flex;
    align-items: center;
}

.tp11-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.tp11-menu-item .tp11-menu-link {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.tp11-menu-item .tp11-menu-link:hover {
    color: #333;
}

.tp11-menu-item .tp11-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

.tp11-menu-item .tp11-menu-link:hover::after {
    width: 100%;
}

.tp11-nav-cta .tp11-cta-button {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background-color: #333;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.tp11-nav-cta .tp11-cta-button:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.tp11-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.tp11-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .tp11-nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .tp11-nav-menu.tp11-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .tp11-menu-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tp11-menu-item .tp11-menu-link {
        font-size: 12px;
        padding: 10px 0;
    }

    .tp11-nav-cta {
        display: none;
    }

    .tp11-mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .tp11-nav-wrapper {
        padding: 0 15px;
    }

    .tp11-nav-brand .tp11-brand-text {
        font-size: 16px;
    }

    .tp11-menu-item .tp11-menu-link {
        font-size: 11px;
    }
}



.tp11-banner-section {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.tp11-banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tp11-banner-subtitle {
    font-size: 18px;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto;
}


.tp11-intro-section {
    background-color: #fff;
}

.tp11-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tp11-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.tp11-intro-text p {
    margin-bottom: 20px;
}

.tp11-intro-image {
    background-color: #f0f0f0;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}


.tp11-timeline-section {
    background-color: #f9f9f9;
}

.tp11-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.tp11-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #333;
}

.tp11-timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.tp11-timeline-content {
    position: relative;
    width: 45%;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tp11-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tp11-timeline-item:nth-child(odd) .tp11-timeline-content {
    left: 0;
}

.tp11-timeline-item:nth-child(even) .tp11-timeline-content {
    left: 55%;
}

.tp11-timeline-date {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tp11-timeline-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.tp11-timeline-dot {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #333;
}


.tp11-team-section {
    background-color: #fff;
}

.tp11-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tp11-team-member {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.tp11-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tp11-team-avatar {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.tp11-team-info {
    padding: 20px;
}

.tp11-team-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.tp11-team-position {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.tp11-team-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


.tp11-culture-section {
    background-color: #f9f9f9;
}

.tp11-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tp11-culture-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.tp11-culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #333;
}

.tp11-culture-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tp11-culture-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-culture-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


.tp11-stats-section {
    background-color: #333;
    color: #fff;
    text-align: center;
}

.tp11-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.tp11-stat-item {
    padding: 20px;
}

.tp11-stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tp11-stat-label {
    font-size: 16px;
    color: #ddd;
}


.tp11-contact-section {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}



.tp11-banner-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 60px 0;
    text-align: center;
}

.tp11-banner-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.tp11-banner-subtitle {
    font-size: 16px;
    color: #666;
}


.tp11-form-section {
    background-color: #fff;
}

.tp11-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tp11-form-group {
    margin-bottom: 30px;
}

.tp11-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.tp11-form-row .tp11-form-group {
    flex: 1;
    margin-bottom: 0;
}

.tp11-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tp11-form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tp11-form-input:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

.tp11-form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    resize: vertical;
    min-height: 200px;
    transition: all 0.3s ease;
}

.tp11-form-textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

.tp11-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp11-form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.tp11-form-checkbox label {
    font-size: 14px;
    color: #666;
}

.tp11-form-actions {
    text-align: center;
    margin-top: 40px;
}


.tp11-contact-info-section {
    background-color: #f9f9f9;
}

.tp11-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.tp11-contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tp11-contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tp11-contact-info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tp11-contact-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-contact-info-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .tp11-banner-title {
        font-size: 28px;
    }

    .tp11-form-container {
        padding: 30px 20px;
    }

    .tp11-form-row {
        flex-direction: column;
        gap: 30px;
    }

    .tp11-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .tp11-contact-info-card {
        padding: 30px 20px;
    }

    .tp11-job-item {
        padding: 30px 20px;
    }

    .tp11-job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tp11-job-meta {
        gap: 20px;
    }

    .tp11-benefits-grid {
        grid-template-columns: 1fr;
    }

    .tp11-benefit-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .tp11-banner-title {
        font-size: 24px;
    }

    .tp11-form-container {
        padding: 20px 15px;
    }

    .tp11-form-input,
    .tp11-form-textarea {
        padding: 12px;
        font-size: 14px;
    }

    .tp11-btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tp11-contact-info-card {
        padding: 20px 15px;
    }

    .tp11-contact-info-icon {
        font-size: 36px;
    }

    .tp11-contact-info-title {
        font-size: 18px;
    }

    .tp11-job-item {
        padding: 20px 15px;
    }

    .tp11-job-title {
        font-size: 18px;
    }

    .tp11-job-salary {
        font-size: 14px;
    }

    .tp11-benefit-card {
        padding: 20px 15px;
    }

    .tp11-benefit-icon {
        font-size: 36px;
    }

    .tp11-benefit-title {
        font-size: 18px;
    }
}



.tp11-jobs-section {
    background-color: #fff;
}

.tp11-jobs-list {
    max-width: 800px;
    margin: 0 auto;
}

.tp11-job-item {
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tp11-job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tp11-job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tp11-job-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.tp11-job-salary {
    font-size: 16px;
    font-weight: 600;
    color: #e74c3c;
}

.tp11-job-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tp11-job-meta-item {
    font-size: 14px;
    color: #666;
}

.tp11-job-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tp11-job-description h4,
.tp11-job-requirements h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tp11-job-description ul,
.tp11-job-requirements ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.tp11-job-description li,
.tp11-job-requirements li {
    margin-bottom: 5px;
}

.tp11-job-requirements {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tp11-job-actions {
    text-align: right;
}


.tp11-benefits-section {
    background-color: #f9f9f9;
}

.tp11-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.tp11-benefit-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tp11-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tp11-benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tp11-benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-benefit-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


.tp11-join-section {
    background-color: #333;
    color: #fff;
    text-align: center;
}

.tp11-join-section .tp11-section-title {
    color: #fff;
}

.tp11-join-section .tp11-section-description {
    color: #ddd;
}

.tp11-join-content {
    max-width: 800px;
    margin: 0 auto;
}

.tp11-contact-section .tp11-section-subtitle {
    color: #ddd;
}

.tp11-contact-section .tp11-section-title {
    color: #fff;
}

.tp11-contact-section .tp11-section-description {
    color: #ddd;
}

.tp11-contact-section .tp11-btn-primary {
    margin-top: 40px;
}


@media (max-width: 768px) {
    .tp11-banner-title {
        font-size: 36px;
    }

    .tp11-banner-subtitle {
        font-size: 16px;
    }

    .tp11-section-title {
        font-size: 28px;
    }

    .tp11-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tp11-timeline::before {
        left: 20px;
    }

    .tp11-timeline-content {
        width: calc(100% - 60px);
        left: 60px !important;
    }

    .tp11-timeline-dot {
        left: 20px;
    }

    .tp11-team-grid,
    .tp11-culture-grid,
    .tp11-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tp11-banner-title {
        font-size: 28px;
    }

    .tp11-banner-subtitle {
        font-size: 14px;
    }

    .tp11-section-title {
        font-size: 24px;
    }

    .tp11-main-container {
        padding: 0 15px;
    }

    .tp11-intro-image {
        height: 300px;
    }

    .tp11-timeline-content {
        padding: 20px;
    }

    .tp11-team-grid,
    .tp11-culture-grid,
    .tp11-stats-grid {
        grid-template-columns: 1fr;
    }

    .tp11-stat-number {
        font-size: 36px;
    }
}



.tp11-cases-section {
    background-color: #fff;
}

.tp11-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.tp11-case-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tp11-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tp11-case-image {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.tp11-case-content {
    padding: 30px;
}

.tp11-case-category {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tp11-case-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-case-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tp11-case-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 25px;
}


.tp11-case-detail-section {
    background-color: #f9f9f9;
}

.tp11-case-detail-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tp11-case-detail-header {
    margin-bottom: 40px;
}

.tp11-case-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.tp11-case-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

.tp11-case-detail-image {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.tp11-case-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.tp11-case-detail-text p {
    margin-bottom: 20px;
}


.tp11-related-cases-section {
    background-color: #fff;
}


.tp11-filter-section {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.tp11-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.tp11-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tp11-filter-btn {
    padding: 8px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tp11-filter-btn.tp11-active,
.tp11-filter-btn:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}


@media (max-width: 768px) {
    .tp11-cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .tp11-case-detail-content {
        padding: 40px;
    }

    .tp11-case-detail-title {
        font-size: 24px;
    }

    .tp11-case-detail-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .tp11-cases-grid {
        grid-template-columns: 1fr;
    }

    .tp11-case-content {
        padding: 20px;
    }

    .tp11-case-detail-content {
        padding: 20px;
    }

    .tp11-case-detail-title {
        font-size: 20px;
    }

    .tp11-case-detail-image {
        height: 200px;
    }

    .tp11-filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tp11-filter-btn {
        width: 100%;
        max-width: 200px;
    }
}



.tp11-contact-info-section {
    background-color: #fff;
}

.tp11-contact-info-container {
    display: flex;
    gap: 40px;
}

.tp11-contact-info-left {
    flex: 1;
}

.tp11-contact-info-right {
    flex: 1;
}

.tp11-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tp11-contact-info-card {
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.tp11-contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tp11-contact-info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tp11-contact-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-contact-info-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


.tp11-contact-form-section {
    background-color: #f9f9f9;
}

.tp11-contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tp11-form-group {
    margin-bottom: 30px;
}

.tp11-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.tp11-form-row .tp11-form-group {
    flex: 1;
    margin-bottom: 0;
}

.tp11-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tp11-form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tp11-form-input:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

.tp11-form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    resize: vertical;
    min-height: 200px;
    transition: all 0.3s ease;
}

.tp11-form-textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

.tp11-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp11-form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.tp11-form-checkbox label {
    font-size: 14px;
    color: #666;
}

.tp11-form-actions {
    text-align: center;
    margin-top: 40px;
}


.tp11-map-section {
    background-color: #fff;
}

.tp11-map-container {
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999;
}


@media (max-width: 768px) {
    .tp11-contact-info-container {
        flex-direction: column;
    }

    .tp11-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .tp11-contact-info-card {
        padding: 30px 20px;
    }

    .tp11-form-row {
        flex-direction: column;
        gap: 30px;
    }

    .tp11-contact-form-container {
        padding: 30px 20px;
    }

    .tp11-map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .tp11-contact-info-card {
        padding: 20px 15px;
    }

    .tp11-contact-info-icon {
        font-size: 36px;
    }

    .tp11-contact-info-title {
        font-size: 18px;
    }

    .tp11-contact-form-container {
        padding: 20px 15px;
    }

    .tp11-form-input,
    .tp11-form-textarea {
        padding: 12px;
        font-size: 14px;
    }

    .tp11-btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tp11-map-container {
        height: 300px;
        font-size: 18px;
    }
}



.tp11-values-section {
    background-color: #fff;
}

.tp11-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.tp11-value-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tp11-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tp11-value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tp11-value-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-value-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


.tp11-mission-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.tp11-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.tp11-w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23ddd" stroke-width="0.5"/></svg>');
    opacity: 0.3;
}

.tp11-mission-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tp11-mission-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.tp11-mission-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}


.tp11-vision-section {
    background-color: #333;
    color: #fff;
    text-align: center;
}

.tp11-vision-section .tp11-section-title {
    color: #fff;
}

.tp11-vision-section .tp11-section-description {
    color: #ddd;
}

.tp11-vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.tp11-vision-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.tp11-vision-description {
    font-size: 18px;
    color: #ddd;
    line-height: 1.8;
}


.tp11-team-section {
    background-color: #fff;
}

.tp11-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tp11-team-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.tp11-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tp11-team-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tp11-team-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-team-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .tp11-values-grid,
    .tp11-team-grid {
        grid-template-columns: 1fr;
    }

    .tp11-value-card,
    .tp11-team-card {
        padding: 30px 20px;
    }

    .tp11-mission-title,
    .tp11-vision-title {
        font-size: 24px;
    }

    .tp11-mission-description,
    .tp11-vision-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tp11-value-card,
    .tp11-team-card {
        padding: 20px 15px;
    }

    .tp11-value-icon,
    .tp11-team-icon {
        font-size: 36px;
    }

    .tp11-value-title,
    .tp11-team-title {
        font-size: 18px;
    }
}



.tp11-btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.tp11-btn-primary:hover {
    background-color: #555;
    transform: translateY(-2px);
}


.tp11-advantages-section {
    background-color: #fff;
}

.tp11-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.tp11-advantage-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tp11-advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tp11-advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tp11-advantage-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-advantage-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


.tp11-conditions-section {
    background-color: #f9f9f9;
}

.tp11-conditions-list {
    max-width: 800px;
    margin: 0 auto;
}

.tp11-condition-item {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tp11-condition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tp11-condition-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    margin-right: 15px;
}

.tp11-condition-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tp11-condition-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-left: 45px;
}


.tp11-process-section {
    background-color: #fff;
}

.tp11-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tp11-process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.tp11-process-step::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: #ddd;
}

.tp11-process-step:last-child::after {
    display: none;
}

.tp11-process-step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tp11-process-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tp11-process-step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


.tp11-contact-section {
    background-color: #333;
    color: #fff;
    text-align: center;
}

.tp11-contact-section .tp11-section-title {
    color: #fff;
}

.tp11-contact-section .tp11-section-description {
    color: #ddd;
}

.tp11-contact-content {
    max-width: 800px;
    margin: 0 auto;
}


.tp11-faq-section {
    background-color: #f9f9f9;
}

.tp11-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.tp11-faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.tp11-faq-question {
    padding: 20px 30px;
    background-color: #f9f9f9;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tp11-faq-question:hover {
    background-color: #f0f0f0;
}

.tp11-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tp11-faq-answer.tp11-active {
    padding: 20px 30px;
    max-height: 200px;
}

.tp11-faq-answer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.tp11-faq-icon {
    transition: transform 0.3s ease;
}

.tp11-faq-icon.tp11-active {
    transform: rotate(180deg);
}


@media (max-width: 768px) {
    .tp11-advantages-grid {
        grid-template-columns: 1fr;
    }

    .tp11-advantage-card {
        padding: 30px 20px;
    }

    .tp11-process-steps {
        flex-direction: column;
        align-items: center;
    }

    .tp11-process-step {
        min-width: 100%;
        position: relative;
    }

    .tp11-process-step::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        width: 2px;
        height: 30px;
        background-color: #ddd;
        right: auto;
    }

    .tp11-process-step:last-child::after {
        display: none;
    }

    .tp11-condition-item {
        padding: 20px 15px;
    }

    .tp11-condition-description {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .tp11-advantage-card {
        padding: 20px 15px;
    }

    .tp11-advantage-icon {
        font-size: 36px;
    }

    .tp11-advantage-title {
        font-size: 18px;
    }

    .tp11-condition-item {
        padding: 15px 10px;
    }

    .tp11-faq-question {
        padding: 15px 20px;
        font-size: 14px;
    }

    .tp11-faq-answer.tp11-active {
        padding: 15px 20px;
    }
}


.tp11-page { max-width: 1280px; margin: 0 auto; }
.tp11-hero-section { padding: 5rem 2rem; }
.tp11-service-card, .tp11-case-card, .tp11-news-card { border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.tp11-section-title { font-size: 1.75rem; letter-spacing: 0.02em; }