/* hero section */
.ai-web-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-web-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ai-web-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-web-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.ai-web-hero-logo {
    width: 296px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.ai-web-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ai-web-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ai-web-hero-title {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2857142857142858;
    letter-spacing: -0.2px;
    color: #FFFFFF;
    margin: 0;
}

.ai-web-hero-subtitle {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.1428571428571428;
    letter-spacing: -0.2px;
    color: #FFFFFF;
    margin: 0;
}

/* Question Section */
.gov-question {
    position: relative;
    padding: 160px 292px;
    text-align: center;
}

.gov-blur-effect {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 720px;
    height: 55px;
    background: linear-gradient(90deg, #00C6FB 0%, #0F79FC 52.5%, #155DFC 84.5%);
    opacity: 0.2;
    filter: blur(80px);
    pointer-events: none;
}

.gov-question h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5%;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.gov-question p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -1%;
}

/* Innovation Section */
.gov-innovation {
    position: relative;
    padding: 88px 118px;
    background-color: #202020;
}

.gov-innovation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #202020;
}

.gov-innovation-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 163px;
    max-width: 1204px;
    margin: 0 auto;
}

.gov-innovation-image {
    width: 528px;
    flex-shrink: 0;
}

.gov-innovation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.gov-innovation-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gov-section-badge {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #155DFC 0%, #0F79FC 52.5%, #00C6FB 84.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 200px;
}

.gov-innovation-info h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.556%;
}

.gov-innovation-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gov-innovation-details>ul {
    padding-left: 16px;
}

.gov-innovation-details h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1%;
}

.gov-innovation-details p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -1.429%;
}


/* Card System Section */
.gov-cards {
    margin: 200px 0;
    padding: 80px 132px;
    background-color: #111111;
}

.gov-cards-header {
    text-align: center;
    margin-bottom: 60px;
}

.gov-cards-header h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.111;
    letter-spacing: -0.556%;
    margin-top: 24px;
    color: #FFFFFF;
}

.gov-card-system {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1176px;
    margin: 0 auto;
    height: 520px;
    position: relative;
    gap: 32px;
    overflow: visible;
    /* 날아드는 이미지가 보이도록 변경 */
}

/* 메인 이미지 컨테이너 */
.gov-card-main-image {
    width: 500px;
    height: 520px;
    border-radius: 12px;
    overflow: visible;
    /* 날아드는 이미지가 보이도록 변경 */

    flex-shrink: 0;
    position: relative;
}

.gov-card-main-image .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) opacity 0.01s linear;
    border-radius: 12px;
    /* 애니메이션 중에도 모서리 유지 */
    border: 1px #0F79FC solid;
}

.gov-card-main-image .main-image.visible {
    opacity: 1;
}

.gov-card-main-image .main-image.slide-right,
.gov-card-side-image .side-image.slide-right {
    animation: slideRight 0.4s ease-out forwards;
}

.gov-card-main-image .main-image.slide-left,
.gov-card-side-image .side-image.slide-left {
    animation: slideLeft 0.4s ease-out forwards;
}

.gov-card-main-image .main-image.size-sub {
    width: 140px;
}

.gov-card-main-image .main-image.size-main {
    width: 500px;
}

/* 기준 코드 방식의 slideRight/Left 애니메이션 */
@keyframes slideRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(var(--slide-distance));
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(var(--slide-distance));
        opacity: 1;
    }
}

/* 중앙 콘텐츠 */
.gov-card-main {
    flex: 1;
    height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px;
    padding: 120px 0;
}

.gov-card-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    align-items: flex-start;
    /* 모든 요소를 왼쪽 정렬 */
}

.gov-card-number {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.111;
    letter-spacing: -0.556%;
    background: linear-gradient(90deg, #00C6FB 0%, #0F79FC 52.5%, #155DFC 84.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    align-self: flex-start;
    /* 숫자를 명시적으로 왼쪽 정렬 */
}

.gov-card-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 41px;
    align-self: flex-start;
    /* 텍스트를 명시적으로 왼쪽 정렬 */
    width: 100%;
}

.gov-card-text h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.286;
    letter-spacing: -0.714%;
    color: #FFFFFF;
    text-align: left;
    /* 제목 왼쪽 정렬 */
}

.gov-card-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -1.429%;
    color: #FFFFFF;
    text-align: left;
    /* 설명 왼쪽 정렬 */
}

/* 사이드 이미지 컨테이너 */
.gov-card-side-images {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    position: relative;
    width: 300px;
    height: 520px;
    overflow: visible;
    /* 날아드는 이미지가 보이도록 변경 */
}

