/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2196F3;
    --secondary-color: #1976D2;
    --accent-color: #00BCD4;
    --dark-color: #1a1a2e;
    --light-color: #f5f7fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.nav-logo-image {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section - Two Column Layout */
.hero {
    position: relative;
    background: var(--white);
    padding-top: 70px;
    padding-bottom: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

/* Left Side - Image */
.hero-left {
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
    overflow: hidden;
}

.hero-building-image {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(100, 120, 140, 0.4);
}

/* TS Badge Overlay on Image - ENHANCED & EMPHASIZED */
.ts-badge-overlay {
    position: absolute;
    top: 50px;
    left: 50px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    padding: 1.8rem 2.2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 3;
    border-left: 8px solid #FFD700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(33, 150, 243, 0.5);
    }
}

.ts-badge-overlay:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(33, 150, 243, 0.6);
}

.ts-badge-icon {
    font-size: 3.5rem;
    color: #FFD700;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ts-badge-text {
    color: var(--white);
}

.ts-badge-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 1;
    display: block;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ts-badge-title {
    font-size: 1.4rem;
    font-weight: 900;
    display: block;
    margin-top: 0.3rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.ts-badge-subtitle {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin-top: 0.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-image-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--white);
    z-index: 2;
}

.hero-image-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-image-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Right Side - Content */
.hero-right {
    background: #F8F9FA;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 700px;
}

.hero-right-header {
    margin-bottom: 2.5rem;
}

.hero-logo-img {
    height: 70px;
    width: auto;
}

/* Main Titles */
.hero-title-large {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-subtitle-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 2rem;
}

/* Description Section */
.hero-desc-section {
    margin-bottom: 1rem;
}

.hero-desc-bold {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 0.2rem;
}

.hero-desc-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Icon Features - Three Columns */
.hero-icon-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.icon-feature-item {
    text-align: center;
}

.icon-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.icon-feature-icon.blue-icon {
    background: var(--primary-color);
}

.icon-feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.icon-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.icon-feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Proven Track Record Box */
.proven-track-box {
    background: #E8F4F8;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid var(--primary-color);
}

.track-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.track-header i {
    font-size: 1rem;
}

.track-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.track-main {
    text-align: left;
}

.track-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.track-number sup {
    font-size: 2rem;
    font-weight: 700;
}

.track-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
}

.track-info-box {
    background: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.track-info-text {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.track-info-highlight {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.track-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.track-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
}

.track-stat-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.track-stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Common Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.highlight {
    color: var(--primary-color);
}

/* About Page Section - Page 2 */
.about-page {
    padding: 5rem 0;
    background: var(--white);
}

.about-header {
    text-align: left;
    margin-bottom: 3rem;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.about-sub-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* References Section */
.references-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    background: #F8F9FA;
    padding: 3rem;
    border-radius: 15px;
}

.references-main {
    border-left: 5px solid var(--primary-color);
    padding-left: 2rem;
}

.references-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.references-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.references-number sup {
    font-size: 2rem;
}

.references-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
}

.references-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ref-stat-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #E8F4F8;
}

.ref-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.ref-stat-title {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.ref-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-color);
}

.ref-stat-number span {
    font-size: 1rem;
    font-weight: 600;
}

/* About Services Grid */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-service-card {
    background: var(--white);
    border: 2px solid #E8F4F8;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.1);
    transform: translateY(-5px);
}

.about-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #E8F4F8;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.about-service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.about-service-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-service-list {
    list-style: none;
    text-align: left;
}

.about-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.5;
}

