body, h1, h2, h3, h4, h5, p, ul, li, a, button, input {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #f8f9fa;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

main {
    overflow-x: hidden;
    width: 100%;
}

.welcome-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.welcome-intro {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-logo {
    width: 200px;
    height: auto;
}

.welcome-text {
    flex: 1;
}

.welcome-text span {
    color: #007bff;
    font-weight: 600;
}

.welcome-text h2 {
    font-size: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.welcome-text p {
    line-height: 1.6;
    color: #555;
}

.read-more-btn {
    background-color: rgb(1, 59, 18);
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    align-self: center;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.read-more-btn:hover {
    background-color: rgb(1, 97, 30);
}

.objectives-section {
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    margin-bottom: 2rem;
}

.objectives-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.objectives-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.objectives-container h2 {
    font-size: 2.5rem;
    color: rgb(1, 59, 18);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.objectives-container h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(1, 59, 18), rgb(0, 117, 35));
    margin: 1rem auto;
    border-radius: 2px;
}

.objectives-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.objective-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid rgb(1, 59, 18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objective-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgb(1, 59, 18), rgb(0, 117, 35));
}

.objective-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.objective-number {
    background: linear-gradient(135deg, rgb(1, 59, 18), rgb(0, 117, 35));
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 15px rgba(1, 59, 18, 0.3);
}

.objective-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    text-align: center;
    font-weight: 500;
}

.info-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;
}

.info-card {
    background-color: rgb(1, 59, 18);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
}

.vision-card {
    text-align: center;
}

.mission-card {
    text-align: center;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-card p {
    line-height: 1.6;
    color: #f0f0f0;
}

.doctor-card {
    background-color: rgb(1, 59, 18);
    color: #fff;
    border: none;
    box-shadow: none;
    text-align: center;
}

.doctor-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #fff;
    object-fit: cover;
}

.doctor-card h4 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.doctor-card h5 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.doctor-card p {
    color: #f0f0f0;
    line-height: 1.4;
}

.slider-dots {
    margin-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #ffffff;
    background-color: transparent;
}

.slider-dots span.active {
    background-color: rgb(1, 109, 33);
    border-color: #fff;
}

.protect-family-section {
    position: relative;
    padding: 5rem;
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: url('asset/image/24.png') no-repeat left center/cover;
    background-size: cover;
    border-radius: 15px;
    margin: 1rem 4.5rem;
    overflow: hidden;
    min-height: 490px;
    box-sizing: border-box;
}

.protect-family-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.protect-family-content,
.surveillance-card {
    position: relative;
    z-index: 1;
}

.protect-family-content {
    max-width: 50%;
}

.protect-family-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #f7b733;
    margin-bottom: 0.5rem;
}

.protect-family-content p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: #fff;
    font-weight: 400;
}

.surveillance-card {
    background-color: rgba(245, 245, 245, 0.9);
    color: #333;
    padding: 2rem;
    border-radius: 10px;
    min-width: 270px;
    max-width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    box-sizing: border-box;
    overflow: hidden;
}

.surveillance-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.surveillance-header > div {
    text-align: center;
}

.surveillance-icon {
    background-color: transparent;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.surveillance-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.surveillance-header h3 {
    font-size: 1.3rem;
}

.surveillance-stats ul {
    list-style: none;
}

.surveillance-stats li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    gap: 1rem;
}

.surveillance-stats li:last-child {
    border-bottom: none;
}