.gov-card-side-image {
    width: 140px;
    height: 520px;
    border-radius: 12px;
    overflow: visible;
    /* 날아드는 이미지가 보이도록 변경 */
    position: absolute;
    top: 0;
}

.gov-card-side-image.first {
    left: 0;
}

.gov-card-side-image.second {
    left: 160px;
}

.gov-card-side-image .side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 12px;
    /* 애니메이션 중에도 모서리 유지 */
}

.gov-card-side-image .side-image.visible {
    opacity: 1;
}

/* 페이지네이션 스타일 */
.doc-security-card-pagination {
    display: flex;
    justify-content: flex-start;
    /* 왼쪽 정렬 */
    align-items: flex-start;
    /* 위쪽 정렬 */
    gap: 24px;
    margin-top: auto;
    width: 100%;
    align-self: flex-start;
    /* 페이지네이션 자체를 왼쪽 정렬 */
    margin-left: 30px;
    position: absolute;
    bottom: 60px;
}

.doc-security-pagination-visual {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 12px;
    position: relative;
    justify-self: flex-start;
    /* 추가 왼쪽 정렬 */
}

.doc-security-pagination-indicators {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-indicator {
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative;
}

.pagination-image-container {
    position: relative;
    width: 24px;
    height: 24px;
    overflow: visible;
}

.pagination-dot,
.pagination-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.pagination-dot.visible,
.pagination-line.visible {
    opacity: 1;
}

/* Pagination 슬라이딩 애니메이션 */
.pagination-dot.slide-right,
.pagination-line.slide-right {
    animation: slideRight 0.4s ease-out forwards;
}

.pagination-dot.slide-left,
.pagination-line.slide-left {
    animation: slideLeft 0.4s ease-out forwards;
}

.pagination-indicator:hover {
    transform: scale(1.1);
}

.doc-security-pagination-left-arrow,
.doc-security-pagination-right-arrow {
    width: 34px;
    height: auto;
    cursor: pointer;
    padding: 4px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.doc-security-pagination-left-arrow:hover,
.doc-security-pagination-right-arrow:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.doc-security-pagination-left-arrow:active,
.doc-security-pagination-right-arrow:active {
    transform: scale(0.95);
}

.doc-security-pagination-left-arrow.disabled,
.doc-security-pagination-right-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.doc-security-pagination-left-arrow.disabled:hover,
.doc-security-pagination-right-arrow.disabled:hover {
    opacity: 0.3;
    transform: none;
}

/* 크기 변경 클래스 - 기존 CSS에 추가 */
.size-main {
    width: 500px !important;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.size-sub {
    width: 140px !important;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Solutions Section */
.gov-solutions {
    margin: 200px 0;
    padding: 171px 0 172px;
    position: relative;
    height: 823px;
    display: flex;
    align-items: center;
    background-color: #111111;
}

.gov-solutions-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/gov-gradient-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
}

.gov-solutions-content {
    margin: 0 auto;
    padding: 0 132px;
    display: flex;
    align-items: center;
    gap: 107px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
}

.gov-solution-main {
    display: flex;
    align-items: center;
    gap: 107px;
    width: 100%;
}

.gov-solution-image {
    width: 480px;
    height: 480px;
    flex-shrink: 0;
}

.gov-solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.gov-solution-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gov-solution-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gov-section-badge {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    background: linear-gradient(90deg, #155DFC 0%, #0F79FC 52.5%, #00C6FB 84.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.gov-solution-header h2 {
    font-family: 'Pretendard', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.111;
    letter-spacing: -0.556%;
    color: #FFFFFF;
    margin: 0;
}

/* Accordion */
.gov-accordions {
    display: flex;
    flex-direction: column;
}

.gov-accordion {
    border-bottom: 1px solid #FFFFFF;
    padding: 0 16px;
    overflow: hidden;
}

.gov-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    gap: 23px;
    height: 16px;
}

.gov-accordion-header span {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.143;
    letter-spacing: -1.429%;
    color: #FFFFFF;
    flex: 1;
}

.gov-accordion-icon {
    position: relative;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.icon-line-horizontal,
.icon-line-vertical {
    position: absolute;
    background-color: #FFFFFF;
}

.icon-line-horizontal {
    width: 12px;
    height: 1.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.icon-line-vertical {
    width: 1.5px;
    height: 12px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
}

.gov-accordion.active .icon-line-vertical {
    opacity: 0;
}

.gov-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.gov-accordion.active .gov-accordion-content {
    opacity: 1;
    padding-bottom: 12px;
}

.gov-accordion-content p {
    max-width: 400px;
    font-family: 'Pretendard', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Solution Cards Section */
.gov-solution-cards {
    margin: 200px 0;
    padding: 80px 132px;
}

.gov-solution-cards-header {
    text-align: center;
    margin-bottom: 60px;
}

.gov-solution-cards-header h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.111;
    letter-spacing: -0.556%;
    margin-top: 24px;
}

.gov-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1176px;
    margin: 0 auto;
}

.gov-card {
    background: #202020;
    border-radius: 12px;
    padding: 24px 36px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gov-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1%;
    margin-bottom: 10px;
}

.gov-card p {
    font-size: 13px;
    font-weight: 200;
    line-height: 1.5;
    color: #acacac;
    margin: 0;
}

/* Contact CTA styles removed - using common.css */

/* ===== 새로운 반응형 미디어 쿼리 추가 ===== */

/* Large Tablet: 769px ~ 1279px */
@media (min-width: 769px) and (max-width: 1279px) {

    /* Hero Section */
    .ai-web-hero {
        height: 350px;
    }

    .ai-web-hero-logo {
        width: 240px;
        height: 100px;
    }

    .ai-web-hero-title {
        font-size: 24px;
    }

    .ai-web-hero-subtitle {
        font-size: 13px;
    }

    /* Question Section */
    .gov-question {
        padding: 120px 200px;
    }

    .gov-blur-effect {
        width: 600px;
        height: 45px;
    }

    .gov-question h1 {
        font-size: 29px;
        margin-bottom: 50px;
    }

    .gov-question p {
        font-size: 15px;
    }

    /* Innovation Section */
    .gov-innovation {
        padding: 70px 80px;
    }

    .gov-innovation-content {
        gap: 120px;
        max-width: 1000px;
    }

    .gov-innovation-image {
        width: 450px;
    }

    .gov-innovation-image img {
        height: 350px;
    }

    .gov-innovation-info {
        gap: 20px;
    }

    .gov-section-badge {
        font-size: 15px;
        width: 200px;
    }

    .gov-innovation-info h2 {
        font-size: 24px;
    }

    .gov-innovation-details h3 {
        font-size: 18px;
    }

    .gov-innovation-details p {
        font-size: 12px;
    }

    /* Card System Section */
    .gov-cards {
        display: none;
        margin: 150px 0;
        padding: 60px 60px;
    }

    .gov-cards-header {
        margin-bottom: 50px;
    }

    .gov-cards-header h2 {
        font-size: 32px;
        margin-top: 20px;
    }

    .gov-card-system {
        max-width: 900px;
        height: 450px;
        gap: 24px;
    }

    .gov-card-main-image {
        width: 400px;
        height: 450px;
    }

    .gov-card-main-image .main-image.size-main {
        width: 400px;
    }

    .gov-card-main-image .main-image.size-sub {
        width: 120px;
    }

    .gov-card-main {
        height: 450px;
        gap: 60px;
        padding: 100px 0;
    }

    .gov-card-content {
        gap: 24px;
    }

    .gov-card-number {
        font-size: 32px;
    }

    .gov-card-text {
        gap: 32px;
        padding-right: 30px;
    }

    .gov-card-text h3 {
        font-size: 24px;
    }

    .gov-card-text p {
        font-size: 13px;
    }

    .gov-card-side-images {
        width: 260px;
        height: 450px;
        gap: 16px;
    }

    .gov-card-side-image {
        width: 120px;
        height: 450px;
    }

    .gov-card-side-image.second {
        left: 136px;
    }

    .doc-security-card-pagination {
        bottom: 50px;
        margin-left: 24px;
        gap: 20px;
    }

    .pagination-image-container {
        width: 20px;
        height: 20px;
    }

    .doc-security-pagination-left-arrow,
    .doc-security-pagination-right-arrow {
        width: 30px;
    }

    /* Solutions Section */
    .gov-solutions {
        margin: 150px 0;
        padding: 130px 0;
        height: 700px;
    }

    .gov-solutions-content {
        padding: 0 60px;
        gap: 80px;
    }

    .gov-solution-main {
        gap: 80px;
    }

    .gov-solution-image {
        width: 400px;
        height: 400px;
    }

    .gov-solution-info {
        gap: 28px;
    }

    .gov-solution-header {
        gap: 20px;
    }

    .gov-section-badge {
        font-size: 15px;
    }

    .gov-solution-header h2 {
        font-size: 26px;
    }

    .gov-accordion-header {
        padding: 18px 0;
        gap: 20px;
    }

    .gov-accordion-header span {
        font-size: 13px;
    }

    .gov-accordion-content p {
        max-width: 350px;
        font-size: 11px;
    }

    /* Solution Cards Section */
    .gov-solution-cards {
        margin: 150px 0;
        padding: 60px 60px;
    }

    .gov-solution-cards-header {
        margin-bottom: 50px;
    }

    .gov-solution-cards-header h2 {
        font-size: 32px;
        margin-top: 20px;
    }

    .gov-cards-grid {
        gap: 30px;
        max-width: 900px;
    }

    .gov-card {
        padding: 20px 30px;
        height: 160px;
    }

    .gov-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .gov-card p {
        font-size: 12px;
    }
}

/* Medium Tablet: 481px ~ 768px */
@media (min-width: 481px) and (max-width: 768px) {

    /* Hero Section */
    .ai-web-hero {
        height: 300px;
    }

    .ai-web-hero-logo {
        width: 200px;
        height: 80px;
    }

    .ai-web-hero-title {
        font-size: 22px;
    }

    .ai-web-hero-subtitle {
        font-size: 12px;
    }

    /* Question Section */
    .gov-question {
        padding: 80px 40px;
        text-align: center;
    }

    .gov-blur-effect {
        width: 400px;
        height: 35px;
    }

    .gov-question h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .gov-question p {
        font-size: 16px;
    }

    /* Innovation Section */
    .gov-innovation {
        padding: 50px 40px;
    }

    .gov-innovation-content {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
        text-align: center;
    }

    .gov-innovation-image {
        width: 100%;
        max-width: 400px;
    }

    .gov-innovation-image img {
        height: 300px;
    }

    .gov-innovation-info {
        gap: 16px;
    }

    .gov-section-badge {
        font-size: 14px;
        width: 180px;
    }

    .gov-innovation-info h2 {
        font-size: 28px;
        text-align: start;
    }

    .gov-innovation-details {
        text-align: left;
    }

    .gov-innovation-details h3 {
        font-size: 18px;
    }

    .gov-innovation-details p {
        font-size: 13px;
    }

    /* Card System Section */
    .gov-cards {
        display: none;
        margin: 80px 0;
        padding: 40px 40px;
    }

    .gov-cards-header {
        margin-bottom: 40px;
    }

    .gov-cards-header h2 {
        font-size: 28px;
        margin-top: 16px;
    }

    /* Card System을 세로 배치로 변경 */
    .gov-card-system {
        flex-direction: column;
        height: auto;
        gap: 30px;
        align-items: center;
    }

    .gov-card-main-image {
        width: 100%;
        max-width: 400px;
        height: 300px;
        order: 2;
    }

    .gov-card-main-image .main-image.size-main {
        width: 100%;
    }

    .gov-card-main-image .main-image.size-sub {
        width: 100px;
    }

    .gov-card-main {
        height: auto;
        gap: 20px;
        padding: 0;
        order: 1;
        text-align: center;
    }

    .gov-card-content {
        gap: 16px;
        align-items: center;
    }

    .gov-card-number {
        font-size: 28px;
        align-self: center;
    }

    .gov-card-text {
        gap: 20px;
        padding-right: 0;
        align-self: center;
        text-align: center;
    }

    .gov-card-text h3 {
        font-size: 22px;
        text-align: center;
    }

    .gov-card-text p {
        font-size: 13px;
        text-align: center;
    }

    .gov-card-side-images {
        width: 100%;
        max-width: 400px;
        height: 120px;
        gap: 12px;
        order: 3;
        justify-content: center;
        position: static;
        display: flex;
    }

    .gov-card-side-image {
        width: 120px;
        height: 120px;
        position: static;
    }

    .gov-card-side-image.first,
    .gov-card-side-image.second {
        left: auto;
    }

    .doc-security-card-pagination {
        position: static;
        bottom: auto;
        margin-left: 0;
        justify-content: center;
        margin-top: 20px;
    }

    /* Solutions Section */
    .gov-solutions {
        margin: 80px 0;
        padding: 80px 0;
        height: auto;
    }

    .gov-solutions-content {
        padding: 0 40px;
        gap: 40px;
    }

    .gov-solution-main {
        flex-direction: column;
        gap: 40px;
        text-align: start;
    }

    .gov-solution-image {
        width: 100%;
        max-width: 400px;
        height: 350px;
    }

    .gov-solution-info {
        gap: 24px;
    }

    .gov-solution-header {
        gap: 16px;
        text-align: start;
    }

    .gov-solution-header h2 {
        font-size: 28px;
    }

    .gov-accordion-header {
        padding: 16px 0;
        gap: 16px;
    }

    .gov-accordion-header span {
        font-size: 12px;
    }

    .gov-accordion-content p {
        max-width: 100%;
        font-size: 11px;
    }

    /* Solution Cards Section */
    .gov-solution-cards {
        margin: 80px 0;
        padding: 40px 40px;
    }

    .gov-solution-cards-header {
        margin-bottom: 40px;
    }

    .gov-solution-cards-header h2 {
        font-size: 28px;
        margin-top: 16px;
    }

    .gov-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }

    .gov-card {
        padding: 20px 24px;
        height: 140px;
    }

    .gov-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .gov-card p {
        font-size: 12px;
    }
}

/* Small Mobile: ~ 480px */
@media (max-width: 480px) {

    /* Hero Section */
    .ai-web-hero {
        height: 250px;
    }

    .ai-web-hero-logo {
        width: 160px;
        height: 60px;
        margin-bottom: 6px;
    }

    .ai-web-hero-title {
        font-size: 20px;
    }

    .ai-web-hero-subtitle {
        font-size: 11px;
    }

    /* Question Section */
    .gov-question {
        padding: 60px 20px;
    }

    .gov-blur-effect {
        width: 300px;
        height: 30px;
    }

    .gov-question h1 {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .gov-question p {
        font-size: 9px;
    }

    /* Innovation Section */
    .gov-innovation {
        padding: 40px 20px;
    }

    .gov-innovation-content {
        flex-direction: column;
        gap: 30px;
    }

    .gov-innovation-image {
        max-width: 100%;
    }

    .gov-innovation-image img {
        height: 250px;
    }

    .gov-innovation-info {
        gap: 12px;
    }

    .gov-section-badge {
        font-size: 13px;
        width: 160px;
    }

    .gov-innovation-info h2 {
        font-size: 24px;
    }

    .gov-innovation-details h3 {
        font-size: 16px;
    }

    .gov-innovation-details p {
        font-size: 10px;
    }

    /* Card System Section */
    .gov-cards {
        display: none;
        margin: 60px 0;
        padding: 30px 20px;
    }

    .gov-cards-header {
        margin-bottom: 30px;
    }

    .gov-cards-header h2 {
        font-size: 24px;
        margin-top: 12px;
    }

    .gov-card-system {
        gap: 20px;
    }

    .gov-card-main-image {
        max-width: 100%;
        height: 240px;
    }

    .gov-card-main-image .main-image.size-sub {
        width: 80px;
    }

    .gov-card-main {
        gap: 16px;
    }

    .gov-card-content {
        gap: 12px;
    }

    .gov-card-number {
        font-size: 24px;
    }

    .gov-card-text {
        gap: 16px;
    }

    .gov-card-text h3 {
        font-size: 20px;
    }

    .gov-card-text p {
        font-size: 11px;
    }

    .gov-card-side-images {
        height: 100px;
        gap: 8px;
    }

    .gov-card-side-image {
        width: 100px;
        height: 100px;
    }

    .doc-security-card-pagination {
        gap: 16px;
        margin-top: 16px;
    }

    .pagination-image-container {
        width: 18px;
        height: 18px;
    }

    .doc-security-pagination-left-arrow,
    .doc-security-pagination-right-arrow {
        width: 26px;
    }

    /* Solutions Section */
    .gov-solutions {
        margin: 60px 0;
        padding: 60px 0;
    }

    .gov-solutions-content {
        padding: 0 20px;
        gap: 30px;
    }

    .gov-solution-main {
        flex-direction: column;
        gap: 30px;
    }

    .gov-solution-image {
        width: 100%;
        height: auto;
    }

    .gov-solution-info {
        gap: 20px;
    }

    .gov-solution-header {
        gap: 12px;
    }

    .gov-section-badge {
        font-size: 12px;
    }

    .gov-solution-header h2 {
        font-size: 23px;
    }

    .gov-accordions {
        padding: 0 8px;
    }

    .gov-accordion-header {
        padding: 14px 0;
        gap: 12px;
        min-height: 44px;
    }

    .gov-accordion-header span {
        font-size: 11px;
    }

    .gov-accordion-content p {
        font-size: 10px;
    }

    /* Solution Cards Section */
    .gov-solution-cards {
        margin: 60px 0;
        padding: 30px 20px;
    }

    .gov-solution-cards-header {
        margin-bottom: 30px;
    }

    .gov-solution-cards-header h2 {
        font-size: 21px;
        margin-top: 12px;
    }

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

    .gov-card {
        padding: 16px 20px;
        height: 120px;
    }

    .gov-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .gov-card p {
        font-size: 11px;
    }

    .contact-title {
        font-size: 17px;
    }
}