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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.txlg-main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.txlg-navigation-bar {
    padding: 0;
}

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

.txlg-brand-logo h1 {
    margin: 0;
    font-size: 24px;
}

.txlg-logo-link {
    text-decoration: none;
    color: #2c5282;
    font-weight: 700;
    transition: color 0.3s ease;
}

.txlg-logo-link:hover {
    color: #1a365d;
}

.txlg-menu-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.txlg-nav-item {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.txlg-nav-item:hover,
.txlg-nav-item.txlg-active {
    color: #2c5282;
}

.txlg-nav-item.txlg-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c5282;
}

.txlg-hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.txlg-hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.8), rgba(26, 54, 93, 0.9));
}

.txlg-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.txlg-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.txlg-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.txlg-hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
}

.txlg-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #2c5282;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.txlg-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f7fafc;
}

.txlg-intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.txlg-intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.txlg-section-heading {
    font-size: 36px;
    color: #2c5282;
    margin-bottom: 25px;
    font-weight: 700;
}

.txlg-intro-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.txlg-video-showcase {
    padding: 80px 0;
    background: #fff;
}

.txlg-section-title {
    text-align: center;
    font-size: 36px;
    color: #2c5282;
    margin-bottom: 50px;
    font-weight: 700;
}

.txlg-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.txlg-video-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.txlg-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.txlg-showcase-video {
    width: 100%;
    display: block;
}

.txlg-video-title {
    font-size: 20px;
    color: #333;
    margin: 20px 20px 10px;
    font-weight: 600;
}

.txlg-video-desc {
    font-size: 14px;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.txlg-features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.txlg-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txlg-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.txlg-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
}

.txlg-feature-title {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 15px;
    font-weight: 600;
}

.txlg-feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.txlg-portfolio-preview {
    padding: 80px 0;
    background: #fff;
}

.txlg-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.txlg-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.txlg-portfolio-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.txlg-portfolio-item:hover .txlg-portfolio-img {
    transform: scale(1.1);
}

.txlg-portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: #fff;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.txlg-portfolio-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.txlg-portfolio-category {
    font-size: 14px;
    opacity: 0.9;
}

.txlg-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.txlg-testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txlg-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.txlg-testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.txlg-testimonial-author {
    font-size: 14px;
    color: #2c5282;
    font-weight: 600;
}

.txlg-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5282, #1a365d);
}

.txlg-cta-box {
    text-align: center;
    color: #fff;
}

.txlg-cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.txlg-cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.txlg-cta-btn {
    display: inline-block;
    padding: 15px 50px;
    background: #fff;
    color: #2c5282;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.txlg-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.txlg-main-footer {
    background: #1a202c;
    color: #fff;
    padding: 60px 0 30px;
}

.txlg-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.txlg-footer-logo {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.txlg-footer-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

.txlg-footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.txlg-footer-links {
    list-style: none;
}

.txlg-footer-links li {
    margin-bottom: 10px;
}

.txlg-footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.txlg-footer-links a:hover {
    opacity: 1;
}

.txlg-footer-contact {
    list-style: none;
}

.txlg-footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.txlg-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

.txlg-page-banner {
    background: linear-gradient(135deg, #2c5282, #1a365d);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.txlg-banner-title {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.txlg-banner-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.txlg-services-content {
    padding: 80px 0;
}

.txlg-service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.txlg-service-detail.txlg-reverse {
    direction: rtl;
}

.txlg-service-detail.txlg-reverse > * {
    direction: ltr;
}

.txlg-detail-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.txlg-service-heading {
    font-size: 32px;
    color: #2c5282;
    margin-bottom: 20px;
    font-weight: 700;
}

.txlg-service-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.txlg-service-features {
    list-style: none;
    padding-left: 0;
}

.txlg-service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #333;
}

.txlg-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

.txlg-price-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.txlg-price-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.txlg-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.txlg-price-card.txlg-featured {
    border: 2px solid #2c5282;
    transform: scale(1.05);
}

.txlg-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2c5282;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.txlg-price-name {
    font-size: 24px;
    color: #2c5282;
    margin-bottom: 20px;
    font-weight: 700;
}

.txlg-price-amount {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.txlg-price-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.txlg-price-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.txlg-price-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #2c5282;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.txlg-price-btn:hover {
    background: #1a365d;
    transform: translateY(-2px);
}

.txlg-portfolio-filter {
    padding: 40px 0;
    background: #f8f9fa;
}

.txlg-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.txlg-filter-btn {
    padding: 10px 25px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.txlg-filter-btn:hover,
.txlg-filter-btn.txlg-active {
    background: #2c5282;
    color: #fff;
    border-color: #2c5282;
}

.txlg-portfolio-gallery {
    padding: 80px 0;
}

.txlg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.txlg-gallery-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.txlg-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.txlg-gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.txlg-gallery-info {
    padding: 25px;
}

.txlg-gallery-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.txlg-gallery-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.txlg-gallery-tag {
    display: inline-block;
    padding: 5px 15px;
    background: #e8f4fd;
    color: #2c5282;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.txlg-case-study {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.txlg-case-player {
    width: 100%;
    border-radius: 10px;
}

.txlg-case-title {
    font-size: 28px;
    color: #2c5282;
    margin-bottom: 20px;
    font-weight: 700;
}

.txlg-case-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.txlg-process-steps {
    padding: 80px 0;
}

.txlg-step-item {
    position: relative;
    margin-bottom: 80px;
}

.txlg-step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #2c5282;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    z-index: 10;
}

.txlg-step-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 50px;
}

.txlg-step-item.txlg-reverse .txlg-step-content {
    direction: rtl;
}