.surveillance-stats li > span:first-child {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.surveillance-stats .stat-number {
    font-weight: 700;
    color: #d9534f;
    font-size: 1.2rem;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: fit-content;
}

.surveillance-footer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.surveillance-footer i {
    flex-shrink: 0;
}

.surveillance-footer span {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}

.section-header h2 {
    font-size: 2rem;
    color: #333;
}

.section-header .read-more-link {
    border: 1px solid rgb(1, 59, 18);
    color: rgb(1, 59, 18);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.section-header .read-more-link:hover {
    background-color: rgb(1, 59, 18);
    color: #fff;
}

.read-more-mobile {
    display: none;
}

.read-more-mobile {
    border: 2px solid #8b0000;
    color: #8b0000;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.read-more-mobile:hover {
    background-color: #8b0000;
    color: #fff;
}

@media (max-width: 768px) {
    .read-more-btn,
    .read-more-link,
    .read-more-mobile,
    .section-header .read-more-link,
    button,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .contact-form button {
        min-height: 48px;
    }

    .slider-dots span,
    .hero-dot,
    .event-item,
    .calendar-grid .day {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section .services-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.services-section .cards-grid {
    display: flex;
    gap: 2rem;
    grid-template-columns: none;
    transition: transform 0.3s ease;
    will-change: transform;
    -webkit-overflow-scrolling: touch;
}

.services-section .service-card {
    flex: 0 0 calc(33.333% - 1.333rem);
}

.services-slider .slider-dots {
    text-align: center;
    margin-top: 1rem;
}

.services-slider .slider-dots span {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 3px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.services-slider .slider-dots span.active {
    background-color: rgb(0, 219, 66);
}

.services-secondary-slider .slider-dots span.active {
    background-color: rgb(95, 20, 20);
}

.services-secondary-grid {
    margin-top: 1.5rem;
}

.services-secondary-grid .service-card {
    background: transparent;
    box-shadow: none;
    border: none;
}

.services-secondary-grid .service-card-content {
    background-color: rgb(95, 20, 20);
}

.services-secondary-grid .service-card.meroon .service-card-content {
    background-color: rgb(95, 20, 20);
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid transparent;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card {
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card,
.service-card:link,
.service-card:visited,
.service-card:hover,
.service-card:active {
    text-decoration: none;
    color: inherit;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.news-card-content {
    background-color: rgb(1, 59, 18);
    color: #fff;
    padding: 1.5rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-content .date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: block;
}

.news-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
}

.news-card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    padding-right: 20px;
}

.news-card-content .arrow {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.service-card-content {
    background-color: rgb(1, 59, 18);
    color: #fff;
    padding: 0.9rem 1.2rem;
    position: static;
    display: flex;
    align-items: center;
    min-height: 68px;
    margin-top: -24px;
}

.service-card-content h3 {
    margin: 0;
}

.service-card-content h4 {
    margin: 0;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    text-align: left;
}

.service-card-content span:first-child {
    font-weight: 600;
    line-height: 1.4;
}

.service-card-content span:last-child {
    position: absolute;
    right: 1.5rem;
    bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.event-calendar-section {
    background-color: #fff8f8;
    padding: 3rem 1rem;
}

.event-calendar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.event-calendar-info {
    flex: 1;
}

.event-calendar-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.event-calendar-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.calendar {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex-basis: 400px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.calendar-grid span {
    padding: 0.5rem;
    color: #888;
}

.calendar-grid .day {
    color: #333;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    line-height: 2;
}

.calendar-grid .day:hover {
    background-color: #ffe0e0;
}

.calendar-grid .day.today {
    background-color: #d9edf7;
    color: #31708f;
}

.calendar-grid .day.selected-start,
.calendar-grid .day.selected-end {
    background-color: rgb(1, 59, 18);
    color: #fff;
}

.calendar-grid .day.in-range {
    background-color: #ffe0e0;
    border-radius: 0;
}

.event-list {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.event-item.active {
    background-color: rgb(1, 59, 18);
    color: #fff;
}

.event-item .date {
    font-size: 2rem;
    font-weight: 600;
    margin-right: 1.5rem;
    color: #888;
}

.event-item.active .date {
    color: #f0f0f0;
}

.event-item .details p {
    font-weight: 500;
    margin: 0;
}

.event-item.active .details p {
    color: #fff;
}

.event-item .details span {
    font-size: 0.9rem;
    color: #aaa;
}

.event-item.active .details span {
    color: #ddd;
}

.event-item .count {
    margin-left: auto;
    background-color: rgb(14, 122, 0);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.event-item.active .count {
    background-color: #fff;
    color: rgb(4, 106, 0);
}

.contact-section {
    padding: 4rem 2rem;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form-container {
    flex: 1;
}

.contact-form-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    height: 48px;
    box-sizing: border-box;
}

.contact-form .full-width {
    grid-column: 1 / -1;
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
    box-sizing: border-box;
}

.contact-form button {
    background-color: rgb(1, 59, 18);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    grid-column: 1 / -1;
    justify-self: start;
}

.contact-form button:hover {
    background-color: rgb(0, 117, 35);
}

.map-container {
    flex: 1;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .welcome-section {
        padding: 3rem 1.5rem;
    }

    .welcome-intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .welcome-logo {
        width: 150px;
    }

    .welcome-text h2 {
        font-size: 1.75rem;
    }

    .read-more-btn {
        margin-top: 1rem;
        padding: 0.7rem 1.5rem;
    }

    .info-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .objectives-section {
        padding: 2rem 1.5rem;
    }

    .objectives-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .objectives-container h2 {
        font-size: 2rem;
    }

    .protect-family-section {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 3rem 2rem;
        margin: 1rem 1.5rem;
        min-height: auto;
        background-position: center top;
    }

    .protect-family-content {
        max-width: 100%;
    }

    .protect-family-content h2 {
        font-size: 2.5rem;
    }

    .surveillance-card {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        min-width: auto;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-section .service-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .service-card-image {
        height: 230px;
    }

    .service-card-content {
        padding: 0.95rem 1.1rem;
        min-height: 70px;
    }

    .event-calendar-section {
        padding: 2.5rem 1.5rem;
    }

    .event-calendar-container {
        flex-direction: column;
        gap: 2rem;
    }

    .calendar {
        flex-basis: auto;
    }

    .event-list {
        width: 100%;
        max-width: 100%;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 2rem 1rem;
    }

    .welcome-logo {
        width: 120px;
    }

    .welcome-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .welcome-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .read-more-btn {
        margin-top: 1rem;
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .objectives-section {
        padding: 2rem 1rem;
        margin-bottom: 1.5rem;
    }

    .objectives-container h2 {
        font-size: 1.75rem;
    }

    .objective-item {
        padding: 1.5rem;
    }

    .objective-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .objective-text {
        font-size: 1rem;
    }

    .info-cards-container {
        margin-top: 1.5rem;
        gap: 1.25rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.5rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }

    .protect-family-section {
        padding: 2rem 1rem;
        margin: 1rem 0.5rem;
        border-radius: 10px;
        min-height: auto;
    }

    .protect-family-content h2 {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }

    .protect-family-content p {
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }

    .protect-family-content-p {
        font-size: 0.9rem !important;
    }

    .surveillance-card {
        padding: 1.25rem;
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }

    .surveillance-icon img {
        width: 60px;
        height: 60px;
    }

    .surveillance-header h3 {
        font-size: 1.1rem;
    }

    .surveillance-stats li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .surveillance-stats li > span:first-child {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .surveillance-stats .stat-number {
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .content-section {
        padding: 2.5rem 1rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header .read-more-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .news-section .section-header .read-more-link {
        display: none;
    }

    .news-section .read-more-mobile {
        display: inline-block;
        margin: 1rem auto 0 auto;
    }

    .services-section .section-header .read-more-link {
        display: none;
    }

    .services-section .read-more-mobile {
        display: inline-block;
        margin: 1rem auto 0 auto;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-section .service-card {
        flex: 0 0 100%;
    }

    .services-section .cards-grid {
        gap: 2rem;
    }

    .card-image {
        height: 180px;
    }

    .service-card-image {
        height: 200px;
    }

    .news-card-content {
        padding: 1.25rem;
    }

    .news-card-content h3 {
        font-size: 1rem;
    }

    .news-card-content p {
        font-size: 0.85rem;
        padding-right: 15px;
    }

    .news-card-content .date {
        font-size: 0.75rem;
    }

    .service-card-content {
        padding: 0.85rem 1rem;
        min-height: 62px;
        justify-content: center;
        text-align: center;
        margin-top: 0;
    }

    .service-card-content h4 {
        font-size: 0.95rem;
        line-height: 1.35;
        text-align: center;
    }

    .news-section .slider-dots {
        display: none;
    }

    .services-section .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 1.5rem;
    }

    .services-section .slider-dots span {
        width: 8px;
        height: 8px;
        margin: 0;
        cursor: pointer;
        padding: 4px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    .services-secondary-slider .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 1.5rem;
    }

    .services-secondary-slider .slider-dots span {
        width: 8px;
        height: 8px;
        margin: 0;
        cursor: pointer;
        padding: 4px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    .event-calendar-section {
        padding: 2rem 1rem;
    }

    .event-calendar-info h2 {
        font-size: 1.5rem;
    }

    .event-calendar-info p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .calendar {
        padding: 1rem;
    }

    .calendar-header {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .calendar-grid {
        gap: 0.35rem;
    }

    .calendar-grid span {
        padding: 0.4rem 0.25rem;
        font-size: 0.85rem;
    }

    .event-item {
        padding: 0.9rem 1rem;
        width: 100%;
    }

    .event-item .date {
        font-size: 1.5rem;
        margin-right: 1rem;
    }

    .event-item .details p {
        font-size: 0.9rem;
    }

    .event-item .details span {
        font-size: 0.8rem;
    }

    .event-item .count {
        width: 25px;
        height: 25px;
        font-size: 0.85rem;
    }

    .event-list {
        width: 100%;
        max-width: 100%;
    }

    .contact-section {
        padding: 2.5rem 1rem;
    }

    .contact-form-container h2 {
        font-size: 1.5rem;
    }

    .contact-form-container p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem 0.9rem;
        font-size: 0.95rem;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .contact-form button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 1.5rem 0.75rem;
    }

    .welcome-logo {
        width: 100px;
    }

    .welcome-text h2 {
        font-size: 1.25rem;
    }

    .welcome-text p {
        font-size: 0.9rem;
    }

    .read-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .objectives-section {
        padding: 1.5rem 0.75rem;
    }

    .objectives-container h2 {
        font-size: 1.5rem;
    }

    .objective-item {
        padding: 1.25rem;
    }

    .objective-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .objective-text {
        font-size: 0.95rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .protect-family-section {
        padding: 1.5rem 0.75rem;
        margin: 0.75rem 0.25rem;
    }

    .protect-family-content h2 {
        font-size: 1.75rem;
    }

    .protect-family-content p {
        font-size: 0.9rem;
    }

    .surveillance-card {
        padding: 1rem;
        min-width: auto;
        width: 100%;
    }

    .surveillance-icon img {
        width: 50px;
        height: 50px;
    }

    .surveillance-header h3 {
        font-size: 1rem;
    }

    .surveillance-stats li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        gap: 0.5rem;
    }

    .surveillance-stats li > span:first-child {
        font-size: 0.85rem;
    }

    .surveillance-stats .stat-number {
        font-size: 1rem;
    }

    .content-section {
        padding: 2rem 0.75rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-header .read-more-link {
        padding: 0.45rem 0.9rem;
        font-size: 0.85rem;
    }

    .card-image {
        height: 160px;
    }

    .service-card-image {
        height: 180px;
    }

    .news-card-content {
        padding: 1rem;
    }

    .news-card-content h3 {
        font-size: 0.95rem;
    }

    .news-card-content p {
        font-size: 0.8rem;
    }

    .service-card-content {
        padding: 0.75rem 0.9rem;
        min-height: 58px;
        justify-content: center;
        text-align: center;
        margin-top: 0;
    }

    .service-card-content h4 {
        font-size: 0.9rem;
        line-height: 1.35;
        text-align: center;
    }

    .services-section .slider-dots {
        margin-top: 1.25rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .services-section .slider-dots span {
        width: 6px;
        height: 6px;
        margin: 0;
    }

    .services-secondary-slider .slider-dots span {
        width: 6px;
        height: 6px;
        margin: 0;
    }

    .event-calendar-section {
        padding: 1.5rem 0.75rem;
    }

    .event-calendar-info h2 {
        font-size: 1.3rem;
    }

    .calendar {
        padding: 0.9rem;
    }

    .calendar-grid span {
        padding: 0.3rem 0.2rem;
        font-size: 0.8rem;
    }

    .event-item {
        padding: 0.75rem 0.9rem;
        width: 100%;
    }

    .event-item .date {
        font-size: 1.3rem;
    }

    .event-list {
        flex: 1;
        width: 90%;
        max-width: 100%;
    }

    .contact-section {
        padding: 2rem 0.75rem;
    }

    .contact-form-container h2 {
        font-size: 1.3rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 250px;
        width: 110%;
    }
}