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

html {
    scroll-behavior: smooth;
}

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

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

.topbar {
    background-color: #075d92;
    padding: 8px 0;
}

.topbar-inner {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.topbar-inner span {
    color: #fff;
    font-size: 14px;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.brand-mark {
    width: 48px;
    height: 48px;
    background-color: #075d92;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 12px;
}

.brand-copy strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.brand-copy small {
    font-size: 12px;
    color: #666;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #075d92;
}

.nav-mobile {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

.header-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #e84a3b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.header-call svg {
    width: 20px;
    height: 20px;
}

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 93, 146, 0.8) 0%, rgba(7, 93, 146, 0.6) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero .eyebrow {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-copy {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #e84a3b;
    color: #fff;
}

.btn-primary:hover {
    background-color: #d63929;
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.announce-strip {
    background-color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.announce-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hot-keywords {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hot-keywords strong {
    font-size: 14px;
    color: #666;
}

.hot-keywords a {
    text-decoration: none;
    color: #075d92;
    font-size: 14px;
}

.hot-keywords a:hover {
    color: #e84a3b;
}

.site-search {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 5px 15px;
}

.site-search input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 14px;
    width: 180px;
    outline: none;
}

.site-search button {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.site-search button svg {
    width: 18px;
    height: 18px;
}

.quick-panel {
    padding: 50px 0;
    background-color: #fff;
}

.classic-title {
    text-align: center;
    margin-bottom: 40px;
}

.classic-title span {
    font-size: 12px;
    color: #075d92;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.classic-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.classic-title p {
    font-size: 16px;
    color: #666;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.promise-grid article {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.promise-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promise-grid svg {
    width: 48px;
    height: 48px;
    color: #075d92;
    margin-bottom: 15px;
}

.promise-grid strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.promise-grid span {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.slogan-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #075d92 0%, #0a7ab8 100%);
}

.slogan-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
    gap: 20px;
}

.slogan-band .eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.slogan-band h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.slogan-band p {
    font-size: 16px;
    opacity: 0.9;
}

.slogan-band a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e84a3b;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.slogan-band a:hover {
    background-color: #d63929;
}

.section {
    padding: 60px 0;
    background-color: #fff;
}

.service-section {
    background-color: #f8f9fa;
}

.service-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.service-menu {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-menu strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.service-menu a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
}

.service-menu a:hover {
    color: #075d92;
}

.menu-call {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.menu-call span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.menu-call a {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #e84a3b;
    border: none;
    padding: 0;
    margin-bottom: 8px;
}

.menu-call em {
    display: block;
    font-size: 12px;
    color: #999;
    font-style: normal;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-item svg {
    width: 40px;
    height: 40px;
    color: #075d92;
    margin: 20px 20px 10px;
}

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 20px 10px;
}

.service-item p {
    font-size: 14px;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.inspection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.inspection-grid article {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.inspection-grid svg {
    width: 48px;
    height: 48px;
    color: #075d92;
    margin-bottom: 15px;
}

.inspection-grid h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.inspection-grid p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.advantages-section {
    background-color: #f8f9fa;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-grid article {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.advantage-grid span {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: #f0f0f0;
}

.advantage-grid h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.advantage-grid p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.equipment-section {
    background-color: #075d92;
    color: #fff;
}

.equipment-section .classic-title h2,
.equipment-section .classic-title p {
    color: #fff;
}

.equipment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.equipment-panel {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
}

.equipment-panel span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.equipment-panel h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0;
}

.equipment-panel p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.equipment-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.equipment-list article {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.equipment-list svg {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
}

.equipment-list strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.equipment-list small {
    font-size: 12px;
    opacity: 0.8;
}

.repair-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.repair-panel article {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
}

.repair-panel span {
    font-size: 32px;
    font-weight: 700;
    opacity: 0.3;
}

.repair-panel h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.repair-panel p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

.coverage-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.coverage-layout article {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.coverage-layout span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #075d92;
    display: block;
    margin-bottom: 10px;
}

.coverage-layout h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.coverage-layout p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.coverage-layout ul {
    list-style: none;
}

.coverage-layout li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.coverage-layout li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #075d92;
    font-weight: bold;
}

.coverage-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #075d92;
    padding: 40px;
    border-radius: 12px;
    color: #fff;
    flex-wrap: wrap;
    gap: 20px;
}

.coverage-summary span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    display: block;
    margin-bottom: 8px;
}

.coverage-summary h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.coverage-summary p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
}

.coverage-summary a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #075d92;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.coverage-summary a:hover {
    background-color: #f0f0f0;
}

.case-section {
    background-color: #075d92;
    color: #fff;
}

.light-title h2,
.light-title p {
    color: #fff;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.case-grid article {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s;
}

.case-grid article:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.case-grid strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.case-grid span {
    font-size: 14px;
    opacity: 0.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-steps article {
    text-align: center;
    position: relative;
}

.process-steps span {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #075d92;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 20px;
}

.process-steps h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.process-steps p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.cities-section {
    background-color: #f8f9fa;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.cities-grid::-webkit-scrollbar {
    width: 6px;
}

.cities-grid::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 3px;
}

.cities-grid::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.cities-grid::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

.cities-grid article {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cities-grid article:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cities-grid a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.cities-grid a:hover {
    color: #075d92;
}

.guide-section {
    background-color: #fff;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.guide-grid article {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.guide-grid article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.guide-grid span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #075d92;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.guide-grid h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.guide-grid h3 a {
    color: inherit;
    text-decoration: none;
}

.guide-grid h3 a:hover {
    color: #075d92;
}

.guide-grid p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.guide-more {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.guide-more a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f9fa;
    color: #333;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.guide-more a:hover {
    background-color: #075d92;
    color: #fff;
    border-color: #075d92;
}

.content-hub-section {
    background-color: #f8f9fa;
}

.teams-section {
    background-color: #075d92;
    padding: 50px 0;
}

.teams-section .classic-title h2,
.teams-section .classic-title p,
.teams-section .wrap > p,
.teams-section .wrap ul,
.teams-section .wrap li {
    color: #fff;
}

.teams-section .wrap ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.teams-section .wrap li {
    margin-bottom: 8px;
}

.team-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    background-color: #075d92;
    padding: 25px 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.team-intro > div {
    flex: 1;
}

.team-intro span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.team-intro h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.team-intro ul {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-intro li {
    font-size: 14px;
    color: #fff;
    padding: 12px 18px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
    padding-left: 32px;
}

.team-intro li::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.team-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.card-top span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #075d92;
    font-weight: 600;
    padding: 5px 12px;
    background-color: rgba(7, 93, 146, 0.1);
    border-radius: 15px;
}

.card-top svg {
    width: 20px;
    height: 20px;
    color: #075d92;
}

.master-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
}

.master-title strong {
    width: 40px;
    height: 40px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.master-title strong.red {
    background-color: #e84a3b;
}

.master-title strong.blue {
    background-color: #075d92;
}

.master-title strong.orange {
    background-color: #f59e0b;
}

.master-title strong.gray {
    background-color: #6b7280;
}

.master-title strong.green {
    background-color: #10b981;
}

.master-title h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.master-title small {
    font-size: 12px;
    color: #666;
    display: block;
}

.team-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding: 0 18px 15px;
    margin: 0;
}

.team-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 18px 12px;
    margin: 0;
}

.team-tags li {
    font-size: 12px;
    color: #fff;
    padding: 5px 10px;
    background-color: rgba(7, 93, 146, 0.8);
    border-radius: 4px;
}

.team-note {
    font-size: 13px;
    color: #666;
    padding: 12px 16px;
    margin: 0 18px 18px;
    background-color: #f8f9fa;
    border-left: 3px solid #075d92;
    border-radius: 0 4px 4px 0;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
    background-color: #fafafa;
    border-top: 1px solid #eee;
}

.phone-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.phone-list a.red {
    background-color: #e84a3b;
}

.phone-list a.red:hover {
    background-color: #d33e30;
}

.phone-list a.blue {
    background-color: #075d92;
}

.phone-list a.blue:hover {
    background-color: #064a75;
}

.phone-list a.orange {
    background-color: #f59e0b;
}

.phone-list a.orange:hover {
    background-color: #d97706;
}

.phone-list svg {
    width: 16px;
    height: 16px;
}

.about-section {
    background-color: #f8f9fa;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-media img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-copy {
    padding: 20px 0;
}

.about-copy .classic-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-copy p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-stats span {
    text-align: center;
}

.about-stats strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #075d92;
    margin-bottom: 5px;
}

