/* ===================================
   Header Styles
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 110px;
    gap: 80px;
}

.logo {
    height: 57px;
    flex-shrink: 0;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.gnb {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.gnb ul {
    display: flex;
    gap: 0;
    align-items: center;
    height: 100%;
}

.gnb li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.gnb-link {
    font-family: 'GmarketSans', sans-serif !important;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    position: relative;
    padding: 0 50px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gnb-link:hover,
.gnb-link.active {
    color: #4d972d;
}

.gnb-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #4d972d;
    transition: width 0.3s ease;
}

.gnb-link:hover::after,
.gnb-link.active::after {
    width: 100%;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.contact-label {
    font-family: 'GmarketSans', sans-serif;
    font-size: 14px;
    color: #4d972d;
    font-weight: 500;
}

.contact-phone {
    font-family: 'GmarketSans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

/* ===================================
   Main Container
   =================================== */
.main-container {
    width: 100%;
}

/* ===================================
   Section Common Styles
   =================================== */
.section {
    position: relative;
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.section-bg.green-bg {
    background: linear-gradient(135deg, #6bb64d 0%, #4d972d 100%);
}

.section-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 140px 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-content2 {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ===================================
   Section 0: Main Visual
   =================================== */
.section-main .section-content {
    align-items: flex-end;
    justify-content: flex-start;
    padding: 140px 170px 170px 170px;
    max-width: 100%;
}
.section-main .section-content2 {
    align-items: center;
    justify-content: flex-start;
    padding: 170px 170px 140px 170px;
    max-width: 100%;
}
.main-text {
    max-width: 100%;
}
.main-text2 {
    max-width: 100%;
    width: 100%;
}

.main-year {
    font-size: 58px;
    color: #333;
    margin-bottom: 0;
    font-weight: 700;
}
.main-year2 {
    font-size: 42px;
    color: #fd9996;
    margin-bottom: 30px;
    font-weight: 500;
}
.main-year2 > span {
    color: #ed524c;
    font-weight: 700;
}
.main-title {
    font-size: 73px;
    font-weight: 700;
    color: #35502a;
    margin-bottom: 40px;
    line-height: 1.3;
}
.main-title2 {
    font-size: 100px;
    font-weight: 700;
    color: #f0ddbd;
    margin-bottom: 40px;
    line-height: 1.3;
}

.text-highlight {
    color: #35502a;
    font-weight: 700;
}

.text-company {
    color: #4d972d;
    font-weight: 700;
}

.text-suffix {
    color: #35502a;
    font-weight: 700;
}

.main-desc {
    font-size: 26px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 50px;
}

.main-buttons {
    display: flex;
    gap: 20px;
}

.highlight-green {
    color: #4d972d;
    font-weight: 700;
}

.service-tasks {
    margin-top: 50px;
}
.service-tasks2 {
    margin-top: 50px;
    display: none;
}
.tasks-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background-color: #4d972d;
    padding: 6px 28px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.tasks-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 392px;
}

.task-item {
    background-color: transparent;
    color: #333;
    padding: 5px 15px;
    border-radius: 5px;
    text-align: left;
    border: 2px solid #4d972d;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 30px;
}

.task-item::before {
    content: '•';
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #4d972d;
    font-size: 20px;
    font-weight: 700;
}

.task-item:hover {
    background-color: #4d972d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 151, 45, 0.3);
}

.task-item:hover::before {
    color: #fff;
}

.task-item span {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

/* ===================================
   Section 1: Service
   =================================== */
.section-service .section-content {
    flex-direction: column;
    padding-top: 180px;
}

.service-text {
    text-align: center;
    margin-bottom: 80px;
    color: #333;
}

.service-subtitle {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 0;
    color: #000000;
    letter-spacing: -2px;
}

.service-title {
    font-size: 73px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 90px;
    color: #000;
    letter-spacing: -2px;
}

.text-normal {
    font-size: 73px;
    font-weight: 500;
    color: #000;
}
.text-normal.exbold {
    font-weight: 700;
}

.text-accent {
    font-size: 73px;
    font-weight: 700;
    color: #fff;
}

.service-desc {
    font-size: 26px;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
}

.service-icons {
    display: flex;
    gap: 90px;
    justify-content: center;
    align-items: flex-start;
}

.service-icon-item {
    text-align: center;
    position: relative;
    width: 204px;
    height: 204px;
    background-color: #4d972d;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
}

.icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 100px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #4d972d;
    position: absolute;
    top: -37px; left: calc(50% - 37.5px);
    overflow: hidden;
}

.service-icon-item p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    letter-spacing: -2px;
    line-height: 25px;
    margin-top: 10px;
}

/* ===================================
   Section 2: Baby Care
   =================================== */
.section-baby-care {
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: flex-end;
    justify-content: flex-end;
}
.section-baby-care .section-content {
    width: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 0 0 0 0; 
    padding-right: 170px;
    padding-bottom: 67px;
}

.baby-care-content {
    display: flex;
    max-width: 900px;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
}

.care-badge {
    display: inline-block;
    padding: 0px 20px;
    background-color: #4d972d;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}

.care-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: calc(50% - 10px);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #4d972d;
}

.care-title {
    font-size: 60px;
    font-weight: 700;
    color: #35502a;
    margin-bottom: 40px;
    text-align: right;
    line-height: 65px;
}
.care-title > span {
    font-size: 45px;
    font-weight: 500;
    color: #000; 
}
.care-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}

