* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.9) 0%, rgba(13, 71, 161, 0.9) 100%);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-name {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    transition: all 0.3s ease;
}

.logo-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.3;
    text-align: justify;
    text-align-last: justify;
}

.logo-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.logo-subtitle {
    font-size: 18px;
    color: #ff9800;
    font-weight: 800;
    transition: all 0.3s ease;
}

.logo-phone {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.35);
    transition: all 0.3s ease;
}

.logo-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

header.scrolled .logo-name {
    color: #1a73e8;
}

header.scrolled .logo-tagline {
    color: #666;
}

header.scrolled .logo-subtitle {
    color: #ff9800;
}

header.scrolled .logo-phone {
    color: #fff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.logo img {
    height: 45px;
    width: auto;
    border-radius: 6px;
}

/* 移动端联系信息，PC端隐藏 */
.mobile-contact {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative;
    margin-left: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links li:hover a {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

header.scrolled .nav-links li a {
    color: #333;
}

header.scrolled .nav-links li:hover a {
    color: #1a73e8;
    background-color: rgba(26, 115, 232, 0.1);
}

/* 二级菜单 */
.nav-links li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
}

.nav-links li:hover .submenu {
    display: block;
}

.nav-links li .submenu li {
    margin: 0;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.nav-links li .submenu li:last-child {
    border-bottom: none;
}

.nav-links li .submenu li a {
    padding: 5px 0;
}

/* 汉堡菜单 */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Banner样式 */
.banner {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.95) 0%, rgba(13, 71, 161, 0.95) 100%), url('../公司所在位置外景图.jpg') center/cover no-repeat;
    color: #fff;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.banner .container {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.banner p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.banner .btn {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 35px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 核心优势 */
.advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
}

.advantages h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.advantages .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-item {
    background-color: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #0d47a1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.15);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    transition: all 0.4s ease;
}

.advantage-item:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

