:root {
    --primary: #0056b3;
    --primary-dark: #004494;
    --secondary: #f8f9fa;
    --text-main: #333333;
    --text-light: #6c757d;
    --green: #28a745;
    --orange: #fd7e14;
    --red: #dc3545;
    --blue: #0056b3;
    --darkblue: #0a3d6e;
    --teal: #20c997;
    --purple: #6f42c1;
    --yellow: #ffc107;
    --bg-gray: #f0f4f8;
    --white: #ffffff;
    --border-color: #e9ecef;
}

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

html,
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-gray);
    line-height: 1.5;
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.mt-20 {
    margin-top: 20px;
}

.m-0 {
    margin: 0;
}

.text-green {
    color: var(--green);
}

.text-orange {
    color: var(--orange);
}

.text-red {
    color: var(--red);
}

.text-blue {
    color: var(--blue);
}

.text-darkblue {
    color: var(--darkblue);
}

.text-gray {
    color: var(--text-light);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-green {
    background-color: var(--green);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-red {
    background-color: var(--red);
}

.bg-teal {
    background-color: var(--teal);
}

.bg-purple {
    background-color: var(--purple);
}

.bg-yellow {
    background-color: var(--yellow);
}

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

.rounded-box {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 24px;
    margin-bottom: 20px;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-size: 14px;
}

.btn-emergency {
    background-color: var(--primary);
    color: white;
}

.btn-emergency:hover {
    background-color: var(--primary-dark);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

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

.btn-white {
    background-color: white;
    color: var(--primary);
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    background-color: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
}

.header-title h1 {
    font-size: 18px;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

.header-title p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

.menu-btn .icon {
    width: 28px;
    height: 28px;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('https://placehold.co/1920x600/0a3d6e/ffffff?text=Street+Image');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: white;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 61, 110, 0.9) 0%, rgba(10, 61, 110, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.street-name {
    font-size: 48px;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slogan {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.qr-code {
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
}

.qr-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-box .icon {
    width: 32px;
    height: 32px;
}

.qr-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.qr-text strong {
    font-size: 14px;
    color: var(--primary);
}

/* Main Container Positioning */
main.container {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

/* Sections General */
.section {
    margin-bottom: 24px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0056b3, #0a3d6e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.3);
}

.icon-circle svg {
    width: 20px;
    height: 20px;
}

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.intro-text p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.intro-card {
    display: flex;
    background: #fff9e6;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f9ebc7;
}

.intro-card-img {
    width: 40%;
}

.intro-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-card-content {
    padding: 20px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro-card-content h4 {
    font-family: 'Playfair Display', serif;
    /* similar to image */
    font-size: 24px;
    color: #5c4033;
    margin-bottom: 4px;
}

.lifespan {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.bio-desc {
    font-size: 14px;
    font-weight: 500;
}

/* Info Grid (Khu pho) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0;
    background: #fafbfc;
}

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

.info-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.green-icon {
    background-color: var(--green);
}

.red-icon {
    background-color: var(--red);
}

.orange-icon {
    background-color: var(--orange);
}

.info-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.info-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
}

.info-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-details {
    font-size: 13px;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 12px;
}

.info-phone {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

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

/* Security Card */
.security-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    background: #f8fbff;
}

.security-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.security-icon {
    width: 56px;
    height: 56px;
    background: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.security-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.security-note {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    text-align: right;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-item {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.service-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

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

.service-icon svg {
    width: 20px;
    height: 20px;
}

.service-title {
    font-size: 13px;
    font-weight: 600;
}

/* News Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

.news-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-img {
    height: 180px;
    width: 100%;
}

.news-content {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.news-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content .btn-link {
    margin-top: auto;
}

.news-img-link:hover img {
    transform: scale(1.05);
}

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

/* Banner */
.banner-section {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    z-index: 1;
}

.banner-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 71, 161, 0.95) 0%, rgba(13, 71, 161, 0.7) 45%, rgba(13, 71, 161, 0) 75%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -webkit-mask-image: linear-gradient(90deg, black 0%, black 45%, transparent 75%);
    mask-image: linear-gradient(90deg, black 0%, black 45%, transparent 75%);
    z-index: -1;
}

.banner-text {
    position: relative;
    z-index: 1;
}

.banner-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.banner-text h2 {
    font-size: 28px;
    color: #ffc107;
    font-weight: 800;
}

/* Footer */
.footer {
    background-color: var(--darkblue);
    color: white;
    padding-top: 40px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr auto;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-col:last-child {
        justify-self: end;
        width: max-content;
        border-left: 1px solid rgba(255, 255, 255, 0.25);
        padding-left: 20px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo img {
    height: 48px;
}

.footer-logo h3 {
    font-size: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 14px;
    color: #ccc;
    line-height: 1.5;
}

.footer-label {
    color: white;
    font-weight: 600;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 14px;
}

.footer-links li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ccc;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.zalo {
    background-color: #0088FF;
    font-size: 11px;
}

.social-icon.fb {
    background-color: #1877F2;
    font-size: 18px;
}

.social-icon.yt {
    background-color: #FF0000;
    font-size: 22px;
}

.social-icon.web {
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-qr {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 8px;
    margin-top: 4px;
}

.qr-box-small {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 6px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.qr-box-small img {
    width: 100%;
    height: 100%;
    display: block;
}

.qr-text-small {
    font-size: 13px;
    color: #ccc;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #aaa;
}

.footer-bottom-inner p {
    margin-bottom: 0;
}

/* Bio Read More */
.bio-content-wrapper {
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

.bio-content-wrapper.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.bio-content-wrapper.expanded::after {
    display: none;
}

.intro-grid {
    align-items: flex-start;
}

/* Security Card */
.security-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    background-color: white;
}

.security-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.security-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0056b3, #0a3d6e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.security-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.security-right {
    display: flex;
    align-items: center;
    gap: 24px;
    border-left: 1px solid #e2e8f0;
    padding-left: 24px;
}

.security-note {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
    font-size: 14px;
}

.security-note strong {
    color: var(--darkblue);
    font-size: 16px;
}

.security-right .btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    white-space: nowrap;
}

.security-right .btn-primary svg {
    width: 20px;
    height: 20px;
}

.security-left .info-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 4px;
}

.security-left .info-phone svg {
    width: 16px;
    height: 16px;
}

.security-left .info-label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.security-left .info-name {
    font-size: 18px;
    font-weight: 700;
}

/* Bottom Sheet */
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bottom-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.bottom-sheet.dragging {
    transition: none !important;
}

.bottom-sheet-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
    position: relative;
    cursor: grab;
    flex-shrink: 0;
}

.bottom-sheet-header:active {
    cursor: grabbing;
}

.bottom-sheet-drag-handle {
    width: 40px;
    height: 5px;
    background-color: #cbd5e1;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.bottom-sheet-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--darkblue);
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

.bottom-sheet-body {
    padding: 20px;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bs-map-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}


/* Specific Bottom Sheet Content Styles */
.bs-search-box {
    margin-bottom: 16px;
}

.bs-search-box .input-group {
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.bs-search-box .input-group-text {
    padding: 10px 15px;
    color: #64748b;
    border: none;
    background: transparent;
}

.bs-search-box .form-control {
    flex: 1;
    border: none;
    padding: 12px;
    outline: none;
    box-shadow: none;
}

.bs-search-box .form-control:focus {
    box-shadow: none;
}

.bs-search-box .btn {
    border-radius: 0;
    padding: 12px 20px;
    font-weight: 600;
}

.bs-filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bs-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #f1f5f9;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bs-filter-item:hover,
.bs-filter-item.active {
    background-color: var(--blue);
    color: white;
}

.bs-list-item {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bs-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bs-list-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--darkblue);
}

.bs-list-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.bs-list-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.bs-list-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    padding: 8px;
}

/* Expand Mode (Added via JS later if needed, but handled by changing class) */
.news-grid-expanded {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

/* =========================================
   Mobile Responsiveness (Max-width: 768px)
   ========================================= */
@media (max-width: 768px) {

    /* Header */
    .header {
        padding: 12px;
        justify-content: center;
    }

    .header-left {
        width: 100%;
        justify-content: center;
    }

    .logo img {
        height: 36px;
    }

    .header-title h1 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .header-title p {
        font-size: 11px;
        margin-bottom: 0;
    }

    .header-right {
        display: none;
    }

    /* Grids */
    .intro-grid {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .intro-card {
        flex-direction: column;
    }

    .intro-card-img {
        width: 100%;
        height: 200px;
    }

    .intro-card-content {
        width: 100%;
        padding: 16px;
    }

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

    .info-card {
        padding: 10px;
    }

    .info-card .info-icon {
        width: 32px;
        height: 32px;
    }
    
    .info-card .info-icon svg {
        width: 16px;
        height: 16px;
    }

    .info-card .info-label {
        font-size: 10px;
    }

    .info-card .info-name {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .info-card .info-details {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .info-card .info-phone {
        font-size: 12px;
        gap: 4px;
    }


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

    .service-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 16px 8px;
        gap: 8px;
    }

    .service-item .service-title {
        font-size: 13px;
        line-height: 1.3;
    }

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

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

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

    .footer-logo img {
        height: 36px;
    }

    /* Banner */
    .banner-overlay {
        padding: 0 20px;
        position: relative;
        background: rgba(13, 71, 161, 0.85);
    }

    .banner-overlay::before {
        display: none;
    }

    .banner-text h2 {
        font-size: 20px;
    }

    .banner-text h3 {
        font-size: 14px;
    }

    /* Security Card */
    .security-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .security-right {
        width: 100%;
        display: block;
    }

    .security-note {
        text-align: left;
        margin-bottom: 12px;
    }

    .security-right .btn {
        width: 100%;
        justify-content: center;
    }
}