.baby-care-content .care-row:last-child {
    margin-bottom: 0px;
}
.care-image-item {
    width: 230px;
    height: 159px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.care-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-text {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 1.5;
    flex: 1;
    display: inline-block;
    width: 325px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #333;
}

/* ===================================
   Section 3: Pet Care
   =================================== */
.section-pet-care {
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: flex-end;
    justify-content: flex-start;
}
.section-pet-care .section-content {
    width: 100%;
    align-items: flex-end;
    justify-content: flex-start;
    margin: 0 0 0 0; 
    padding-left: 170px;
    padding-bottom: 230px;
}

.pet-care-content .care-title {
    text-align: left;
}
.pet-care-left {
    flex: 1;
}

.pet-care-right {
    flex: 1;
}

.pet-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pet-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

/* ===================================
   Section 4: Broadcast
   =================================== */
.section-broadcast .section-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
}

.broadcast-header {
    text-align: center;
    margin-bottom: 30px;
}

.broadcast-title {
    font-size: 73px;
    font-weight: 700;
    color: #35502a;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.broadcast-subtitle {
    font-size: 47px;
    font-weight: 600;
    color: #4d972d;
    letter-spacing: -2px;
}
.broadcast-subtitle > b {
    color: #35502a;
    font-weight: 600;
}

.broadcast-desc {
    font-size: 26px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.broadcast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
}

.broadcast-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.broadcast-item:hover {
    transform: translateY(-10px);
}

.broadcast-item img {
    width: 100%;
    object-fit: cover;
}

.section-title.center {
    text-align: center;
}

.section-desc.center {
    text-align: center;
    margin-bottom: 50px;
}

/* ===================================
   Section 5: Partners
   =================================== */
.section-partners {
    background-color: #f2f2ef;
}

.section-partners .section-content {
    flex-direction: column;
    padding-top: 130px;
    align-items: center;
}

.partner-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 115px;
    border-bottom: 3px solid #4d972d;
    border-radius: 0 0 0 12px;
}

.partner-tabs {
    display: flex;
    gap: 0;
    position: relative;
}
.tab-btn-title {
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    color: #555;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    line-height: 34px;
}

.tab-btn {
    padding: 20px 60px;
    font-size: 28px;
    font-weight: 700;
    background-color: transparent;
    color: #555;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    background-color: #4d972d;
    color: #fff;
    border-radius: 10px;
}