.about-service-list i {
    color: var(--primary-color);
    font-size: 0.7rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

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

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.service-list i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Network Page Section - Page 3 */
.network-page {
    padding: 0;
    background: var(--white);
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.network-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.network-map-section {
    background: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.korea-map-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
}

.network-content-section {
    padding: 5rem 6rem 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.network-header {
    margin-bottom: 3rem;
}

.network-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.network-number-highlight {
    color: var(--primary-color);
}

.network-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.network-regions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.region-card {
    background: #F8F9FA;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.region-card.highlighted {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-left: 4px solid #FFD700;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
    transform: scale(1.02);
}

.region-card.highlighted .region-title,
.region-card.highlighted .region-count,
.region-card.highlighted .region-desc,
.region-card.highlighted .region-percent {
    color: var(--white);
}

.region-card.highlighted .region-progress-bar {
    background: rgba(255, 255, 255, 0.3);
}

.region-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.region-card.highlighted:hover {
    transform: scale(1.03) translateX(5px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
}

.region-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.region-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.region-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.region-dot.blue {
    background: var(--primary-color);
}

.region-dot.white {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.region-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.region-count {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.region-count span {
    font-size: 1.3rem;
    font-weight: 600;
    margin-left: 0.2rem;
}

.region-desc {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.region-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.region-progress-bar {
    flex: 1;
    height: 10px;
    background: #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.region-progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
    width: 0;
}

.region-progress-fill.blue {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.region-progress-fill.white {
    background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.region-percent {
    font-size: 0.9rem;
    color: var(--text-light);
    white-space: nowrap;
    min-width: 80px;
    font-weight: 500;
}

/* Why 2FC Section - Page 4 */
.why-section {
    padding: 5rem 0;
    background: var(--white);
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.highlight-blue {
    color: var(--primary-color);
}

.why-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    background: #F8F9FA;
    border-bottom: 2px solid #E0E0E0;
}

.comp-col {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
}

.comp-col.highlight-col {
    background: var(--primary-color);
    color: var(--white);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    border-bottom: 1px solid #E8E8E8;
    transition: background 0.3s;
}

.comparison-row:hover {
    background: #F8F9FA;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comp-item {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.comp-item:first-child {
    justify-content: flex-start;
    gap: 1.5rem;
}

.comp-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comp-icon.blue {
    background: #E8F4F8;
}

.comp-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.comp-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.comp-item.negative {
    color: #666;
}

.comp-item.negative i {
    color: #FF6B6B;
    font-size: 1.2rem;
}

.comp-item.positive {
    color: var(--dark-color);
    font-weight: 500;
}

.comp-item.positive i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.comp-item span {
    font-size: 0.95rem;
}

/* Testimonials Section - Page 5 */
.testimonials-section {
    padding: 5rem 0;
    background: #F8F9FA;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #E8E8E8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
    transform: translateY(-5px);
}

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

.testimonial-icon {
    width: 50px;
    height: 50px;
    background: #E8F4F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-company {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-tags {
    border-top: 2px solid #E8F4F8;
    padding-top: 1.5rem;
}

.tag-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.tag-item i {
    color: var(--primary-color);
    margin-top: 0.3rem;
    font-size: 0.8rem;
}

.tag-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.tag-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.tag-subtext {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 2rem;
}

/* Pain Points Section - Page 6 */
/* Pain Points Section - Page 6 */
.pain-points-section {
    padding: 0;
    background: var(--white);
}

.pain-points-header-wrapper {
    background: linear-gradient(135deg, #2C3E50 0%, #3A506B 100%);
    padding: 4rem 0 3rem;
}

.pain-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FDB813;
    color: #2C3E50;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.pain-badge i {
    font-size: 0.9rem;
}

.pain-points-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pain-subtitle-inline {
    font-size: 2rem;
    font-weight: 400;
    color: #B8C5D6;
    margin-left: 1rem;
}

.pain-points-subtitle-text {
    font-size: 1.1rem;
    color: #B8C5D6;
    font-weight: 400;
    margin-top: 0.5rem;
}

.pain-points-content {
    background: #F5F7FA;
    padding: 4rem 0;
}

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

.pain-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2196F3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pain-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pain-icon-wrapper {
    flex-shrink: 0;
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: #E3F2FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-icon.blue {
    background: #E3F2FD;
}

.pain-icon i {
    font-size: 1.8rem;
    color: #2196F3;
}

.pain-title-wrapper {
    flex: 1;
}

.pain-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.pain-badge-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pain-badge-tag.critical {
    background: #FF5252;
    color: var(--white);
}

.pain-badge-tag.high {
    background: #2196F3;
    color: var(--white);
}

.pain-badge-tag.risk {
    background: #FF9800;
    color: var(--white);
}

.pain-badge-tag.urgent {
    background: #2196F3;
    color: var(--white);
}

.pain-card-description {
    font-size: 0.95rem;
    color: #5A6C7D;
    line-height: 1.7;
    margin: 0;
}

/* Program Screens Section - Page 7 */
.program-screens-section {
    padding: 5rem 0;
    background: var(--white);
}

.program-screens-header {
    text-align: center;
    margin-bottom: 4rem;
}

.screens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.screen-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.screen-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.2);
}

.screen-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: #f0f0f0;
}

.screen-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screen-card:hover .screen-image {
    transform: scale(1.05);
}

.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.screen-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.screen-info {
    padding: 1.8rem;
}

.screen-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.screen-description {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.program-features-box {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

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

.feature-box-header i {
    font-size: 2.5rem;
    color: #FFD700;
}

.feature-box-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.feature-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-box-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.feature-box-list i {
    font-size: 1.2rem;
    color: #4CAF50;
    flex-shrink: 0;
}

/* Service & Pricing Section - Page 8 */
.service-pricing-section {
    padding: 0;
    background: var(--white);
}

.pricing-header-wrapper {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.pricing-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.pricing-content {
    padding: 4rem 0;
    background: #F8F9FA;
}

/* Service Cards Row */
.service-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.15);
}

.service-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #E3F2FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-feature-icon.blue {
    background: #E3F2FD;
}

.service-feature-icon i {
    font-size: 2.2rem;
    color: #2196F3;
}

.service-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.service-feature-subtitle {
    font-size: 0.95rem;
    color: #2196F3;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.service-feature-list .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.service-feature-list .dot.blue {
    background: #2196F3;
}

/* Pricing & Comparison Wrapper */
.pricing-comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Pricing Box */
.pricing-box {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--white);
    position: relative;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.pricing-badge-best {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.pricing-box-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.pricing-box-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.pricing-box-divider {
    width: 50px;
    height: 3px;
    background: var(--white);
    margin: 1.5rem 0;
}

.pricing-box-label {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.pricing-box-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-box-vat {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Comparison Chart */
.comparison-chart-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.chart-header i {
    font-size: 1.8rem;
    color: #2196F3;
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
}

.chart-unit {
    font-size: 0.85rem;
    color: var(--text-color);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 2rem;
    padding: 2rem 0;
}

.chart-bar-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.chart-bar-item.highlight {
    position: relative;
}

.savings-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF9800;
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.bar-label {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.bar-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 200px;
}

.bar-fill {
    width: 80px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1rem;
    position: relative;
    transition: all 0.5s ease;
}

.bar-fill.gray {
    background: #B0BEC5;
}

.bar-fill.blue {
    background: linear-gradient(180deg, #2196F3 0%, #1976D2 100%);
}

.bar-value {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Process Flow Section */
.process-flow-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.process-header i {
    font-size: 1.8rem;
    color: #2196F3;
}

.process-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

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

.process-step {
    text-align: center;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    background: #E3F2FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: #2196F3;
    transform: scale(1.1);
}

.process-icon i {
    font-size: 2rem;
    color: #2196F3;
    transition: color 0.3s ease;
}

.process-step:hover .process-icon i {
    color: var(--white);
}

.process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.process-step-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

/* Future Roadmap Section - Page 9 (HIGHLIGHTED & EMPHASIZED) */
.roadmap-section {
    padding: 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.roadmap-bg-wrapper {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #E3F2FD 100%);
    padding: 5rem 0;
    position: relative;
}

.roadmap-bg-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.roadmap-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
        transform: scale(1.02);
    }
}

.roadmap-badge i {
    font-size: 1.1rem;
}

.roadmap-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.roadmap-subtitle {
    font-size: 1.2rem;
    color: #37474F;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

/* Roadmap Cards - Top Row */
.roadmap-cards-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Roadmap Cards - Bottom Row (Centered) */
.roadmap-cards-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.roadmap-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border-top: 5px solid #2196F3;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.roadmap-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 45px rgba(33, 150, 243, 0.25);
    border-top-color: #1976D2;
}

.roadmap-card:hover::before {
    opacity: 1;
}

.roadmap-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #E3F2FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.roadmap-card:hover .roadmap-card-icon {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    transform: rotate(360deg) scale(1.1);
}

.roadmap-card-icon.blue {
    background: #E3F2FD;
}

.roadmap-card-icon i {
    font-size: 2rem;
    color: #2196F3;
    transition: color 0.3s ease;
}

.roadmap-card:hover .roadmap-card-icon i {
    color: var(--white);
}

.roadmap-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
    position: relative;
    z-index: 1;
}

.roadmap-card-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.roadmap-card-badge {
    display: inline-block;
    background: #E3F2FD;
    color: #2196F3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.roadmap-card:hover .roadmap-card-badge {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: var(--white);
    transform: scale(1.05);
}

/* Highlight Box */
.roadmap-highlight-box {
    background: linear-gradient(135deg, #FFD700 0%, #FFA726 100%);
    padding: 3rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 15px 40px rgba(255, 167, 38, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.roadmap-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.highlight-icon i {
    font-size: 2.5rem;
    color: #FFA726;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    opacity: 0.95;
}

/* Process Flow Section - Page 10 */
.process-flow-section {
    padding: 5rem 0;
    background: var(--white);
}

.process-flow-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-flow-badge {
    display: inline-block;
    background: #E3F2FD;
    color: #2196F3;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.process-flow-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-flow-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 400;
}

/* Process Icons Row */
.process-icons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.process-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.process-icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.4);
}

.process-number-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: var(--white);
    color: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.process-icon-circle i {
    font-size: 2.5rem;
    color: var(--white);
    margin-top: 0.5rem;
}

.process-arrow {
    color: #B0BEC5;
    font-size: 2rem;
    margin: 0 0.5rem;
}

/* Process Cards Row */
.process-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.process-flow-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 2px solid #E0E0E0;
    transition: all 0.3s ease;
    text-align: center;
}

.process-flow-card:hover {
    border-color: #2196F3;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.15);
}

.process-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.process-card-divider {
    width: 40px;
    height: 3px;
    background: #2196F3;
    margin: 0 auto 1.5rem;
}

.process-card-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* Consultation Section - Page 11 */
.consultation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.consultation-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.consultation-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.consultation-content-box {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
}

.consultation-logo {
    margin-bottom: 1.5rem;
}

.consultation-logo-img {
    height: 60px;
    margin-bottom: 0.5rem;
}

.consultation-logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

.consultation-badge {
    display: inline-block;
    background: #E3F2FD;
    color: #2196F3;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.consultation-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.consultation-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.consultation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.consultation-card {
    background: #F5F5F5;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.consultation-card:hover {
    background: #E3F2FD;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.15);
}

.consultation-card-icon {
    width: 70px;
    height: 70px;
    background: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.consultation-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.consultation-card-label {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultation-card-value {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 700;
    margin: 0;
}

.consultation-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: var(--white);
    padding: 1.2rem 3.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.consultation-cta-btn i {
    font-size: 1.1rem;
}

.consultation-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.4);
}

/* Download Section */
.consultation-download-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #E0E0E0;
}

.download-divider {
    text-align: center;
    margin: -4.5rem 0 2rem;
}

.download-divider span {
    background: var(--white);
    padding: 0.5rem 1.5rem;
    color: #999;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    border: 2px solid #E0E0E0;
}

.download-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.download-title i {
    color: #4CAF50;
    font-size: 2rem;
}

.download-description {
    font-size: 1rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 350px;
}

.download-btn i {
    font-size: 1.2rem;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
}

.download-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-note i {
    color: #2196F3;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s;
}

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

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
    color: var(--white);
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo p {
    margin-top: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Hero Section Responsive */
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-left {
        min-height: 500px;
    }

    .hero-image-container {
        min-height: 500px;
    }

    .hero-building-image {
        min-height: 500px;
    }

    .hero-right {
        min-height: auto;
        padding: 40px 30px;
    }

    .ts-badge-overlay {
        top: 30px;
        left: 30px;
        padding: 1rem;
    }

    .ts-badge-icon {
        font-size: 2rem;
    }

    .ts-badge-title {
        font-size: 0.95rem;
    }

    .hero-image-text {
        bottom: 30px;
        left: 30px;
    }

    .hero-image-subtitle {
        font-size: 0.9rem;
    }

    .hero-image-title {
        font-size: 1.6rem;
    }

    .hero-right {
        padding: 40px 30px;
    }

    .hero-logo-img {
        height: 50px;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle-large {
        font-size: 1.8rem;
    }

    .hero-icon-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .track-top {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .track-bottom {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .references-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .references-stats {
        grid-template-columns: 1fr;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .network-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .network-map-section {
        padding: 2rem;
    }

    .network-content-section {
        padding: 3rem 2rem;
    }

    .network-title {
        font-size: 2.2rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header .comp-col:not(:first-child) {
        display: none;
    }

    .comp-item:not(:first-child) {
        border-top: 1px solid #E8E8E8;
    }

    .why-title {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-title {
        font-size: 2.2rem;
    }

    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pain-points-title {
        font-size: 2.2rem;
    }

    .pain-subtitle {
        font-size: 1.5rem;
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .network-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Program Screens - Tablet */
    .screens-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .feature-box-list {
        grid-template-columns: 1fr;
    }

    /* Service & Pricing - Tablet */
    .service-cards-row {
        grid-template-columns: 1fr;
    }

    .pricing-comparison-wrapper {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Roadmap - Tablet */
    .roadmap-cards-top {
        grid-template-columns: 1fr;
    }

    .roadmap-cards-bottom {
        grid-template-columns: 1fr;
    }

    .roadmap-highlight-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    /* Process Flow - Tablet */
    .process-icons-row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .process-arrow {
        display: none;
    }

    .process-cards-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Consultation - Tablet */
    .consultation-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .consultation-content-box {
        padding: 3rem 2rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-left {
        min-height: 400px;
    }

    .hero-image-container {
        min-height: 400px;
    }

    .hero-building-image {
        min-height: 400px;
    }

    .hero-right {
        min-height: auto;
        padding: 30px 20px;
    }

    .ts-badge-overlay {
        top: 20px;
        left: 20px;
        padding: 0.8rem;
    }

    .ts-badge-icon {
        font-size: 1.8rem;
    }

    .ts-badge-label {
        font-size: 0.6rem;
    }

    .ts-badge-title {
        font-size: 0.85rem;
    }

    .ts-badge-subtitle {
        font-size: 0.75rem;
    }

    .hero-image-text {
        bottom: 20px;
        left: 20px;
    }

    .hero-image-subtitle {
        font-size: 0.85rem;
    }

    .hero-image-title {
        font-size: 1.4rem;
    }

    .hero-right {
        padding: 30px 20px;
    }

    .hero-logo-img {
        height: 45px;
    }

    .hero-title-large {
        font-size: 2rem;
    }

    .hero-subtitle-large {
        font-size: 1.5rem;
    }

    .hero-desc-bold {
        font-size: 1rem;
    }

    .hero-desc-text {
        font-size: 0.85rem;
    }

    .hero-icon-features {
        gap: 1rem;
    }

    .icon-feature-icon {
        width: 60px;
        height: 60px;
    }

    .icon-feature-icon i {
        font-size: 2rem;
    }

    .icon-feature-title {
        font-size: 1rem;
    }

    .icon-feature-desc {
        font-size: 0.85rem;
    }

    .proven-track-box {
        padding: 1.5rem;
    }

    .track-number {
        font-size: 3rem;
    }

    .about-main-title,
    .about-sub-title {
        font-size: 1.8rem;
    }

    .why-title {
        font-size: 1.8rem;
    }

    .why-subtitle {
        font-size: 0.95rem;
    }

    .comp-item {
        padding: 1.5rem 1rem;
    }

    .comp-text {
        font-size: 0.9rem;
    }

    .comp-item span {
        font-size: 0.85rem;
    }

    .testimonials-title {
        font-size: 1.8rem;
    }

    .testimonials-subtitle {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-company {
        font-size: 1rem;
    }

    .pain-points-title {
        font-size: 1.8rem;
    }

    .pain-subtitle {
        font-size: 1.2rem;
    }

    .pain-points-subtitle {
        font-size: 0.95rem;
    }

    .pain-card {
        padding: 2rem 1.5rem;
    }

    .pain-icon {
        width: 70px;
        height: 70px;
    }

    .pain-icon i {
        font-size: 2rem;
    }

    .pain-title {
        font-size: 1.2rem;
    }

    .pain-description {
        font-size: 0.9rem;
    }

    .references-section {
        padding: 2rem;
    }

    .references-number {
        font-size: 3.5rem;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .network-title {
        font-size: 2rem;
    }

    .region-card {
        padding: 1.5rem;
    }

    .region-title {
        font-size: 1.1rem;
    }

    .region-count {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-stat-number {
        font-size: 2.8rem;
    }

    .network-number {
        font-size: 2rem;
    }

    .total-number {
        font-size: 2.8rem;
    }

    .btn {
        text-align: center;
        width: 100%;
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .service-card,
    .stat-card,
    .network-card,
    .contact-info-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .track-record,
    .about,
    .services,
    .network,
    .contact {
        padding: 3rem 0;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .ts-badge {
        display: block;
        margin: 1rem 0 0 0;
        font-size: 0.8rem;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* Pain Points - Mobile */
    .pain-points-main-title {
        font-size: 1.8rem;
    }

    .pain-subtitle-inline {
        font-size: 1.2rem;
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .pain-points-subtitle-text {
        font-size: 0.95rem;
    }

    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pain-card {
        padding: 1.5rem;
    }

    .pain-card-header {
        gap: 1rem;
    }

    .pain-icon {
        width: 50px;
        height: 50px;
    }

    .pain-icon i {
        font-size: 1.4rem;
    }

    .pain-card-title {
        font-size: 1.1rem;
    }

    .pain-card-description {
        font-size: 0.9rem;
    }

    /* Program Screens - Mobile */
    .screens-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .screen-info {
        padding: 1.5rem;
    }

    .screen-title {
        font-size: 1.15rem;
    }

    .program-features-box {
        padding: 2rem 1.5rem;
    }

    .feature-box-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .feature-box-header h3 {
        font-size: 1.4rem;
    }

    .feature-box-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-box-list li {
        font-size: 0.95rem;
    }

    /* Service & Pricing - Mobile */
    .pricing-main-title {
        font-size: 1.8rem;
    }

    .service-cards-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-feature-card {
        padding: 2rem 1.5rem;
    }

    .pricing-comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-box {
        padding: 2rem 1.5rem;
    }

    .pricing-box-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.8rem;
    }

    .comparison-chart-wrapper {
        padding: 2rem 1.5rem;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .chart-title {
        font-size: 1.2rem;
    }

    .chart-bars {
        gap: 0.8rem;
    }

    .bar-fill {
        width: 50px;
    }

    .bar-value {
        font-size: 0.9rem;
    }

    .savings-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        top: -35px;
    }

    .process-flow-section {
        padding: 2rem 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step-title {
        font-size: 1rem;
    }

    /* Roadmap - Mobile */
    .roadmap-title {
        font-size: 2rem;
    }

    .roadmap-subtitle {
        font-size: 1rem;
    }

    .roadmap-cards-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .roadmap-cards-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .roadmap-card {
        padding: 2rem 1.5rem;
    }

    .roadmap-card-title {
        font-size: 1.2rem;
    }

    .roadmap-highlight-box {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .highlight-title {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 1rem;
    }

    /* Process Flow - Mobile */
    .process-flow-title {
        font-size: 2rem;
    }

    .process-flow-subtitle {
        font-size: 1rem;
    }

    .process-icons-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-arrow {
        display: block;
        transform: rotate(90deg);
        margin: 0;
    }

    .process-icon-circle {
        width: 100px;
        height: 100px;
    }

    .process-icon-circle i {
        font-size: 2rem;
    }

    .process-number-badge {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .process-cards-row {
        grid-template-columns: 1fr;
    }

    .process-flow-card {
        padding: 1.5rem;
    }

    .process-card-title {
        font-size: 1.2rem;
    }

    /* Consultation - Mobile */
    .consultation-wrapper {
        padding: 0 1rem;
    }

    .consultation-content-box {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .consultation-logo-img {
        height: 50px;
    }

    .consultation-title {
        font-size: 1.8rem;
    }

    .consultation-subtitle {
        font-size: 1rem;
    }

    .consultation-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .consultation-card {
        padding: 2rem 1.5rem;
    }

    .consultation-card-icon {
        width: 60px;
        height: 60px;
    }

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

    .consultation-cta-btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    /* Download Section - Mobile */
    .download-title {
        font-size: 1.4rem;
    }

    .download-title i {
        font-size: 1.5rem;
    }

    .download-description {
        font-size: 0.95rem;
    }

    .download-btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .hero-title-large {
        font-size: 1.6rem;
    }

    .hero-subtitle-large {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card .stat-label {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-list li {
        font-size: 0.9rem;
    }

    .network-content h3 {
        font-size: 1rem;
    }

    .network-number {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}