.txlg-step-item.txlg-reverse .txlg-step-content > * {
    direction: ltr;
}

.txlg-step-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.txlg-step-title {
    font-size: 28px;
    color: #2c5282;
    margin-bottom: 20px;
    font-weight: 700;
}

.txlg-step-description {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.txlg-step-features {
    list-style: none;
    padding-left: 0;
}

.txlg-step-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #333;
}

.txlg-step-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

.txlg-timeline-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.txlg-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2c5282;
    transform: translateX(-50%);
}

.txlg-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.txlg-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #2c5282;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #e8f4fd;
}

.txlg-timeline-content {
    width: 45%;
    margin-left: 55%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txlg-timeline-item:nth-child(even) .txlg-timeline-content {
    margin-left: 0;
    margin-right: 55%;
}

.txlg-timeline-content h4 {
    font-size: 18px;
    color: #2c5282;
    margin-bottom: 5px;
    font-weight: 600;
}

.txlg-timeline-content p {
    font-size: 14px;
    color: #555;
}

.txlg-process-video {
    padding: 80px 0;
}

.txlg-video-wrapper {
    max-width: 900px;
    margin: 0 auto 30px;
}

.txlg-full-video {
    width: 100%;
    border-radius: 10px;
}

.txlg-video-caption {
    text-align: center;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.txlg-company-intro {
    padding: 80px 0;
}

.txlg-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.txlg-company-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.txlg-paragraph {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.txlg-values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.txlg-value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txlg-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
}

.txlg-value-title {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 15px;
    font-weight: 600;
}

.txlg-value-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.txlg-team-section {
    padding: 80px 0;
}

.txlg-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.txlg-team-member {
    text-align: center;
}

.txlg-member-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.txlg-member-name {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.txlg-member-role {
    font-size: 14px;
    color: #2c5282;
    margin-bottom: 15px;
    font-weight: 500;
}

.txlg-member-bio {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.txlg-achievement-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5282, #1a365d);
}

.txlg-achievement-section .txlg-section-title {
    color: #fff;
}

.txlg-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.txlg-stat-item {
    text-align: center;
    color: #fff;
}

.txlg-stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.txlg-stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.txlg-culture-video {
    padding: 80px 0;
}

.txlg-video-container {
    max-width: 900px;
    margin: 0 auto 30px;
}

.txlg-culture-player {
    width: 100%;
    border-radius: 10px;
}

.txlg-video-description {
    text-align: center;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.txlg-honors-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-honors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.txlg-honor-item {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txlg-honor-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    object-fit: cover;
}

.txlg-honor-name {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.txlg-honor-year {
    font-size: 14px;
    color: #2c5282;
}

.txlg-contact-section {
    padding: 80px 0;
}

.txlg-contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.txlg-form-title {
    font-size: 28px;
    color: #2c5282;
    margin-bottom: 10px;
    font-weight: 700;
}

.txlg-form-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.txlg-consultation-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.txlg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.txlg-form-group {
    margin-bottom: 25px;
}

.txlg-form-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.txlg-form-input,
.txlg-form-select,
.txlg-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.txlg-form-input:focus,
.txlg-form-select:focus,
.txlg-form-textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.txlg-form-textarea {
    resize: vertical;
    font-family: inherit;
}

.txlg-submit-btn {
    width: 100%;
    padding: 15px;
    background: #2c5282;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.txlg-submit-btn:hover {
    background: #1a365d;
    transform: translateY(-2px);
}

.txlg-info-title {
    font-size: 24px;
    color: #2c5282;
    margin-bottom: 30px;
    font-weight: 700;
}

.txlg-contact-details {
    margin-bottom: 40px;
}

.txlg-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.txlg-contact-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.txlg-contact-text h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.txlg-contact-text p {
    font-size: 14px;
    color: #2c5282;
    margin-bottom: 3px;
    font-weight: 500;
}

.txlg-small-text {
    font-size: 12px !important;
    color: #999 !important;
    font-weight: 400 !important;
}

.txlg-work-hours {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.txlg-hours-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.txlg-hours-list {
    list-style: none;
}

.txlg-hours-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.txlg-hours-list li:last-child {
    border-bottom: none;
}

.txlg-map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.txlg-map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.txlg-map-image {
    width: 100%;
    border-radius: 10px;
}

.txlg-map-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.txlg-map-info h4 {
    font-size: 20px;
    color: #2c5282;
    margin-bottom: 20px;
    font-weight: 600;
}

.txlg-map-info ul {
    list-style: none;
}

.txlg-map-info li {
    padding: 12px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.txlg-faq-section {
    padding: 80px 0;
}

.txlg-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.txlg-faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.txlg-faq-question {
    font-size: 18px;
    color: #2c5282;
    margin-bottom: 15px;
    font-weight: 600;
}

.txlg-faq-answer {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .txlg-nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

    .txlg-menu-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .txlg-hero-title {
        font-size: 32px;
    }

    .txlg-hero-subtitle {
        font-size: 18px;
    }

    .txlg-intro-grid,
    .txlg-service-detail,
    .txlg-case-content,
    .txlg-step-content,
    .txlg-intro-layout,
    .txlg-contact-layout,
    .txlg-map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .txlg-video-grid,
    .txlg-features-grid,
    .txlg-portfolio-grid,
    .txlg-testimonial-grid,
    .txlg-price-grid,
    .txlg-gallery-grid,
    .txlg-values-grid,
    .txlg-team-grid,
    .txlg-stats-grid,
    .txlg-honors-grid,
    .txlg-faq-grid {
        grid-template-columns: 1fr;
    }

    .txlg-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .txlg-form-row {
        grid-template-columns: 1fr;
    }
}