.partners-desc {
    font-size: 23px;
    font-weight: 500;
    color: #000;
    margin-bottom: 115px;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 1400px;
}

.partners-grid img {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

/* ===================================
   Section 6: Price
   =================================== */
.section-price {
    background-color: #f2f2ef;
    height: 100vh;
    scroll-snap-align: start;
}

.section-price .section-content {
    flex-direction: column;
    padding-top: 180px;
    padding-bottom: 60px;
    justify-content: flex-start;
}
.section-price .section-content .partner-header {
    margin-bottom: 75px;
}

.price-tabs {
    display: flex;
    gap: 10px;
}

.price-table {
    width: 100%;
    margin: 0 auto;
}

.price-table table {
    width: 100%;
    background: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}

.price-table thead {
    background-color: #35502a;
    color: #fff;
}

.price-table th {
    padding: 5px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.price-table td {
    padding: 5px;
    text-align: center;
    font-size: 16px;
    color: #35502a;
    border-bottom: 1px solid #000000;
    font-weight: 700;
}
.price-table td.tdactive {
    background-color: #f6f6f6;
    border-right: 1px solid #000000;
}
.price-table td.borderRight {
    border-right: 1px solid #000000;
}
.price-table td.borderActive {
    border-bottom: 2px solid #000000;
}
.price-table td.icontd div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}
.price-table td.icontd div > span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    min-width: 120px;
    background-color: #35502a;
    color: #fff;
    border-radius: 100px;
}
.price-table tbody tr:hover {
    background-color: #f5f5f5;
}

.price-note {
    margin-top: 30px;
    font-size: 14px;
    color: #999;
    text-align: center;
}

/* ===================================
   Footer Styles
   =================================== */
