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

:root {
    --primary: #1A3C6E;
    --primary-dark: #0F2847;
    --accent: #E63028;
    --accent-hover: #CC2A23;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #F5F7FA;
    --bg-white: #FFFFFF;
    --border: #E8ECEF;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 6px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
        "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

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

/* ==================== Header & Navigation ==================== */
.header {
    background: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.header-top {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 6px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: rgba(255, 255, 255, 0.8);
}

.header-top a:hover {
    color: #fff;
}

.header-main {
    padding: 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav a {
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius);
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
    background: rgba(26, 60, 110, 0.06);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: var(--transition);
}

/* ==================== Banner / Hero ==================== */
.banner {
    margin-top: 100px;
    position: relative;
    height: 520px;
    overflow: hidden;
    background: var(--primary);
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.banner-slide .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 40, 71, 0.85) 0%, rgba(26, 60, 110, 0.6) 100%);
}

.banner-slide .slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.banner-slide .slide-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.banner-slide .slide-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.banner-slide .slide-content .btn {
    display: inline-block;
    padding: 12px 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.banner-slide .slide-content .btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.banner-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.banner-dots .dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.banner-arrow.prev {
    left: 30px;
}

.banner-arrow.next {
    right: 30px;
}

/* ==================== Section Styles ==================== */
.section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 20px;
}

/* ==================== About Preview (Home) ==================== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    height: 380px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 60px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    border: 40px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.about-text h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 14px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ==================== Business Cards ==================== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.business-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary);
}

.business-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #2A5CAA 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.business-card h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.business-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==================== Solution Cards ==================== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.solution-card .card-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.solution-card .card-header h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.solution-card .card-header p {
    font-size: 14px;
    opacity: 0.8;
}

.solution-card .card-body {
    padding: 24px 30px;
}

.solution-card .card-body p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.solution-card .features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.solution-card .features span {
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* ==================== Stats Counter ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: #fff;
}

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

.stat-item .number span {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.8;
}

.stat-item .label {
    font-size: 15px;
    opacity: 0.8;
}

/* ==================== News List ==================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.news-card .card-image {
    height: 200px;
    background: linear-gradient(135deg, #E8F0FE 0%, #D4E4FC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 40px;
}

.news-card .card-content {
    padding: 20px;
}

.news-card .card-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.news-card .card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.news-card .card-excerpt {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== Partners ==================== */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.partner-item {
    width: 160px;
    height: 80px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.partner-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

/* ==================== Page Header (inner pages) ==================== */
.page-header {
    margin-top: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header .breadcrumb {
    font-size: 14px;
    opacity: 0.7;
}

.page-header .breadcrumb a:hover {
    opacity: 0.8;
    color: #fff;
}

/* ==================== About Page ==================== */
.about-content {
    padding: 60px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 4px solid var(--accent);
}

.about-section p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: 15px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.2);
}

.timeline-item .year {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-item .desc {
    font-size: 14px;
    color: var(--text-gray);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.culture-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.culture-card .icon {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

.culture-card h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.culture-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ==================== Business/Solution Page Detail ==================== */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.detail-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.detail-card .card-top {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
}

.detail-card .card-top.bg1 { background: linear-gradient(135deg, #1A3C6E, #2A5CAA); }
.detail-card .card-top.bg2 { background: linear-gradient(135deg, #0F5E3E, #1A8F5E); }
.detail-card .card-top.bg3 { background: linear-gradient(135deg, #8B4513, #CD853F); }
.detail-card .card-top.bg4 { background: linear-gradient(135deg, #4A2080, #7B4FBF); }

.detail-card .card-body {
    padding: 24px;
}

.detail-card .card-body h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.detail-card .card-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

.detail-card .card-body ul {
    margin-top: 14px;
}

.detail-card .card-body ul li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.detail-card .card-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ==================== News Page ==================== */
.news-list {
    padding: 50px 0;
}

.news-list-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item .item-image {
    width: 220px;
    height: 150px;
    background: linear-gradient(135deg, #E8F0FE 0%, #D4E4FC 100%);
    border-radius: var(--radius);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 30px;
}

.news-list-item .item-content {
    flex: 1;
}

.news-list-item .item-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.news-list-item .item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.news-list-item .item-title:hover {
    color: var(--primary);
}

.news-list-item .item-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-gray);
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination span.current {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ==================== Contact Page ==================== */
.contact-content {
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item .icon {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item .info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item .info p {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-form {
    background: var(--bg-light);
    padding: 36px;
    border-radius: var(--radius);
}

.contact-form h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

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

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-submit {
    padding: 12px 40px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--primary-dark);
}

.map-container {
    margin-top: 50px;
    border-radius: var(--radius);
    overflow: hidden;
    height: 360px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h4,
.footer-links h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact .item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact .item .icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .header-main .container {
        height: 60px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 4px;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
    }

    .banner {
        margin-top: 60px;
        height: 360px;
    }

    .banner-slide .slide-content h1 {
        font-size: 26px;
    }

    .banner-slide .slide-content p {
        font-size: 14px;
    }

    .banner-arrow {
        display: none;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .about-preview {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        height: 240px;
    }

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

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

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

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

    .stat-item .number {
        font-size: 36px;
    }

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

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

    .page-header {
        margin-top: 60px;
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

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

    .news-list-item {
        flex-direction: column;
    }

    .news-list-item .item-image {
        width: 100%;
    }

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