/* ==================== CSS Variables ==================== */
:root {
    --primary-color: #004080;
    --primary-light: #e6eff8;
    --accent-color: #facc15;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Noto Sans SC', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==================== Utility Classes ==================== */
.text-center-1406bd { text-align: center; }
.text-left-aeb5ff { text-align: left; }
.font-bold-885860 { font-weight: 700; }
.font-medium-58a87b { font-weight: 500; }
.text-sm-551e0b { font-size: 0.875rem; }
.text-lg-a02355 { font-size: 1.125rem; }
.text-xl-4d0545 { font-size: 1.25rem; }
.text-2xl-04ba4b { font-size: 1.5rem; }
.text-3xl-783a89 { font-size: 1.875rem; }
.mb-1-c7ee5c { margin-bottom: 0.25rem; }
.mb-2-4eeb03 { margin-bottom: 0.5rem; }
.mb-3-2efe1a { margin-bottom: 0.75rem; }
.mb-4-1ad06b { margin-bottom: 1rem; }
.mb-6-33ec18 { margin-bottom: 1.5rem; }
.mb-8-dd0055 { margin-bottom: 2rem; }
.mb-12-9f10c1 { margin-bottom: 3rem; }
.mb-16-d79374 { margin-bottom: 4rem; }
.mt-2-98a214 { margin-top: 0.5rem; }
.mt-4-a16b6d { margin-top: 1rem; }
.mt-8-22f4d9 { margin-top: 2rem; }
.mt-10-7e28e1 { margin-top: 2.5rem; }
.mr-2-32a881 { margin-right: 0.5rem; }
.mr-4-fcef2f { margin-right: 1rem; }
.ml-2-bccd60 { margin-left: 0.5rem; }
.py-12-2b3da4 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16-564bf9 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20-4df5e7 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4-7ae9cc { padding-left: 1rem; padding-right: 1rem; }
.px-6-90f0ce { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8-ad60a1 { padding-left: 2rem; padding-right: 2rem; }
.p-4-cb2913 { padding: 1rem; }
.p-6-3a0053 { padding: 1.5rem; }
.p-8-2f4726 { padding: 2rem; }
.rounded-c2057a { border-radius: 0.25rem; }
.rounded-lg-00d5d9 { border-radius: 0.5rem; }
.rounded-xl-7193e9 { border-radius: 0.75rem; }
.rounded-2xl-a3bb8e { border-radius: 1rem; }
.rounded-3xl-ceb9ae { border-radius: 1.5rem; }
.rounded-full-1a3ef1 { border-radius: 9999px; }
.shadow-sm-0e8f89 { box-shadow: var(--shadow-sm); }
.shadow-md-9f513a { box-shadow: var(--shadow-md); }
.shadow-lg-b856e6 { box-shadow: var(--shadow-lg); }
.shadow-xl-4e5d0d { box-shadow: var(--shadow-xl); }
.shadow-2xl-38a09e { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.flex-35a7c3 { display: flex; }
.flex-col-377731 { flex-direction: column; }
.items-center-dab30f { align-items: center; }
.items-start-1ef740 { align-items: flex-start; }
.justify-center-52c50c { justify-content: center; }
.justify-between-c21ef6 { justify-content: space-between; }
.grid-bd4bab { display: grid; }
.hidden-5b3bed { display: none; }
.block-03c9a8 { display: block; }
.w-full-08a6b7 { width: 100%; }
.h-full-a09e27 { height: 100%; }
.overflow-hidden-97d604 { overflow: hidden; }
.relative-a89963 { position: relative; }
.absolute-1e3e97 { position: absolute; }
.sticky-586d0e { position: sticky; }
.top-0-bbdb4a { top: 0; }
.z-10-257581 { z-index: 10; }
.z-50-41c59f { z-index: 50; }
.cursor-pointer-b64c87 { cursor: pointer; }
.line-clamp-3-5e1646 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary-color); }
.bg-primary-light { background-color: var(--primary-light); }
.bg-accent { background-color: var(--accent-color); }
.text-white-346f45 { color: white; }
.text-primary-1fd90b { color: var(--primary-color); }
.text-gray-16bec2 { color: var(--text-gray); }
.text-light-cd5fd1 { color: var(--text-light); }
.border-8ea7f8 { border: 1px solid var(--border-color); }
.border-2-f72e40 { border: 2px solid var(--border-color); }
.border-t-a81eef { border-top: 1px solid var(--border-color); }
.border-white-0365d5 { border-color: white; }
.border-primary-light-ee72bd { border-color: var(--primary-light); }
.transition-8852c4 { transition: var(--transition); }
.hover-scale-7c61d6:hover { transform: scale(1.05); }
.hover-lift-cb0b79:hover { transform: translateY(-8px); }

/* ==================== Header Styles ==================== */
.header-b1a8a9 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.header-b1a8a9 .container-af8d9d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-e6f9aa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon-8b28e6 {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.logo-text-390837 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.025em;
}

.nav-links-f310b8 {
    display: flex;
    gap: 2rem;
}

.nav-links-f310b8 a {
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-primary-cf0641 {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-cf0641:hover {
    background-color: #1e40af;
    box-shadow: var(--shadow-lg);
}

.btn-outline-10c996 {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
}

.btn-outline-10c996:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-accent-327142 {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.btn-accent-327142:hover {
    transform: scale(1.05);
}

/* Mobile Menu Button */
.mobile-menu-btn-c1dcc1 {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ==================== Hero Section ==================== */
.hero-0b285d {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-0b285d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3-3e5a7e.org/2000/svg" viewBox="0 0 100 100"><circle cx="90" cy="10" fill="rgba(255,255,255,0.1)" r="30"/><circle cx="10" cy="90" fill="rgba(255,255,255,0.1)" r="40"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.hero-0b285d .container-af8d9d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title-8279fd {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-8279fd .highlight-c18763 {
    color: var(--accent-color);
}

.hero-desc-711601 {
    font-size: 1.125rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons-74d06f {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-features-1056a1 {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    color: #bfdbfe;
}

.hero-features-1056a1 span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image-b4b670 img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

/* ==================== Section Styles ==================== */
.section-c96921 {
    padding: 5rem 0;
}

.section-white-05a8d1 {
    background-color: var(--bg-white);
}

.section-light-f0817d {
    background-color: var(--primary-light);
}

.section-bg-ffdf23 {
    background-color: var(--bg-light);
}

.section-title-f29b82 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle-b7c704 {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.section-divider-231c97 {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto 1rem;
}

/* ==================== Services Grid ==================== */
.services-grid-20b1c6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card-f989dc {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card-f989dc:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: rgba(0, 64, 128, 0.2);
}

.service-icon-b8badd {
    width: 64px;
    height: 64px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-title-6f4da9 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-desc-303b34 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* ==================== Advantages Section ==================== */
.advantages-grid-c259dc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.advantage-list-eb5e43 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-item-496e91 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.advantage-icon-8fe6fd {
    background-color: var(--primary-color);
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.advantage-content-29894a h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.advantage-content-29894a p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.advantage-image-520d2a {
    position: relative;
}

.advantage-image-520d2a img {
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: 1;
}

.advantage-image-520d2a::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 12rem;
    height: 12rem;
    background-color: rgba(250, 204, 21, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

/* ==================== Process Section ==================== */
.process-steps-cc7e86 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.process-step-5d7f26 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.process-step-5d7f26:not(:last-child)::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 40px;
    color: #d1d5db;
    font-size: 1.5rem;
}

.step-number-7cbb51 {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.step-title-d4e16b {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-desc-29205b {
    color: var(--text-gray);
    font-size: 0.875rem;
    max-width: 200px;
}

/* ==================== About Section ==================== */
.about-content-7de020 {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image-c0939f {
    flex: 1;
}

.about-image-c0939f img {
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.about-text-c6c6cb {
    flex: 1;
}

.about-text-c6c6cb h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text-c6c6cb p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats-a5d89f {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number-eb2a7e {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label-9b3e62 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ==================== Case Studies ==================== */
.cases-grid-8eaf30 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.case-card-e29a43 {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.case-card-e29a43:hover {
    box-shadow: var(--shadow-lg);
}

.case-header-b4604f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.case-tag-840161 {
    background-color: #eff6ff;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.case-date-ad0f6d {
    color: var(--text-light);
    font-size: 0.75rem;
}

.case-title-127e16 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-desc-14f124 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.case-status-7f53bb {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==================== News Section ==================== */
.news-grid-a1b112 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card-ff176d {
    background-color: var(--bg-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card-ff176d:hover {
    box-shadow: var(--shadow-md);
}

.news-content-16fb0d {
    padding: 1.5rem;
}

.news-meta-f2027e {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.news-title-4ddeb4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.news-card-ff176d:hover .news-title-4ddeb4 {
    color: var(--primary-color);
}

.news-excerpt-1ba998 {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link-b2bbe2 {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-link-b2bbe2:hover {
    gap: 0.5rem;
}

/* ==================== FAQ Section ==================== */
.faq-container-ad4380 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-8b24d0 {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question-ba2173 {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-icon-dc4f60 {
    transition: var(--transition);
    color: var(--text-gray);
}

.faq-item-8b24d0.active .faq-icon-dc4f60 {
    transform: rotate(180deg);
}

.faq-answer-cf4e3b {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-8b24d0.active .faq-answer-cf4e3b {
    padding: 0 1.5rem 1rem;
    max-height: 500px;
}

.faq-answer-cf4e3b p {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ==================== Contact Section ==================== */
.contact-section-05df8e {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-wrap: wrap;
}

.contact-info-e10886 {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem 3rem;
    color: white;
}

.contact-info-e10886 h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-e10886 p {
    color: #dbeafe;
    margin-bottom: 2rem;
}

.contact-item-32d00c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon-883f02 {
    width: 40px;
    height: 40px;
    background-color: rgba(37, 99, 235, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-e4e274 {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 2.5rem 3rem;
}

.form-group-8aa3f7 {
    margin-bottom: 1.25rem;
}

.form-group-8aa3f7 label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.form-group-8aa3f7 input,
.form-group-8aa3f7 select,
.form-group-8aa3f7 textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group-8aa3f7 input:focus,
.form-group-8aa3f7 select:focus,
.form-group-8aa3f7 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 64, 128, 0.1);
}

.form-submit-65a2cc {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit-65a2cc:hover {
    background-color: #1e40af;
    box-shadow: var(--shadow-lg);
}

.form-note-c4cc0f {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ==================== Footer Styles ==================== */
.footer-0994b5 {
    background-color: #111827;
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    border-top: 4px solid var(--primary-color);
}

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

.footer-brand-1f66c1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand-1f66c1 .logo-icon-8b28e6 {
    width: 32px;
    height: 32px;
}

.footer-brand-1f66c1 .logo-text-390837 {
    color: white;
    font-size: 1.25rem;
}

.footer-desc-0dab3d {
    max-width: 350px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-title-058935 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links-6befa7 a {
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links-6befa7 a:hover {
    color: white;
}

.footer-bottom-e532c0 {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.75rem;
}

.footer-bottom-e532c0 p {
    margin-bottom: 0.5rem;
}

/* ==================== Comments Section ==================== */
.comments-grid-6b06f6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.comment-card-56d3f6 {
    background-color: var(--bg-white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

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

.comment-avatar-044e27 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-info-3fb7b8 h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.comment-info-3fb7b8 span {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.comment-content-f9ff0a {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 1024px) {
    .services-grid-20b1c6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps-cc7e86 {
        flex-wrap: wrap;
    }

    .process-step-5d7f26 {
        flex: 0 0 45%;
    }

    .process-step-5d7f26:not(:last-child)::after {
        display: none;
    }

    .cases-grid-8eaf30,
    .news-grid-a1b112,
    .comments-grid-6b06f6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid-3ebde5 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links-f310b8 {
        display: none;
    }
    .section-c96921 {
        padding: 2.5rem 0;
    }
    .section-subtitle-b7c704{
        margin-bottom: 1.5rem;
    }
    .mobile-menu-btn-c1dcc1 {
        display: block;
    }
    .hero-0b285d{
        padding: 3rem 0;
    }

    .hero-0b285d .container-af8d9d {
        grid-template-columns: 1fr;
    }
    .hero-buttons-74d06f{
        justify-content: center;
    }

    .hero-image-b4b670 {
        display: none;
    }

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

    .hero-features-1056a1 {
        /*flex-direction: column;*/
        gap: 0.5rem;
        justify-content: center;
    }
    .services-grid-20b1c6{
        gap: 0.5rem;
    }
    .service-card-f989dc{
        padding: 0.5rem;
    }
    .step-desc-29205b{
        max-width: 80%;
    }
    .process-steps-cc7e86{
        gap: 1rem;
    }
    .advantages-grid-c259dc,
    .cases-grid-8eaf30,
    .news-grid-a1b112,
    .comments-grid-6b06f6 {
        grid-template-columns: 1fr;
    }
    .about-image-c0939f img{
        height: auto;
    }

    .about-content-7de020 {
        flex-direction: column;
    }

    .process-step-5d7f26 {
        flex: 0 0 100%;
    }

    .contact-section-05df8e {
        flex-direction: column;
    }

    .footer-grid-3ebde5 {
        grid-template-columns: 1fr;
    }

    .about-stats-a5d89f {
        justify-content: center;
    }
}