.footer {
    background-color: #f2f2ef;
    padding: 30px 0;
    width: 100%;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    height: 40px;
    flex-shrink: 0;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.footer-address,
.footer-tel {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* ===================================
   Mobile Menu Toggle Button
   =================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px !important;
    background-color: #4d972d;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(2) {
    width: 70%;
    height: 2px !important;
    margin-right: auto;
}

.header.scrolled .mobile-menu-toggle span {
    background-color: #4d972d;
}

/* 햄버거 메뉴 활성화 시 X 모양으로 변경 */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===================================
   Mobile Contact Section (Hidden by default, shown only on mobile)
   =================================== */
.mobile-contact {
    display: none;
}

.mobileview {
    display: none;
}
/* ===================================
   Responsive Media Queries
   =================================== */

/* 태블릿 및 작은 화면 (1024px 이하) */
@media screen and (max-width: 1024px) {
    .header-inner {
        padding: 0 40px;
        gap: 40px;
    }

    .gnb-link {
        font-size: 18px;
        padding: 0 30px;
    }

    .main-title {
        font-size: 60px;
    }
    .main-title2 {
        font-size: 48px;
        margin-bottom: 40px;
        line-height: 1.3;
        text-align: center;
    }
    .main-year {
        font-size: 48px;
    }
    .main-year2 {
        font-size: 28px;
        margin-bottom: 10px;
        margin-top: 70px;
    }
    .main-desc {
        font-size: 22px;
    }

    .service-title {
        font-size: 60px;
        line-height: 75px;
    }

    .text-normal,
    .text-accent {
        font-size: 60px;
    }

    .service-icons {
        gap: 50px;
    }
}

/* 모바일 (768px 이하) */
@media screen and (max-width: 768px) {
    .mobileviewnone {
        display: none;
    }
    .mobileview {
        display: block;
    }
    /* 섹션 높이 auto로 변경 */
    .section {
        height: auto;
        min-height: 100vh;
    }

    .section-main {
        height: 100vh;
        min-height: 100vh;
    }

    /* 헤더 모바일 스타일 */
    .header {
        height: 70px;
    }

    .header.scrolled,
    .header.menu-open {
        background-color: #fff;
    }

    .header-inner {
        padding: 0 20px;
        justify-content: space-between;
    }

    .logo {
        height: 40px;
    }

    /* 모바일 햄버거 메뉴 버튼 표시 */
    .mobile-menu-toggle {
        display: flex;
    }

    /* 모바일 메뉴 숨김 및 토글 스타일 */
    .gnb {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .gnb.active {
        transform: translateX(0);
    }

    .gnb ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        height: auto;
        width: 100%;
        flex: 0;
        margin: auto 0;
    }

    .gnb li {
        width: 100%;
        height: auto;
        border-bottom: none;
    }

    .gnb-link {
        width: 100%;
        padding: 5px 30px;
        font-size: 24px;
        font-weight: 700;
        justify-content: center;
        text-align: center;
        height: auto;
        color: #333;
    }

    .gnb-link::after {
        display: none;
    }

    .gnb-link.active {
        background-color: transparent;
        color: #4d972d;
    }

    /* 고객상담 섹션 - 모바일에서만 표시 */
    .mobile-contact {
        display: block;
        width: 100%;
        padding: 30px 30px 40px;
        text-align: center;
    }

    .mobile-contact-badge {
        display: inline-block;
        background-color: #4d972d;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        padding: 1px 20px;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .mobile-contact-phone {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        letter-spacing: 1px;
    }

    /* 섹션 패딩 조정 */
    .section-content {
        padding: 100px 20px 40px;
    }
    .section-content2 {
        padding: 100px 20px 40px;
    }
    .section-main .section-bg {
        background-image: url('../images/section_1_bg_mobile.png') !important;
    }
    .section-main .new {
        background-image: url('../images/section_0_bg_mobile.png') !important;
    }
    .section-main .section-content {
        padding: 100px 20px 40px;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
    .section-main .section-content2 {
        padding: 100px 20px 40px;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
    /* 메인 섹션 */
    .main-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }
    .main-text2 {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: flex-start;
    }
    .main-year {
        font-size: 22px;
        margin-bottom: 8px;
        color: #000;
        text-align: left;
        font-weight: 500;
        margin-top: 0px;
    }
    .main-year2 {
        font-size: 19px;
        text-align: center;
    }
    .main-title {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.4;
        text-align: left;
        letter-spacing: -1px;
    }

    .main-desc {
        font-size: 12px;
        margin-bottom: 20px;
        text-align: left;
        line-height: 1.8;
        color: #666;
    }

    .main-desc br {
        display: none;
    }

    .service-tasks {
        margin-top: auto;
        margin-bottom: 50px;
        width: 100%;
        opacity: 0;
    }
    .service-tasks2 {
        display: block;
        margin-top: auto;
        margin-bottom: 0px;
        width: 100%;
    }
    .tasks-title {
        font-size: 18px;
        padding: 5px 14px;
        margin-bottom: 10px;
    }

    .tasks-grid {
        max-width: 100%;
        gap: 8px;
    }

    .task-item {
        background-color: #fff;
        border-radius: 5px;
    }

    .task-item::before {
        left: 10px;
        font-size: 14px;
    }

    .task-item span {
        font-size: 18px;
    }

    /* 서비스 섹션 */
    .section-service .section-content {
        padding-top: 100px;
    }

    .service-subtitle {
        font-size: 16px;
    }

    .service-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .text-normal,
    .text-accent {
        font-size: 32px;
    }

    .service-desc {
        font-size: 16px;
        padding: 10px 50px 0;
    }

    .service-desc br {
        display: none;
    }

    .service-icons {
        width: 270px;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: flex-start;
    }

    .service-icon-item {
        width: 150px;
        height: 150px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        top: -30px;
        left: calc(50% - 30px);
    }

    .icon-circle img {
        width: 30px;
        height: 30px;
    }

    .service-icon-item p {
        font-size: 14px;
        line-height: 18px;
    }

    /* 베이비 케어 섹션 */
    .section-baby-care .section-bg {
        background-image: url('../images/section_3_bg_mobile.png') !important;
    }

    .section-baby-care .section-content {
        padding: 100px 20px 40px;
        align-items: center;
        justify-content: center;
    }

    .baby-care-content {
        max-width: 100%;
        align-items: flex-end;
    }

    .care-badge {
        font-size: 16px;
        padding: 0 16px;
    }

    .care-title {
        font-size: 28px;
        line-height: 36px;
        text-align: right;
        margin-bottom: 230px;
    }
    .section-pet-care {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .pet-care-content {
        margin-top: 40px;
    }
    .pet-care-content .care-title {
        margin-bottom: 20px;
    }
    .care-title span {
        font-size: 22px;
    }

    .care-row {
        gap: 15px;
        margin-bottom: 20px;
    }

    .care-image-item {
        width: 120px;
        max-width: 280px;
        height: 83px;
    }

    .care-text {
        font-size: 14px;
        text-align: left;
        width: 100%;
    }

    .care-text br {
        display: none;
    }

    /* 펫 케어 섹션 */
    .section-pet-care .section-bg {
        background-image: url('../images/section_4_bg_mobile.png') !important;
    }

    .section-pet-care .section-content {
        padding: 100px 20px 40px;
        align-items: center;
        justify-content: center;
    }

    .pet-care-content {
        max-width: 100%;
    }

    .pet-care-content .care-title {
        text-align: left;
    }

    .pet-care-content .care-text br {
        display: none;
    }

    /* 방송 섹션 */
    .section-broadcast .section-bg {
        background-image: none !important;
    }

    .section-broadcast {
        background-color: #f2f2ef;
    }

    .section-broadcast .section-content {
        padding-top: 100px;
    }

    .broadcast-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .broadcast-subtitle {
        font-size: 20px;
    }

    .broadcast-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .broadcast-desc br {
        display: none;
    }

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

    /* 파트너 섹션 */
    .section-partners .section-content {
        padding-top: 100px;
    }

    .partner-header {
        margin-bottom: 20px;
    }

    .tab-btn {
        padding: 7px 30px;
        font-size: 16px;
    }

    .tab-btn-title {
        padding: 7px 20px;
        font-size: 12px;
        line-height: 24px;
    }

    .partners-desc {
        font-size: 14px;
        margin-bottom: 40px;
    }

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

    /* 가격 섹션 */
    .section-price .section-content {
        padding-top: 100px;
    }

    .section-price .section-content .partner-header {
        margin-bottom: 30px;
    }

    .price-table {
        overflow-x: auto;
    }

    .price-table table {
        min-width: 100%;
    }
    .price-table td.borderRight {
        border-right: 0;
    }
    .price-table th {
        font-size: 14px;
        padding: 10px 5px;
    }

    .price-table td {
        font-size: 12px;
        padding: 8px 5px;
    }

    .price-table td.icontd div > span {
        font-size: 12px;
        min-width: 80px;
        line-height: 20px;
    }

    /* 푸터 */
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 20px;
    }

    .footer-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-title,
    .footer-address,
    .footer-tel,
    .footer-copyright {
        font-size: 12px;
    }
}

/* 작은 모바일 (480px 이하) */
@media screen and (max-width: 480px) {
    .main-title {
        font-size: 34px;
    }

    .service-title {
        font-size: 24px;
        line-height: 40px;
        margin-top: 10px;
    }

    .text-normal,
    .text-accent {
        font-size: 31px;
    }

    .broadcast-title {
        font-size: 32px;
    }

    .broadcast-subtitle {
        font-size: 19px;
    }

    .care-title {
        font-size: 32px;
        line-height: 42px;
    }

    .care-title span {
        font-size: 25px;
    }

    .service-icon-item {
        width: 120px;
        height: 120px;
        margin-top: -20px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