.advantage-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 服务介绍 */
.services {
    padding: 80px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.services .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background: linear-gradient(145deg, #fff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, #0d47a1);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.service-item:hover {
    border-color: rgba(26, 115, 232, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.12);
}

.service-item:hover::after {
    width: 60px;
}

.service-item .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(13, 71, 161, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #1a73e8;
    transition: all 0.4s ease;
}

.service-item:hover .icon {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* 区县覆盖 */
.coverage {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.coverage h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.district-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.district-tag {
    padding: 10px 25px;
    background-color: #fff;
    border: 1px solid #1a73e8;
    border-radius: 20px;
    color: #1a73e8;
    font-size: 14px;
    transition: all 0.3s ease;
}

.district-tag:hover {
    background-color: #1a73e8;
    color: #fff;
}

/* 页脚 - 极简低调风格 */
footer {
    background-color: #333;
    padding: 40px 0 20px;
    margin-top: 40px;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a,
.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-links a:hover {
    color: #1a73e8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section i {
    margin-right: 10px;
    color: #1a73e8;
}

.wechat-qrcode {
    text-align: center;
}

.wechat-qrcode img {
    border-radius: 8px;
    margin-bottom: 8px;
}

.wechat-qrcode p {
    font-size: 12px !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #666;
    font-size: 11px;
    line-height: 1.6;
    margin: 4px 0;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #999;
    text-decoration: underline;
}

/* 悬浮组件 */
.float-widget {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.float-btn.call {
    background-color: #25d366;
    width: auto;
    border-radius: 30px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: bold;
}

.float-btn.wechat {
    background-color: #1a73e8;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* 微信二维码弹窗 */
.wechat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.wechat-modal.show {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.modal-content .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal-content .close-btn:hover {
    color: #333;
}

.modal-content h3 {
    margin-bottom: 20px;
    color: #333;
}

.qrcode-placeholder {
    width: 200px;
    height: 200px;
    background-color: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.qrcode-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 资讯列表 */
.news-list {
    padding: 100px 0 60px;
}

.news-list h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.news-items {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    padding: 30px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.news-item:hover {
    background-color: #f8f9fa;
}

.news-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.news-item h3 a {
    color: #333;
    text-decoration: none;
}

.news-item h3 a:hover {
    color: #1a73e8;
}

.news-item .meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-item .excerpt {
    color: #666;
    line-height: 1.6;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    list-style: none;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.pagination li a:hover,
.pagination li.active a {
    background-color: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

/* 资讯详情 */
.news-detail {
    padding: 100px 0 60px;
    max-width: 800px;
    margin: 0 auto;
}

.news-detail .title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.news-detail .meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-detail .content {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.news-detail .content p {
    margin-bottom: 20px;
}

/* 评论区占位 */
.comment-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.comment-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.comment-placeholder {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #999;
}

/* 公司外景展示 */
.office-showcase {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.office-showcase h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.office-showcase .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.office-gallery {
    margin-bottom: 30px;
}

.office-main-photo {
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.office-main-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.office-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-box i {
    font-size: 24px;
    color: #1a73e8;
    margin-right: 15px;
    margin-top: 5px;
}

.info-box h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.info-box p {
    color: #666;
    font-size: 14px;
}

/* 联系我们 */
.contact-page {
    padding: 100px 0 60px;
}

.contact-page h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.contact-info {
    padding: 30px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 30px;
    color: #333;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info .info-item .icon {
    font-size: 24px;
    color: #1a73e8;
    margin-right: 15px;
}

.contact-info .info-item p {
    color: #666;
}

.contact-info .info-item a {
    color: #1a73e8;
    text-decoration: none;
}

/* 公司外景照片 */
.office-photo {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.office-photo h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.office-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.office-photo p {
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* 地图容器 */
.map-container {
    width: 100%;
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 20px;
}

.map-marker {
    font-size: 48px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.map-placeholder h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.map-placeholder p {
    color: rgba(255,255,255,0.9);
    margin: 5px 0;
}

.map-placeholder .coordinates {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.map-placeholder .map-hint {
    margin-top: 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    padding: 8px 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
}

/* 品牌服务页 */
.brand-service {
    padding: 100px 0 60px;
}

.brand-service h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: #1a73e8;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.1);
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
}

.category-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
}

.category-card ul li:last-child {
    border-bottom: none;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    /* 中等屏幕：电话字体变瘦长 */
    .logo-phone {
        font-size: 13px;
        font-stretch: condensed;
        padding: 5px 10px;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    /* 小屏手机：电话字体更瘦长 */
    .logo-phone {
        font-size: 11px;
        font-stretch: condensed;
        padding: 4px 8px;
        border-radius: 15px;
    }
    /* 联系我们页面响应式 */
    .contact-content {
        grid-template-columns: 1fr;
    }
    /* 公司外景响应式 */
    .office-main-photo img {
        height: 250px;
    }
    .office-info {
        grid-template-columns: 1fr;
    }
    /* 页脚响应式 */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 15px;
        width: 200px;
        background-color: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 8px 0;
        text-align: center;
        display: none;
    }

    .nav-links li.mobile-contact {
        display: block;
    }

    .nav-links li a {
        text-align: center;
        padding: 10px 0;
    }

    .nav-links li .submenu {
        position: static;
        box-shadow: none;
        border: 1px solid #eee;
        margin-top: 8px;
        padding: 10px;
        border-radius: 4px;
    }

    .nav-links li .submenu li {
        text-align: center;
    }

    .mobile-contact {
        display: block;
    }

    .mobile-qrcode {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .mobile-qrcode img {
        border-radius: 8px;
        margin-bottom: 8px;
    }

    .mobile-qrcode p {
        font-size: 12px;
        color: #666;
        margin: 0;
    }

    .mobile-phone {
        display: inline-block;
        font-size: 18px;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }

    .hamburger {
        display: block;
    }

    .banner h1 {
        font-size: 32px;
    }

    .banner p {
        font-size: 16px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .float-widget {
        right: 15px;
        bottom: 15px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .banner {
        padding: 100px 0 60px;
    }

    .banner h1 {
        font-size: 28px;
    }

    .banner p {
        font-size: 14px;
    }

    .district-tags {
        gap: 10px;
    }

    .district-tag {
        padding: 8px 15px;
        font-size: 12px;
    }
}