.about-stats em {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.contact-section {
    background-color: #075d92;
    padding: 50px 0;
}

.contact-section .classic-title h2,
.contact-section .classic-title p {
    color: #fff;
}

.contact-panel {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-info div {
    text-align: center;
}

.contact-info svg {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.contact-info span {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.contact-info a {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.site-footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 22px;
}

.footer-brand strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.footer-brand small {
    font-size: 12px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #999;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #e84a3b;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
     color: #fff;
}

.footer-bottom a {
    color: #fff;
}

.news-section {
    background-color: #fff;
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.news-filters a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.news-filters a:hover {
    background-color: #075d92;
    color: #fff;
}

.news-filters a.active {
    background-color: #075d92;
    color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.news-item .news-category {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(7, 93, 146, 0.1);
    color: #075d92;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 15px;
}

.news-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-item h3 a {
    color: inherit;
    text-decoration: none;
}

.news-item h3 a:hover {
    color: #075d92;
}

.news-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-item .news-date {
    font-size: 13px;
    color: #999;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding-bottom: 20px;
}

.pagination a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination a:hover {
    background-color: #075d92;
    color: #fff;
    border-color: #075d92;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-numbers a {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
}

.pagination-current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #075d92;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #999;
}

.no-news {
    text-align: center;
    padding: 60px;
    color: #999;
}

.no-news svg {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.news-detail-section {
    background-color: #fff;
}

.news-detail {
    max-width: 800px;
    margin: 0 auto;
}

.news-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-meta .news-category {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(7, 93, 146, 0.1);
    color: #075d92;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.news-meta .news-date,
.news-meta .news-update {
    font-size: 14px;
    color: #999;
}

.news-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.news-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #333;
}

.news-content p {
    margin-bottom: 18px;
}

.news-content ul,
.news-content ol {
    margin: 18px 0;
    padding-left: 30px;
}

.news-content li {
    margin-bottom: 10px;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.news-content a {
    color: #075d92;
    text-decoration: none;
}

.news-content a:hover {
    text-decoration: underline;
}

.news-actions {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .wrap {
        padding: 0 15px;
    }

    .topbar {
        display: none;
    }

    .site-header {
        position: static;
        box-shadow: none;
        border-bottom: 1px solid #eee;
    }

    .header-inner {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
        align-items: flex-start;
    }

    .brand {
        width: 100%;
        justify-content: flex-start;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
        font-size: 26px;
        margin-right: 12px;
        border-radius: 8px;
    }

    .brand-copy strong {
        font-size: 20px;
        font-weight: 700;
        color: #333;
    }

    .brand-copy small {
        font-size: 13px;
        color: #666;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        width: 100%;
        justify-content: space-around;
        border-top: 1px solid #eee;
        padding-top: 12px;
        margin-top: 5px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 8px 5px;
        color: #666;
        border-bottom: 2px solid transparent;
        transition: all 0.3s;
        font-weight: 500;
        flex: 1;
        text-align: center;
    }

    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: inline;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #075d92;
        border-bottom-color: #075d92;
    }

    .header-call {
        display: none;
    }

    body {
        padding-bottom: 80px;
    }

    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        gap: 10px;
        padding: 10px 15px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
        background-color: #fff;
        box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .mobile-bottom-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 15px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        color: #fff;
    }

    .mobile-bottom-bar .btn-brand {
        background-color: #075d92;
    }

    .mobile-bottom-bar .btn-hotline {
        background-color: #e84a3b;
    }

    .mobile-bottom-bar svg {
        width: 20px;
        height: 20px;
    }

    main {
        padding-bottom: 80px;
    }

    .hero {
        height: auto;
        min-height: 450px;
        padding-top: 10px;
    }

    .hero-media {
        height: 450px;
    }

    .hero-content {
        padding-top: 0;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .hero .eyebrow {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .hero-copy {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 25px;
        line-height: 1.6;
    }

    .hero-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .hero-actions .btn {
        display: flex;
        padding: 12px 15px;
        font-size: 13px;
        flex: 1;
        max-width: 160px;
        justify-content: center;
        gap: 6px;
        white-space: nowrap;
    }

    .announce-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hot-keywords {
        justify-content: center;
    }

    .hot-keywords strong {
        font-size: 12px;
    }

    .hot-keywords a {
        font-size: 12px;
    }

    .site-search input {
        width: 120px;
        font-size: 12px;
    }

    .quick-panel {
        padding: 30px 0;
    }

    .classic-title {
        margin-bottom: 30px;
    }

    .classic-title h2 {
        font-size: 24px;
    }

    .classic-title p {
        font-size: 14px;
    }

    .promise-grid {
        gap: 20px;
    }

    .promise-grid article {
        padding: 20px;
    }

    .promise-grid svg {
        width: 40px;
        height: 40px;
    }

    .promise-grid strong {
        font-size: 16px;
    }

    .promise-grid span {
        font-size: 13px;
    }

    .slogan-section {
        padding: 40px 0;
    }

    .slogan-band {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .slogan-band h2 {
        font-size: 26px;
    }

    .slogan-band p {
        font-size: 14px;
    }

    .section {
        padding: 40px 0;
    }

    .service-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-photo {
        height: 150px;
    }

    .equipment-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .equipment-card {
        padding: 20px;
    }

    .equipment-card h3 {
        font-size: 16px;
    }

    .repair-panel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .repair-card {
        padding: 20px;
    }

    .repair-card h3 {
        font-size: 16px;
    }

    .process-steps {
        flex-direction: column;
        gap: 20px;
    }

    .process-step {
        width: 100%;
    }

    .process-step span {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .process-step h3 {
        font-size: 16px;
    }

    .process-step p {
        font-size: 14px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .advantage-grid article {
        text-align: left;
        padding: 20px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .advantage-grid span {
        position: static;
        font-size: 32px;
        font-weight: 700;
        color: #075d92;
        flex-shrink: 0;
        width: 40px;
        text-align: center;
    }

    .advantage-grid h3 {
        font-size: 16px;
        margin-top: 5px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-media img {
        width: 100%;
        border-radius: 12px;
    }

    .about-copy {
        padding: 0;
    }

    .about-copy p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-stats {
        flex-direction: column;
        gap: 12px;
    }

    .about-stats span {
        display: block;
        background-color: #f0f5fa;
        padding: 18px 20px;
        border-radius: 10px;
        text-align: left;
    }

    .about-stats strong {
        font-size: 28px;
        color: #075d92;
        margin-bottom: 3px;
    }

    .about-stats em {
        font-size: 14px;
        color: #666;
    }

    .cities-grid {
        max-height: 300px;
        grid-template-columns: 1fr 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .case-card {
        padding: 20px;
    }

    .case-card h3 {
        font-size: 16px;
    }

    .cities-list {
        flex-direction: column;
        gap: 15px;
    }

    .cities-list a {
        font-size: 14px;
    }

    .coverage-summary {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card h3 {
        font-size: 16px;
    }

    .contact-card a {
        font-size: 16px;
    }

    .contact-panel {
        padding: 25px 15px;
    }

    .contact-info {
        flex-direction: row;
        gap: 20px;
        justify-content: space-around;
    }

    .contact-info div {
        flex: 1;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 20px 10px;
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }

    .contact-info svg {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .contact-info span {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .contact-info a {
        font-size: 20px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        justify-content: center;
        gap: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .news-filters {
        gap: 8px;
        margin-bottom: 25px;
    }

    .news-filters a {
        padding: 8px 15px;
        font-size: 13px;
    }

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

    .news-item {
        padding: 20px;
    }

    .news-item h3 {
        font-size: 16px;
    }

    .news-item p {
        font-size: 14px;
    }

    .pagination {
        gap: 10px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .pagination a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .pagination-numbers a {
        width: 36px;
        height: 36px;
    }

    .pagination-current {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .news-meta {
        font-size: 12px;
    }

    .news-detail-header h1 {
        font-size: 24px;
    }

    .news-detail-meta {
        font-size: 13px;
    }

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

    .news-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .admin-login {
        padding: 40px 20px;
    }

    .admin-login h1 {
        font-size: 24px;
    }

    .admin-form input,
    .admin-form textarea,
    .admin-form select {
        font-size: 14px;
        padding: 12px;
    }

    .admin-form button {
        padding: 12px 25px;
        font-size: 15px;
    }

    .admin-news table {
        font-size: 12px;
    }

    .admin-news th,
    .admin-news td {
        padding: 8px 5px;
    }

    .admin-news .btn {
        padding: 6px 12px;
        font-size: 12px;
        width: auto;
    }

    .team-intro {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        background-color: #075d92;
    }

    .team-intro > div {
        flex: none;
        width: 100%;
    }

    .team-intro h3 {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
    }

    .team-intro ul {
        flex: none;
        width: 100%;
        gap: 12px;
    }

    .team-intro li {
        font-size: 15px;
        padding: 15px 20px;
        padding-left: 40px;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 10px;
        line-height: 1.5;
    }

    .team-intro li::before {
        left: 18px;
        width: 10px;
        height: 10px;
        background-color: #fff;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 320px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-copy {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 180px;
    }

    .classic-title h2 {
        font-size: 22px;
    }

    .slogan-band h2 {
        font-size: 22px;
    }

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

    .nav-links a {
        font-size: 12px;
        padding: 5px 10px;
    }

    .topbar-inner {
        flex-direction: column;
        gap: 5px;
    }
}