
    .content01 .contact-banner-wrapper {
        max-width: 1600px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .content01 .contact-banner {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content01 .contact-info {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 1000px;
        position: relative;
        margin-bottom: 20px;
    }

    .content01 .contact-info::after {
        content: '';
        position: absolute;
        height: 80%;
        width: 1px;
        background-color: #000;
        right: 55%;
        top: 10%;
    }

    .content01 .company-logo {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-right: 40px;
        width: 45%;
    }

    .content01 .logo-main {
        color: #00a0d2;
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 5px;
        letter-spacing: 1px;
    }

    .content01 .logo-sub {
        color: #777;
        font-size: 16px;
        text-align: center;
    }

    .content01 .contact-text {
        display: flex;
        align-items: center;
        width: 55%;
        padding-left: 40px;
    }

    .content01 .inquiry-text {
        display: flex;
        flex-direction: column;
        margin-right: 20px;
    }

    .content01 .inquiry-title {
        font-size: 24px;
        font-weight: bold;
        line-height: 1.2;
    }

    .content01 .phone-number {
        color: #00a0d2;
        font-size: 72px;
        font-weight: bold;
        line-height: 1;
    }

    .content01 .mobile-button {
        width: 100%;
        background-color: #00a0d2;
        color: white;
        text-align: center;
        padding: 15px;
        font-size: 24px;
        font-weight: bold;
    }

    @media (max-width: 992px) {
        .content01 .contact-info {
            flex-direction: column;
            max-width: 600px;
        }

        .content01 .contact-info::after {
            width: 80%;
            height: 1px;
            right: 10%;
            top: auto;
            bottom: 50%;
        }

        .content01 .company-logo {
            width: 100%;
            align-items: center;
            padding-right: 0;
            margin-bottom: 40px;
        }

        .content01 .contact-text {
            width: 100%;
            padding-left: 0;
            justify-content: center;
            margin-top: 40px;
        }

        .content01 .logo-main {
            font-size: 36px;
        }

        .content01 .logo-sub {
            font-size: 14px;
        }

        .content01 .inquiry-title {
            font-size: 20px;
        }

        .content01 .phone-number {
            font-size: 56px;
        }

        .content01 .mobile-button {
            font-size: 20px;
        }
    }

    @media (max-width: 576px) {
        .content01 .contact-banner-wrapper {
            padding: 20px 10px;
        }

        .content01 .logo-main {
            font-size: 28px;
        }

        .content01 .logo-sub {
            font-size: 12px;
        }

        .content01 .inquiry-title {
            font-size: 16px;
        }

        .content01 .phone-number {
            font-size: 42px;
        }

        .content01 .mobile-button {
            font-size: 18px;
            padding: 12px;
        }
    }




    .content03 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 100px 0
    }

    .content03 .container {
        max-width: 1600px;
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .content03 .button-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

    .content03 .signup-button {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #009ACD;
        color: white;
        font-size: 34px;
        font-weight: bold;
        padding: 40px;
        border-radius: 10px;
        text-decoration: none;
        max-width: 700px;
        width: 100%;
        transition: all 0.3s ease;
    }

    .content03 .signup-button:hover {
        background-color: #0082B0;
    }

    .content03 .checkmark {
        margin-right: 15px;
        font-size: 30px;
    }

    @media screen and (max-width: 768px) {
        .content03 .signup-button {
            font-size: 20px;
            padding: 15px 30px;
        }

        .content03 .checkmark {
            margin-right: 10px;
            font-size: 24px;
        }
    }

    @media screen and (max-width: 480px) {
        .content03 .signup-button {
            font-size: 18px;
            padding: 12px 20px;
        }

        .content03 .checkmark {
            margin-right: 8px;
            font-size: 20px;
        }

    }




    .content05 {
        width: 100%;
        background-color: #f2f2f2;
    }

    .content05 .container {
        max-width: 1600px;
        padding: 60px 0;
        text-align: center;
    }

    .content05 .top-text {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
    }

    .content05 .bottom-text {
        font-size: 4rem;
        font-weight: 700;
        color: #1a9ad7;
        letter-spacing: -1px;
    }

    /* Responsive styles */
    @media (max-width: 1200px) {
        .content05 .top-text {
            font-size: 2rem;
        }

        .content05 .bottom-text {
            font-size: 3.5rem;
        }
    }

    @media (max-width: 768px) {
        .content05 .top-text {
            font-size: 1.75rem;
        }

        .content05 .bottom-text {
            font-size: 3rem;
        }
    }

    @media (max-width: 480px) {
        .content05 .top-text {
            font-size: 1.5rem;
        }

        .content05 .bottom-text {
            font-size: 2.5rem;
        }
    }

    .content06 {
        position: relative;
        width: 100%;
        background-image: url('https://lh3.googleusercontent.com/vvmgJvU2nMkjU2gM_EeXjFY12JzRKjSfTHKUSO3XBoe7kAavuDt1-VVwatAK2dlV8T4RlfT5k8AgMPK-VSy2CddLaybmtq4HfSX3qpL0dy8urqsKnOB-=w1920-h1112-n');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 80px 0;
    }

    .content06 .container {
        max-width: 1600px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .content06 .content-left {
        width: 45%;
        padding: 0px;
        background-color: rgba(255, 255, 255, 0.95);
    }

    .content06 .image-right {
        width: 45%;
        display: none;
    }

    .content06 .logo-character {
        color: #2fa1d8;
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 8px;
    }

    .content06 .logo-subtitle {
        color: #2fa1d8;
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 50px;
    }

    .content06 .content-section {
        margin-bottom: 40px;
    }

    .content06 .content-section:last-child {
        margin-bottom: 0;
    }

    .content06 .paragraph {
        font-size: 2.05rem;
        line-height: 1.7;
        font-weight: 400;
        letter-spacing: -0.05em;
    }

    .content06 .blue-text {
        color: #2fa1d8;
    }

    .content06 .bold-text {
        font-weight: 700;
    }

    .content06 .english-text {
        font-weight: 500;
        letter-spacing: 0.05em;
    }

    /* 반응형 스타일 */
    @media (max-width: 1400px) {
        .content06 .container {
            max-width: 1200px;
        }

        .content06 .content-left {
            padding: 50px;
        }

        .content06 .logo-character {
            font-size: 2.8rem;
        }
    }

    @media (max-width: 1200px) {
        .content06 .container {
            max-width: 992px;
        }

        .content06 .content-left {
            padding: 40px;
            width: 50%;
        }

        .content06 .logo-character {
            font-size: 2.5rem;
        }

        .content06 .paragraph {
            font-size: 1rem;
        }

        .content06 .logo-subtitle {
            margin-bottom: 40px;
        }
    }

    @media (max-width: 992px) {
        .content06 .container {
            flex-direction: column;
            max-width: 768px;
        }

        .content06 .content-left {
            width: 100%;
            max-width: 600px;
            margin-bottom: 0;
        }

        .content06 {
            background-position: top center;
            padding: 60px 0;
        }
    }

    @media (max-width: 768px) {
        .content06 .container {
            max-width: 576px;
        }

        .content06 .content-left {
            padding: 30px;
        }

        .content06 .logo-character {
            font-size: 2.2rem;
        }

        .content06 .logo-subtitle {
            margin-bottom: 30px;
        }

        .content06 .content-section {
            margin-bottom: 30px;
        }

        .content06 .paragraph {
            font-size: 0.95rem;
        }

        .content06 {
            padding: 40px 0;
        }
    }

    @media (max-width: 576px) {
        .content06 .content-left {
            padding: 25px 20px;
        }

        .content06 .logo-character {
            font-size: 2rem;
        }

        .content06 .paragraph {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .content06 .logo-subtitle {
            margin-bottom: 25px;
        }

        .content06 .content-section {
            margin-bottom: 25px;
        }

        .content06 {
            padding: 30px 0;
        }
    }



    .content07 .banner-section {
        width: 100%;
        padding: 60px 20px;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
        border-bottom: 1px solid #eaeaea;
    }

    .content07 .container {
        max-width: 1600px;
        margin: 0 auto;
        text-align: center;
    }

    .content07 .main-title {
        font-size: 3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        letter-spacing: -0.03em;
    }

    .content07 .sub-title {
        font-size: 3rem;
        font-weight: 500;
        color: #2fa1d8;
        letter-spacing: -0.02em;
        padding: 0
    }

    /* Responsive styles */
    @media (max-width: 1200px) {
        .content07 .main-title {
            font-size: 2.2rem;
        }

        .content07 .sub-title {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 992px) {
        .content07 .banner-section {
            padding: 50px 20px;
        }

        .content07 .main-title {
            font-size: 2rem;
        }

        .content07 .sub-title {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 768px) {
        .content07 .banner-section {
            padding: 40px 15px;
        }

        .content07 .main-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .content07 .sub-title {
            font-size: 1.4rem;
        }
    }

    @media (max-width: 576px) {
        .content07 .banner-section {
            padding: 30px 10px;
        }

        .content07 .main-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .content07 .sub-title {
            font-size: 1.2rem;
        }
    }



    .content08 {
        width: 100%;
    }

    .content08 .container {
        width: 100%;
        max-width: 1600px;
        padding: 0px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .content08 .text-content {
        flex: 1;
        padding: 0 20px;
    }

    .content08 .main-heading {
        font-size: 2.5rem;
        color: #2196F3;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .content08 .sub-heading {
        font-size: 1.2rem;
        color: #333;
    }

    .content08 .image-container {
        width: 150px;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content08 .person-image {
        max-width: 100%;
        height: auto;
    }

    /* 반응형 스타일 */
    @media (max-width: 1200px) {
        .content08 .container {
            max-width: 95%;
        }

        .content08 .main-heading {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 992px) {
        .content08 .main-heading {
            font-size: 2rem;
        }

        .content08 .sub-heading {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 768px) {
        .content08 .container {
            flex-direction: column;
            text-align: center;
        }

        .content08 .text-content {
            padding-right: 0;
            margin-bottom: 20px;
        }

        .content08 .main-heading {
            font-size: 1.8rem;
        }

        .content08 .image-container {
            width: 120px;
            height: 120px;
        }
    }

    @media (max-width: 576px) {
        .content08 .main-heading {
            font-size: 1.5rem;
        }

        .content08 .sub-heading {
            font-size: 1rem;
        }

        .content08 .image-container {
            width: 100px;
            height: 100px;
        }
    }



    .content09 {
        width: 100%;
    }

    .content09 .membership-banner {
        width: 100%;
        background-color: #f1f1f1;
        padding: 20px 15px;
    }

    .content09 .container {
        max-width: 1600px;
        margin: 0 auto;
        text-align: left;
    }

    .content09 .membership-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 6px;
        letter-spacing: -0.02em;
    }

    .content09 .membership-red {
        color: #e03131;
        font-weight: 700;
    }

    .content09 .membership-subtitle {
        font-size: 1rem;
        color: #666;
        font-weight: 400;
        letter-spacing: -0.01em;
    }

    /* Responsive styles */
    @media (max-width: 1200px) {
        .content09 .membership-title {
            font-size: 1.4rem;
        }

        .content09 .membership-subtitle {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 992px) {
        .content09 .membership-title {
            font-size: 1.3rem;
        }

        .content09 .membership-subtitle {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 768px) {
        .content09 .membership-banner {
            padding: 18px 10px;
        }

        .content09 .membership-title {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .content09 .membership-subtitle {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 576px) {
        .content09 .membership-banner {
            padding: 15px 8px;
        }

        .content09 .membership-title {
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .content09 .membership-subtitle {
            font-size: 0.8rem;
        }
    }


    .content10 {
        width: 100%
    }

    .content10 .benefits-section {
        position: relative;
        width: 100%;
        background-color: #f1f1f1;
        background-image: url('https://lh3.googleusercontent.com/A8tJZ1b4QzBbfibaR35zZqSNlCqObubzQYu9oA9NbpY9JiZrBvU2rKyci8A_6GowWZ6eiF6W2_NPqVMnssDiWKmyj22zJv3Qt_a5F6oM8MrKMyONHkQGEg=s0');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 50px 20px;
        overflow: hidden;
    }

    .content10 .container {
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .content10 .benefits-content {
        width: 55%;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        padding: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .content10 .image-person {
        width: 40%;
        text-align: center;
    }

    .content10 .image-person img {
        max-width: 100%;
        height: auto;
    }

    .content10 .benefit-item {
        margin-bottom: 30px;
        display: flex;
        align-items: flex-start;
    }

    .content10 .benefit-item:last-child {
        margin-bottom: 0;
    }

    .content10 .icon-circle {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 50%;
        background-color: #19a0de;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
    }

    .content10 .icon-circle img {
        width: 30px;
        height: 30px;
    }

    .content10 .benefit-text {
        flex: 1;
    }

    .content10 .benefit-title {
        color: #19a0de;
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .content10 .benefit-list {
        list-style-type: none;
    }

    .content10 .benefit-list li {
        position: relative;
        padding-left: 15px;
        margin-bottom: 5px;
        font-size: 1.2rem;
    }

    .content10 .benefit-list li:before {
        content: "?";
        position: absolute;
        left: 0;
        top: 0;
    }

    .content10 .benefit-list li:last-child {
        margin-bottom: 0;
    }

    .content10 .blue-bg {
        background-color: #e8f4fa;
        padding: 15px;
        border-radius: 5px;
        margin-top: 5px;
    }

    .content10 .footer-note {
        font-size: 0.75rem;
        color: #666;
        margin-top: 20px;
    }

    /* Icons */
    .content10 .icon-health:before {
        content: "+";
        color: white;
        font-size: 30px;
        font-weight: bold;
    }

    .content10 .icon-resort:before {
        content: "??";
        font-size: 24px;
    }

    .content10 .icon-care:before {
        content: "♥";
        color: white;
        font-size: 24px;
    }

    .content10 .icon-funeral:before {
        content: "???";
        font-size: 24px;
    }

    .content10 .icon-pet:before {
        content: "??";
        font-size: 24px;
    }

    .content10 .icon-aftercare:before {
        content: "??";
        font-size: 24px;
    }

    /* Responsive styles */
    @media (max-width: 1200px) {
        .content10 .container {
            max-width: 1100px;
        }

        .content10 .benefits-content {
            width: 60%;
            padding: 30px;
        }

        .content10 .image-person {
            width: 35%;
        }

        .content10 .icon-circle {
            width: 50px;
            height: 50px;
            min-width: 50px;
        }

        .content10 .benefit-title {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 992px) {
        .content10 .container {
            max-width: 900px;
            flex-direction: column-reverse;
        }

        .content10 .benefits-content {
            width: 100%;
            margin-top: 30px;
        }

        .content10 .image-person {
            width: 70%;
            max-width: 400px;
        }

        .content10 .benefit-item {
            margin-bottom: 25px;
        }
    }

    @media (max-width: 768px) {
        .content10 .benefits-section {
            padding: 40px 15px;
        }

        .content10 .benefits-content {
            padding: 25px;
        }

        .content10 .image-person {
            width: 80%;
        }

        .content10 .icon-circle {
            width: 45px;
            height: 45px;
            min-width: 45px;
            margin-right: 15px;
        }

        .content10 .benefit-title {
            font-size: 1rem;
        }

        .content10 .benefit-list li {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 576px) {
        .content10 .benefits-section {
            padding: 30px 10px;
        }

        .content10 .benefits-content {
            padding: 20px 15px;
        }

        .content10 .image-person {
            width: 90%;
        }

        .content10 .icon-circle {
            width: 40px;
            height: 40px;
            min-width: 40px;
            margin-right: 10px;
        }

        .content10 .benefit-item {
            margin-bottom: 20px;
        }

        .content10 .benefit-title {
            font-size: 0.95rem;
            margin-bottom: 5px;
        }

        .content10 .benefit-list li {
            font-size: 0.8rem;
            padding-left: 12px;
        }

        .content10 .footer-note {
            font-size: 0.7rem;
        }
    }


    .content11 {
        width: 100%
    }

    .content11 .product-section {
        width: 100%;
        padding: 60px 20px;
    }

    .content11 .container {
        max-width: 1600px;
        margin: 0 auto;
    }

    .content11 .section-header {
        margin-bottom: 50px;
    }

    .content11 .green-line {
        display: block;
        width: 50px;
        height: 1px;
        background-color: #0b96ce;
        margin-bottom: 30px;
    }

    .content11 .sub-title {
        font-size: 2rem;
        font-weight: 500;
        margin-bottom: 15px;
        padding: 0;
        text-align: left;
        letter-spacing: -2px;
    }

    .content11 .main-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 40px;
        letter-spacing: -2px;
    }

    .content11 .main-title .blue-text {
        color: #1D90D3;
    }

    .content11 .product-cards {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 0 -10px;
    }

    .content11 .product-card {
        flex: 1;
        min-width: 280px;
        margin: 0 10px 20px;
        display: flex;
        border-radius: 30px;
    }

    .content11 .card-wrapper {
        position: relative;
        border-style: solid;
        width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 30px;
    }

    .content11 .card-wrapper.blue-1 {
        border-color: #28A0E5;
    }

    .content11 .card-wrapper.blue-2 {
        border-color: #3169B4;
    }

    .content11 .card-wrapper.blue-3 {
        border-color: #2E50A4;
    }

    .content11 .card-wrapper.blue-4 {
        border-color: #1AAFCE;
    }

    .content11 .card-header {
        color: white;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1.3rem;
        font-weight: 700;
        border-radius: 25px 25px 0px 0px;
    }

    .content11 .card-header.blue-1 {
        background-color: #28A0E5;
    }

    .content11 .card-header.blue-2 {
        background-color: #3169B4;
    }

    .content11 .card-header.blue-3 {
        background-color: #2E50A4;
    }

    .content11 .card-header.blue-4 {
        background-color: #1AAFCE;
    }

    .content11 .best-badge {
        position: absolute;
        top: -15px;
        right: -15px;
        width: 60px;
        height: 60px;
        background-color: #FF6B3D;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 900;
        font-size: 1.1rem;
        transform: rotate(15deg);
        z-index: 2;
    }

    .content11 .card-content {
        padding: 30px 20px;
        background-color: white;
        text-align: center;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 30px;
    }

    .content11 .price-container {
        margin-bottom: 20px;
    }

    .content11 .price {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .content11 .price.blue-1 {
        color: #28A0E5;
    }

    .content11 .price.blue-2 {
        color: #3169B4;
    }

    .content11 .price.blue-3 {
        color: #2E50A4;
    }

    .content11 .price.blue-4 {
        color: #1AAFCE;
    }

    .content11 .price span {
        font-size: 2rem;
    }

    .content11 .payment-details {
        margin-bottom: 15px;
        font-size: 1.5rem;
    }

    .content11 .payment-option {
        display: block;
        margin-bottom: 8px;
    }

    .content11 .product-info {
        font-size: 1.2rem;
        color: #666;
        margin-top: 15px;
        min-height: 3em;
    }

    .content11 .footer-note {
        margin-top: 20px;
        text-align: center;
        font-size: 1.5rem;
        line-height: 1.6;
        letter-spacing: -1px;
    }

    .content11 .red-text {
        color: #E74C3C;
        font-weight: 700;
    }

    /* Responsive styles */
    @media (max-width: 1200px) {
        .content11 .product-card {
            min-width: 260px;
        }

        .content11 .price {
            font-size: 3rem;
        }

        .content11 .price span {
            font-size: 1.8rem;
        }

        .content11 .payment-details {
            font-size: 1rem;
        }
    }

    @media (max-width: 992px) {
        .content11 .product-cards {
            flex-wrap: wrap;
        }

        .content11 .product-card {
            flex: 1 1 45%;
            margin-bottom: 20px;
        }

        .content11 .sub-title {
            font-size: 1.6rem;
        }

        .content11 .main-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 768px) {
        .content11 .product-section {
            padding: 40px 15px;
        }

        .content11 .product-card {
            flex: 1 1 100%;
            max-width: 500px;
            margin: 0 auto 20px;
        }

        .content11 .product-cards {
            justify-content: center;
        }

        .content11 .section-header {
            margin-bottom: 30px;
            text-align: center;
        }

        .content11 .green-line {
            margin: 0 auto 20px;
        }

        .content11 .sub-title {
            font-size: 1.4rem;
        }

        .content11 .main-title {
            font-size: 1.8rem;
        }

        .content11 .footer-note {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .content11 .product-section {
            padding: 30px 10px;
        }

        .content11 .card-header {
            font-size: 1.1rem;
            padding: 12px 15px;
        }

        .content11 .price {
            font-size: 3.5rem;
        }

        .content11 .price span {
            font-size: 1.5rem;
        }

        .content11 .payment-details {
            font-size: 1.5rem;
        }

        .content11 .product-info {
            font-size: 1.2rem;
        }

        .content11 .best-badge {
            width: 50px;
            height: 50px;
            font-size: 0.9rem;
            top: -10px;
            right: -10px;
        }

        .content11 .sub-title {
            font-size: 1.2rem;
            text-align: center;
        }

        .content11 .main-title {
            font-size: 1.6rem;
        }

        .content11 .footer-note {
            font-size: 0.9rem;
        }
    }

    .content12 .refund-section {
        width: 100%;
        background-color: #f7f7f7;
        padding: 15px 0;
        border-top: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
    }

    .content12 .container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: left;
    }

    .content12 .refund-text {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1.5;
        text-align: center;
    }

    .content12 .red-text {
        color: #e03131;
        font-weight: 700;
    }

    /* Responsive styles */
    @media (max-width: 1200px) {
        .content12 .container {
            max-width: 1100px;
        }
    }

    @media (max-width: 992px) {
        .content12 .container {
            max-width: 900px;
        }

        .content12 .refund-text {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 768px) {
        .content12 .refund-section {
            padding: 12px 0;
        }

        .content12 .container {
            max-width: 700px;
            padding: 0 15px;
        }

        .content12 .refund-text {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .content12 .refund-section {
            padding: 10px 0;
        }

        .content12 .container {
            padding: 0 10px;
        }

        .content12 .refund-text {
            font-size: 0.85rem;
            line-height: 1.4;
        }
    }




    .content13 {
        width: 100%;
    }

    .content13 .container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 20px;
    }

    /* 패키지 헤더 버튼 스타일 */
    .content13 .package-header {
        display: flex;
        width: 100%;
    }

    .content13 .package-header-item {
        flex: 1;
        text-align: center;
        padding: 30px;
        font-weight: bold;
        color: white;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.2s ease;
        position: relative;
        background-color: #333;
        /* 모든 탭의 기본 색상을 통일 */
    }

    .content13 .package-header-item:hover {
        opacity: 0.9;
    }

    .content13 .package-header-item.active {
        background-color: #00a0e9;
        /* 활성 탭은 모두 동일한 파란색으로 */
    }

    .content13 .package-header-item.active::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #00a0e9;
        /* 삼각형 화살표 색상도 통일 */
    }

    /* 패키지 내용 영역 */
    .content13 .package-content {
        display: none;
    }

    .content13 .package-content.active {
        display: block;
    }

    /* 테이블 스타일 */
    .content13 .pricing-table {
        width: 100%;
        border-collapse: collapse;
    }

    .content13 .row {
        display: flex;
        border-bottom: 1px solid #ddd;
    }

    .content13 .cell {
        font-size: 17px;
        font-weight: 400;
        padding: 15px;
        text-align: left;
        border-right: 1px solid #ddd;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex: 1;
    }

    .content13 .cell:first-child {
        background-color: #f8f9f9;
        font-weight: 600;
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        flex: none;
        justify-content: center;
        border-left: 1px solid #ddd;
    }

    .content13 .cell.wide-content {
        flex: 5;
    }

    .content13 .cell.center-content {
        text-align: center;
        justify-content: center;
    }

    .content13 .highlight {
        color: #e74c3c;
        font-weight: bold;
    }

    /* 관 영역 스타일 */
    .content13 .gwan-section {
        display: flex;
        border-bottom: 1px solid #ddd;
        font-size: 17px
    }

    .content13 .gwan-label {
        background-color: #f8f9f9;
        font-weight: 600;
        width: 80px;
        min-width: 80px;
        max-width: 80px;
        flex: none;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

    .content13 .gwan-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .content13 .gwan-row {
        display: flex;
        border-bottom: 1px solid #ddd;
    }

    .content13 .gwan-row:last-child {
        border-bottom: none;
    }

    .content13 .gwan-subcategory {
        background-color: #f8f9f9;
        font-weight: 600;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 170px;
        min-width: 170px;
        max-width: 170px;
        flex: none;
        border-right: 1px solid #ddd;
    }

    .content13 .gwan-data {
        flex: 1;
        padding: 15px;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-right: 1px solid #ddd;
    }

    /* 현대식 영역 스타일 */
    .content13 .modern-section {
        display: flex;
        border-bottom: 1px solid #ddd;
        font-size: 17px
    }

    .content13 .modern-label {
        background-color: #f8f9f9;
        font-weight: 600;
        width: 80px;
        min-width: 80px;
        max-width: 80px;
        flex: none;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

    .content13 .modern-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .content13 .modern-row {
        display: flex;
        border-bottom: 1px solid #ddd;
    }

    .content13 .modern-row:last-child {
        border-bottom: none;
    }

    .content13 .modern-subcategory {
        background-color: #f8f9f9;
        font-weight: 600;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 170px;
        min-width: 170px;
        max-width: 170px;
        flex: none;
        border-right: 1px solid #ddd;
    }

    .content13 .modern-data {
        flex: 1;
        padding: 15px;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-right: 1px solid #ddd;
    }

    .content13 .footnote {
        margin-top: 10px;
        padding: 10px;
        color: #777;
        text-align: left;
        font-size: 14px;
        color: #e74c3c
    }

    /* 반응형 스타일 */
    @media (max-width: 768px) {
        .content13 .package-header {
            flex-wrap: wrap;
        }

        .content13 .package-header-item {
            flex: 1 0 50%;
        }

        .content13 .row,
        .content13 .gwan-section,
        .content13 .modern-section {
            flex-direction: column;
        }

        .content13 .cell:first-child,
        .content13 .gwan-label,
        .content13 .modern-label {
            width: 100%;
            min-width: 100%;
            max-width: 100%;
            border-right: none;
        }

        .content13 .gwan-row,
        .content13 .modern-row {
            flex-direction: column;
        }

        .content13 .gwan-subcategory,
        .content13 .modern-subcategory {
            width: 100%;
            min-width: 100%;
            max-width: 100%;
            border-right: none;
        }

        .content13 .gwan-data,
        .content13 .modern-data,
        .content13 .cell {
            border-right: none;
        }
    }

    .content14 {
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        padding: 10rem 0;
    }

    /* 좌우 패딩 제거 */
    .content14 .container {
        width: 100%;
        max-width: 1600px;
        padding: 0 20px;
    }

    /* 컨테이너에 적절한 패딩 추가 */
    .content14 .choice_header {
        text-align: left;
        padding: 20px 20px;
    }
    .content14 .sub-title {
        font-size: 2rem;
        font-weight: 500;
        margin-bottom: 15px;
        padding: 0;
        text-align: left;
        letter-spacing: -2px;
    }

    .content14 .main-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 40px;
        letter-spacing: -2px;
    }
    .content14 .main-title .blue-text {
    color: #1D90D3;
}
.content14 .green-line {
    display: block;
    width: 50px;
    height: 1px;
    background-color: #0b96ce;
    margin-bottom: 30px;
}
    /* 패딩 추가 */
    .content14 .choice_header span {
        color: #2aa2e1;
        font-weight: bold
    }

    .content14 h2 {
        font-size: 2rem;
        font-weight: 400
    }


    .content14 .sub-title strong {
        color: #2aa2e1;
    }

    .content14 .grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 2rem;
        width: 100%;
    }

    .content14 .grid-item {
        flex: 0 0 auto;
        width: calc((100% - 60px) / 4);
        background-color: #fff;
        border: 1px solid #ddd;
        padding: 1.5rem;
        text-align: center;
    }

    /* 정확한 너비 계산 */
    @media screen and (max-width: 1200px) {
        .content14 .grid-item {
            width: calc((100% - 40px) / 3);
            /* 3열, 2개의 갭 */
        }
    }

    @media screen and (max-width: 768px) {
        .content14 .grid-item {
            width: calc((100% - 20px) / 2);
            /* 2열, 1개의 갭 */
        }
    }

    @media screen and (max-width: 576px) {
        .content14 .grid-item {
            width: 100%;
            /* 1열 */
        }
    }

    /* 이미지 */
    .content14 .icon {
        max-width: 80px;
        height: auto;
        margin: 0 auto;
        display: block;
        margin-bottom: 1rem;
    }

    .content14 .grid-item h2 {
        font-size: 1.5rem;
        padding-bottom: 0.5rem;
        max-width: 190px;
        margin: 0 auto;
        color: #2aa2e1;
        line-height: 1.2
    }

    .content14 .grid-item p {
        font-size: 1.0rem;
        color: #555;
        padding-top: 5px;
        line-height: 1.2;
    }




    .content15 {
        width: 100%;
        padding: 50px 0;
        background-color: #e4e5e7;
    }

    .content15 .container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: space-between;
    }

    .content15 .credible-info {
        width: 40%;
        background-color: #f8fbff;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
    }

    .content15 .credible-image {
        width: 60%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        align-self: stretch;
    }

    .content15 .credible-image img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .content15 .section {
        width: 100%;
        text-align: center;
        padding: 50px 20px;border-bottom: 1px solid gainsboro;
    }

    .content15 .section-title {
        font-size: 34px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .content15 .section-content {
        margin: 10px 0;
        font-size: 18px;
        line-height: 1.2;
    }

    .content15 .icon {
        width: 70px;
        height: 70px;
        margin: 30px auto;
        display: block;
    }

    .content15 .trophy-icon {
        color: #00a0e9;
    }

    .content15 .expert-icon {
        color: #6bb8a7;
    }

    .content15 .assured-icon {
        color: #8eb3d7;
    }

    .content15 .highlight {
        color: #00a0e9;
        font-size: 22px;
    }

    .content15 .small-text {
        font-size: 12px;
        color: #666;
    }

    /* 반응형 스타일 */
    @media (max-width: 1200px) {
        .content15 .credible-info {
            width: 50%;
        }

        .content15 .credible-image {
            width: 50%;
        }
    }

    @media (max-width: 992px) {
        .content15 .credible-info {
            width: 100%;
            order: 2;
        }

        .content15 .credible-image {
            width: 100%;
            order: 1;
            margin-bottom: 20px;
        }
    }

    @media (max-width: 768px) {
        .content15 .section-title {
            font-size: 20px;
        }

        .content15 .section-content {
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .content15 .credible-info {
            padding: 15px;
        }
    }


    .content16 {
        width: 100%
    }

    .content16 .container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 50px 20px;
    }

    .content16 .title-section {
        text-align: center;
        margin-bottom: 50px;
    }

    .content16 .title-section h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .content16 .services-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .content16 .service-column {
        flex: 1;
        min-width: 30%;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .content16 .service-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }

    .content16 .service-header-icon {
        width: 20px;
        margin-right: 10px;
    }

    .content16 .service-header h2 {
        font-size: 28px;
        font-weight: 600;
    }

    .content16 .service-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .content16 .service-icon {
        width: 60px;
        height: 60px;
        background-color: #f0f0f0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .content16 .before-icon {
        background-color: #999;
        color: #fff;
    font-size: 22px;
    font-weight: 900;
    }

    .content16 .during-icon {
        background-color: #3498db;
        color: #fff;
    font-size: 22px;
    font-weight: 900;        
    }

    .content16 .after-icon {
        background-color: #2c3e50;
        color: #fff;
    font-size: 22px;
    font-weight: 900;        
    }

    .content16 .service-icon img {
        width: 30px;
        height: 30px;
        color: white;
    }

    .content16 .service-text {
        font-size: 24px;
    }

    @media (max-width: 1200px) {
        .content16 .service-column {
            min-width: 45%;
        }
    }

    @media (max-width: 768px) {
        .content16 .services-container {
            flex-direction: column;
        }

        .content16 .service-column {
            width: 100%;
            margin-bottom: 40px;
        }

        .content16 .service-header h2 {
            font-size: 24px;
        }
    }

    @media (max-width: 576px) {
        .content16 .container {
            padding: 30px 15px;
        }

        .content16 .title-section h2 {
            font-size: 28px;
        }

        .content16 .service-icon {
            width: 50px;
            height: 50px;
        }

        .content16 .service-icon img {
            width: 25px;
            height: 25px;
        }

        .content16 .service-text {
            font-size: 18px;
        }
    }


    .content17 {
        width: 100%
    }

    .content17 .container {
        max-width: 1600px;
        width: 100%;
        margin: 50px auto;
        padding: 0;
    }

    .content17 .header {
        padding: 20px 0 0;
    }

    .content17 .title-area {
        position: relative;
        margin-bottom: 10px;
        display: flex;
        align-items: flex-end;
    }

    .content17 .number {
        font-size: 140px;
        font-weight: bold;
        color: #7ed3f7;
        line-height: 0.8;
    }

    .content17 .title-container {
        margin-left: 10px;
        margin-bottom: 15px;
    }

    .content17 .subtitle {
        font-size: 24px;
        font-weight: normal;
        color: #555;
        margin-bottom: 5px;
    }

    .content17 .title {
        font-size: 48px;
        font-weight: bold;
        color: #009ade;
    }

    .content17 .main-image {
        width: 100%;
        margin-bottom: 0;
    }

    .content17 .main-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .content17 .table-container {
        width: 100%;
        overflow-x: auto;
    }

    .content17 .price-table {
        width: 100%;
        border-collapse: collapse;
        background-color: #fff;
        font-size: 17px
    }

    .content17 .price-table tr {
        border-bottom: 1px solid #ddd;
    }

    .content17 .price-table tr:last-child {
        border-bottom: none;
    }

    .content17 .price-table td {
        border-right: 1px solid #ddd;
        padding: 8px;
        text-align: center;
        vertical-align: middle;
        height: 40px;
    }

    .content17 .price-table td:last-child {
        border-right: none;
    }

    .content17 .header-cell {
        padding: 12px 0;
        font-weight: bold;
        color: white;
        text-align: center;
        font-size: 16px;
    }

    .content17 .category-header {
        background-color: #29a2dd;
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 12px 8px;
    }

    .content17 .header-basic {
        background-color: #29a2dd;
    }

    .content17 .header-standard {
        background-color: #2771b2;
    }

    .content17 .header-premium {
        background-color: #114f94;
    }

    .content17 .header-deluxe {
        background-color: #777;
    }

    .content17 .item-name {
        background-color: #f5f5f5;
        font-weight: 600;
        text-align: left;
        padding-left: 10px;
        width: 15%;
    }

    .content17 .highlighted {
        color: #e74c3c;
        font-weight: bold;
    }

    .content17 .category-cell {
        background-color: #f5f5f5;
        font-weight: bold;
        vertical-align: middle;
        text-align: center;
    }

    .content17 .sub-item-name {
        background-color: #f5f5f5;
        font-weight: bold;
        text-align: left;
        padding-left: 10px;
    }

    .content17 .footer-note {
        color: #e74c3c;
        font-weight: bold;
        font-size: 14px;
        margin-top: 10px;
    }

    .content17 .special-service {
        text-align: right;
        color: #e74c3c;
        font-weight: bold;
        font-size: 14px;
        margin-top: 5px;
    }

    .content17 .footer-container {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    /* 반응형 스타일 */
    @media (max-width: 1200px) {
        .content17 .number {
            font-size: 120px;
        }

        .content17 .title-container {
            left: 120px;
        }

        .content17 .title {
            font-size: 42px;
        }
    }

    @media (max-width: 992px) {
        .content17 .number {
            font-size: 100px;
        }

        .content17 .title-container {
            left: 100px;
            top: 15px;
        }

        .content17 .subtitle {
            font-size: 20px;
        }

        .content17 .title {
            font-size: 36px;
        }
    }

    @media (max-width: 768px) {
        .content17 .container {
            padding: 0 10px;
        }

        .content17 .number {
            font-size: 80px;
        }

        .content17 .title-container {
            left: 85px;
            top: 12px;
        }

        .content17 .subtitle {
            font-size: 18px;
        }

        .content17 .title {
            font-size: 30px;
        }

        .content17 .price-table {
            font-size: 12px;
        }

        .content17 .price-table td {
            padding: 5px;
        }
    }

    @media (max-width: 576px) {
        .content17 .number {
            font-size: 70px;
        }

        .content17 .title-container {
            left: 70px;
            top: 10px;
        }

        .content17 .subtitle {
            font-size: 16px;
        }

        .content17 .title {
            font-size: 26px;
        }

        .content17 .price-table {
            min-width: 900px;
        }

        .content17 .footer-note,
        .content17 .special-service {
            font-size: 12px;
        }
    }



    .content18 {
        width: 100%;
    }

    .content18 .container {
      max-width: 1600px;
      width: 100%;
      margin: 50px auto;
      padding: 0;
    }

    .content18 .header {
        padding: 20px 0 0;
    }

    .content18 .title-area {
        position: relative;
        margin-bottom: 10px;
        display: flex;
        align-items: flex-end;
    }

    .content18 .number {
        font-size: 140px;
        font-weight: bold;
        color: #7ed3f7;
        line-height: 0.8;
    }

    .content18 .title-container {
        margin-left: 10px;
        margin-bottom: 15px;
    }

    .content18 .subtitle {
        font-size: 24px;
        font-weight: normal;
        color: #555;
        margin-bottom: 5px;
    }

    .content18 .title {
        font-size: 48px;
        font-weight: bold;
        color: #009ade;
    }

    .content18 .divider {
        height: 2px;
        background-color: #009ade;
        margin-bottom: 0;
        width: 100%;
    }

    .content18 .images-section {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .content18 .image-container {
        width: 31%;
        margin-bottom: 20px;
    }

    .content18 .image-title {
        font-size: 18px;
        font-weight: bold;
        color: #0096d6;
        text-align: center;
        margin: 20px auto;
    }

    .content18 .image-container img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 5px;
    }

    .content18 .scroll-indicator {
        text-align: center;
        font-size: 14px;
        color: #777;
        margin-bottom: 10px;
        display: none;
    }

    .content18 .table-container {
        width: 100%;
        overflow-x: auto;
    }

    .content18 .price-table {
        width: 100%;
        border-collapse: collapse;
        background-color: #fff;
        font-size: 17px;
    }

    .content18 .price-table tr {
        border-bottom: 1px solid #ddd;
    }

    .content18 .price-table tr:last-child {
        border-bottom: none;
    }

    .content18 .price-table td {
        border-right: 1px solid #ddd;
        padding: 8px;
        text-align: center;
        vertical-align: middle;
        height: 40px;
    }

    .content18 .price-table td:last-child {
        border-right: none;
    }

    .content18 .header-cell {
        padding: 12px 0;
        font-weight: bold;
        color: white;
        text-align: center;
        font-size: 16px;
    }

    .content18 .header-standard {
        background-color: #4a7ed3;
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 12px 8px;
    }

    .content18 .header-premium {
        background-color: #4a5fc2;
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 12px 8px;
    }

    .content18 .item-name {
        background-color: #666;
        color: white;
        font-weight: 600;
        text-align: center;
        padding-left: 10px;
        width: 15%;
    }

    .content18 .highlighted {
        color: #e74c3c;
        font-weight: bold;
    }

    .content18 .category-cell {
        background-color: #f5f5f5;
        font-weight: bold;
        vertical-align: middle;
        text-align: center;
        width: 5%;
    }

    .content18 .vertical-text {
        text-orientation: mixed;
        white-space: nowrap;
        font-weight: bold;
    }

    .content18 .sub-item-name {
        background-color: #f5f5f5;
        font-weight: bold;
        text-align: left;
        padding-left: 10px;
    }

    .content18 .footer-container {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .content18 .footer-note {
        color: #555;
        font-size: 14px;
        margin-top: 10px;
    }

    .content18 .special-service {
        text-align: right;
        color: #e74c3c;
        font-weight: bold;
        font-size: 14px;
        margin-top: 5px;
    }

    @media (max-width: 1200px) {
        .content18 .number {
            font-size: 120px;
        }

        .content18 .title {
            font-size: 42px;
        }
    }

    @media (max-width: 992px) {
        .content18 .number {
            font-size: 100px;
        }

        .content18 .subtitle {
            font-size: 20px;
        }

        .content18 .title {
            font-size: 36px;
        }

        .content18 .image-container {
            width: 48%;
        }

        .content18 .scroll-indicator {
            display: block;
        }
    }

    @media (max-width: 768px) {
        .content18 .container {
            padding: 0 10px;
        }

        .content18 .number {
            font-size: 80px;
        }

        .content18 .subtitle {
            font-size: 18px;
        }

        .content18 .title {
            font-size: 30px;
        }

        .content18 .price-table {
            font-size: 12px;
        }

        .content18 .price-table td {
            padding: 5px;
        }

        .content18 .image-container {
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .content18 .number {
            font-size: 70px;
        }

        .content18 .subtitle {
            font-size: 16px;
        }

        .content18 .title {
            font-size: 26px;
        }

        .content18 .price-table {
            min-width: 900px;
        }

        .content18 .footer-note,
        .content18 .special-service {
            font-size: 12px;
        }

    }










    .content19 {
        width: 100%
    }

    .content19 .container {
      max-width: 1600px;
      width: 100%;
      margin: 50px auto;
      padding: 0;
    }

    .content19 .header {
        padding: 20px 0 0;
    }

    .content19 .title-area {
        position: relative;
        margin-bottom: 10px;
        display: flex;
        align-items: flex-end;
    }

    .content19 .number {
        font-size: 140px;
        font-weight: bold;
        color: #7ed3f7;
        line-height: 0.8;
    }

    .content19 .title-container {
        margin-left: 10px;
        margin-bottom: 15px;
    }

    .content19 .subtitle {
        font-size: 24px;
        font-weight: normal;
        color: #555;
        margin-bottom: 5px;
    }

    .content19 .title {
        font-size: 48px;
        font-weight: bold;
        color: #009ade;
    }

    .content19 .divider {
        height: 2px;
        background-color: #009ade;
        margin-bottom: 0;
        width: 100%;
    }

    .content19 .images-section {
        display: flex;
        width: 100%;
        margin-bottom: 0;
    }

    .content19 .image-container {
        flex: 1;
        position: relative;
        border-right: 1px solid #fff;
    }

    .content19 .image-container:last-child {
        border-right: none;
    }

    .content19 .image-container img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .content19 .table-section {
        display: flex;
        width: 100%;
        border: 1px solid #ddd;
        flex-direction: row;
    }

    .content19 .table-left,
    .content19 .table-right {
        width: 50%;
        display: flex;
        flex-direction: column;
    }

    .content19 .table-left {
        border-right: 1px solid #ddd;
    }

    .content19 .service-table {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
        border-collapse: collapse;
        font-size: 17px
    }

    .content19 .service-table tbody {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .content19 .service-table tr {
        flex-grow: 1;
        display: flex;
        border-bottom: 1px dotted #ddd;
    }

    .content19 .service-table tr:last-child {
        border-bottom: none;
    }

    .content19 .section-title {
        background-color: #f0f0f0;
        color: #009ade;
        font-weight: bold;
        padding: 10px 15px;
        border-bottom: 1px solid #ddd;
    }

    .content19 .section-title::before {
        content: "| ";
    }

    .content19 .service-table td {
        padding: 12px 15px;
        vertical-align: middle;
        line-height: 1.5;
        display: flex;
        align-items: center;
    }

    .content19 .service-title {
        width: 25%;
        font-weight: bold;
        text-align: center;
        background-color: #f8f8f8;
    }

    .content19 .service-desc {
        width: 75%;
    }

    .content19 .footer-note {
        color: #666;
        font-size: 13px;
        margin-top: 20px;
        text-align: center;
        padding: 0 10px 20px;
    }

    @media (max-width: 1200px) {
        .content19 .number {
            font-size: 120px;
        }

        .content19 .title {
            font-size: 42px;
        }
    }

    @media (max-width: 992px) {
        .content19 .number {
            font-size: 100px;
        }

        .content19 .subtitle {
            font-size: 20px;
        }

        .content19 .title {
            font-size: 36px;
        }

        .content19 .service-title {
            width: 100%;
        }

        .content19 .service-desc {
            width: 70%;
        }
    }

    @media (max-width: 768px) {
        .content19 .container {
            padding: 0 10px;
        }

        .content19 .number {
            font-size: 80px;
        }

        .content19 .subtitle {
            font-size: 18px;
        }

        .content19 .title {
            font-size: 30px;
        }

        .content19 .images-section {
            flex-wrap: wrap;
        }

        .content19 .image-container {
            flex: 1 0 50%;
            border-right: none;
            margin-bottom: 5px;
        }

        .content19 .table-section {
            flex-direction: column;
        }

        .content19 .table-left,
        .content19 .table-right {
            width: 100%;
            display: block;
        }

        .content19 .table-left {
            border-right: none;
        }

        .content19 .service-table,
        .content19 .service-table tbody,
        .content19 .service-table tr {
            display: block;
        }

        .content19 .service-table td {
            display: block;
        }

        .content19 .service-title {
            width: 100%;
        }

        .content19 .service-desc {
            width: 10%;
        }
    }

    @media (max-width: 576px) {
        .content19 .number {
            font-size: 70px;
        }

        .content19 .subtitle {
            font-size: 16px;
        }

        .content19 .title {
            font-size: 26px;
        }

        .content19 .image-container {
            flex: 1 0 100%;
        }

        .content19 .service-table td {
            padding: 20px;
            font-size: 14px;
        }

        .content19 .service-title {
            width: 100%;
        }

        .content19 .service-desc {
            width: 100%;
        }

        .content19 .footer-note {
            font-size: 12px;
        }
    }

    .content20 .container {max-width: 1600px;
      width: 100%;
      margin: 50px auto;
      padding: 0;}


    .content20 .header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }


    .content20 .number {
        font-size: 140px;
        color: #8cd1f6;
        font-weight: bold;
        line-height: 1;
        margin-right: 20px;
    }

    .content20 .title-container {
        display: flex;
        flex-direction: column;
    }

    .content20 .subtitle {
        font-size: 24px;
        color: #555;
        margin-bottom: 5px;
    }

    .content20 .main-title {
        font-size: 48px;
        color: #098acb;
        font-weight: bold;
    }

    .content20 .divider {
        height: 2px;
        background-color: #098acb;
        margin-bottom: 20px;
    }

    .content20 .cruise-types {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .content20 .cruise-type {
        flex: 1;
        min-width: 240px;
        margin: 0 5px 20px;
        display: flex;
        flex-direction: column;
    }

    .content20 .cruise-label {
        font-size: 1rem;
        color: #098acb;
        text-align: center;
        padding: 5px;
        margin-bottom: 5px;
    }

    .content20 .cruise-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1.5;
        object-fit: cover;
    }

    .content20 .info-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        border: 1px solid #ddd;
        font-size: 17px
    }

    .content20 .info-table tr {
        border-bottom: 1px dotted #ccc;
    }

    .content20 .info-table tr:last-child {
        border-bottom: none;
    }

    .content20 .info-table th {
        width: 15%;
        padding: 15px 10px;
        background-color: #f9f9f9;
        text-align: left;
        vertical-align: top;
    }

    .content20 .info-table td {
        padding: 15px 10px;
        line-height: 1.6;
    }

    .content20 .note {
        margin-top: 20px;
        color: #666;
        font-size: 17px;
        line-height: 1.65
    }

    @media (max-width: 1200px) {
        .content20 .cruise-types {
            flex-wrap: wrap;
        }

        .content20 .cruise-type {
            flex: 1 0 45%;
            margin-bottom: 20px;
        }

        .content20 .info-table th {
            width: 20%;
        }
    }

    @media (max-width: 768px) {
        .content20 .header {
            flex-direction: column;
            align-items: flex-start;
        }

        .content20 .number {
            font-size: 4rem;
            margin-bottom: 10px;
        }

        .content20 .cruise-type {
            flex: 1 0 100%;
        }

        .content20 .info-table th,
        .content20 .info-table td {
            display: block;
            width: 100%;
        }

        .content20 .info-table th {
            padding-bottom: 5px;
        }

        .content20 .info-table td {
            padding-top: 5px;
        }
    }

    .content21 {
        width: 100%
    }
    .content21 .container {max-width: 1600px;
      width: 100%;
      margin: 50px auto;
      padding: 0;}

    .content21 .header {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 20px;
        border-bottom: 2px solid #0099cc;
        padding-bottom: 10px;
    }

    .content21 .number {
        font-size: 140px;
        color: #8bd0ec;
        font-weight: bold;
        line-height: 1;
        margin-right: 20px;
    }

    .content21 .title-container {
        display: flex;
        flex-direction: column;
    }

    .content21 .region {
        font-size: 24px;
        font-weight: normal;
        margin-bottom: 5px;
    }

    .content21 .service-title {
        font-size: 48px;
        font-weight: bold;
        color: #0099cc;
    }

    .content21 .services-grid {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 20px;
        margin-bottom: 20px;
    }

    .content21 .service-category {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .content21 .category-header {
        background-color: #0099cc;
        color: white;
        padding: 5px 15px;
        border-radius: 5px;
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: normal;
        white-space: nowrap;
    }

    .content21 .service-image {

        height: 220px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .content21 .service-description {
        display: flex;
        align-items: center;
        font-size: 16px;
        line-height: 1.4;
    }

    .content21 .service-description::before {
        content: "";
        color: #0099cc;
        font-weight: bold;
        margin-right: 5px;
    }

    .content21 .note {
        font-size: 14px;
        margin-top: 20px;
        line-height: 1.6;
    }

    .content21 .note p {
        margin-bottom: 10px;
    }

    .content21 .contact {
        font-weight: bold;
    }

    @media (max-width: 1200px) {
        .content21 .services-grid {
            flex-direction: column;
        }

        .content21 .service-category {
            width: 100%;
            flex-direction: column;
        }
    }

    @media (max-width: 768px) {
        .content21 .header {
            flex-direction: column;
            align-items: flex-start;
        }

        .content21 .number {
            font-size: 80px;
            margin-bottom: 10px;
        }

        .content21 .service-title {
            font-size: 36px;
        }

        .content21 .service-category {
            flex-direction: column;
        }

        .content21 .service-image {
            width: 100%;
        }
    }

    .content22 {
        width: 100%
    }
    .content22 .container {max-width: 1600px;
      width: 100%;
      margin: 50px auto;
      padding: 0;}

    .content22 .header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .content22 .number {
        font-size: 120px;
        color: #8bd0ec;
        font-weight: bold;
        line-height: 1;
        margin-right: 20px;
    }

    .content22 .title-container {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .content22 .subtitle {
        font-size: 24px;
        font-weight: normal;
        margin-bottom: 5px;
    }

    .content22 .service-title {
        font-size: 48px;
        font-weight: bold;
        color: #0099cc;
        margin-bottom: 5px;
    }

    .content22 .logo-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .content22 .slogan {
        font-style: italic;
        color: #666;
    }

    .content22 .logo {
        font-weight: bold;
        font-size: 24px;
        display: flex;
        align-items: center;
    }

    .content22 .border-line {
        height: 2px;
        background-color: #0099cc;
        width: 100%;
        margin-bottom: 20px;
    }

    .content22 .services-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }

    .content22 .service-category {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }

    .content22 .category-header {
        background-color: #0099cc;
        color: white;
        padding: 5px 15px;
        border-radius: 5px;
        margin-bottom: 10px;
        display: inline-block;
        font-size: 18px;
        font-weight: normal;
    }

    .content22 .service-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .content22 .service-description {
        margin-top: 10px;
        line-height: 1.6;
        font-size: 15px;
    }

    .content22 .service-description p {
        margin-bottom: 10px;
    }

    .content22 .service-steps {
        background-color: #f0f0f0;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .content22 .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        text-align: center;
        position: relative;
    }

     .content22 .step:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
        font-size: 24px;
    } 

    .content22 .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
        opacity: 0.6;
    }

    .content22 .step-text {
        font-size: 18px;
        line-height: 1.4;
    }

    @media (max-width: 1200px) {
        .content22 .header {
            flex-direction: column;
            align-items: flex-start;
        }

        .content22 .logo-container {
            margin-top: 15px;
        }

        .content22 .services-grid {
            flex-wrap: wrap;
        }

        .content22 .service-category {
            flex-basis: calc(50% - 10px);
            min-width: 250px;
        }

        .content22 .service-steps {
            flex-wrap: wrap;
            gap: 20px;
        }

        .content22 .step {
            flex-basis: 30%;
        }

        .content22 .step:not(:last-child)::after {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .content22 .number {
            font-size: 80px;
        }

        .content22 .service-title {
            font-size: 36px;
        }

        .content22 .service-category {
            flex-basis: 100%;
        }

        .content22 .step {
            flex-basis: 45%;
        }
    }

    .content23 {
        width: 100%
    }
    .content23 .container {max-width: 1600px;
      width: 100%;
      margin: 50px auto;
      padding: 0;}

    .content23 .header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .content23 .number {
        font-size: 140px;
        color: #8bd0ec;
        font-weight: bold;
        line-height: 1;
        margin-right: 20px;
    }

    .content23 .title-container {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .content23 .subtitle {
        font-size: 24px;
        font-weight: normal;
        margin-bottom: 5px;
    }

    .content23 .service-title {
        font-size: 48px;
        font-weight: bold;
        color: #0099cc;
        margin-bottom: 5px;
    }

    .content23 .border-line {
        height: 2px;
        background-color: #0099cc;
        width: 100%;
        margin-bottom: 20px;
    }

    .content23 .image-gallery {
        display: flex;
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
        max-width: 1600px;
        overflow: hidden;
    }

    .content23 .gallery-img {
        flex: 1;
        object-fit: cover;
        height: 100%;
        width: calc(100% / 3);
        max-width: calc(1600px / 3);
    }

    .content23 .service-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
        font-size: 17px
    }

    .content23 .service-table th,
    .content23 .service-table td {
        border: 1px dotted #ccc;
        padding: 12px 15px;
        text-align: left;
    }

    .content23 .service-table th {
        width: 25%;
        background-color: #f9f9f9;
    }

    .content23 .service-notes {
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 15px;
    }

    .content23 .service-notes p {
        margin-bottom: 10px;
    }

    .content23 .service-steps {
        background-color: #f0f0f0;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .content23 .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        text-align: center;
        position: relative;
    }

    .content23 .step:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
        font-size: 24px;
    }

    .content23 .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        opacity: 0.6;
    }

    .content23 .step-text {
        font-size: 18px;
        line-height: 1.4;
    }

    @media (max-width: 1200px) {
        .content23 .header {
            flex-direction: column;
            align-items: flex-start;
        }

        .content23 .image-gallery {
            flex-direction: column;
            height: auto;
            max-width: 100%;
        }

        .content23 .gallery-img {
            width: 100%;
            max-width: 100%;
            height: 200px;
            margin-bottom: 10px;
            object-fit: cover;
        }

        .content23 .service-steps {
            flex-wrap: wrap;
            gap: 20px;
        }

        .content23 .step {
            flex-basis: 30%;
        }

        .content23 .step:not(:last-child)::after {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .content23 .number {
            font-size: 80px;
        }

        .content23 .service-title {
            font-size: 36px;
        }

        .content23 .gallery-img {
            height: 180px;
        }

        .content23 .service-table th,
        .content23 .service-table td {
            display: block;
            width: 100%;
        }

        .content23 .service-table th {
            border-bottom: none;
            padding-bottom: 5px;
        }

        .content23 .service-table td {
            border-top: none;
            padding-top: 5px;
        }

        .content23 .step {
            flex-basis: 45%;
            margin-bottom: 15px;
        }
    }


    .content24 {
        width: 100%
    }
    .content24 .container {max-width: 1600px;
      width: 100%;
      margin: 50px auto;
      padding: 0;}

    .content24 .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        width: 100%;
    }

    .content24 .header-title {
        color: #3498db;
        font-size: 2.5rem;
        font-weight: 600;
    }

    .content24 .header-logo {
        display: flex;
        align-items: center;
    }

    .content24 .divider {
        width: 100%;
        height: 1px;
        background-color: #333;
        margin: 10px 0 50px 0;
    }

    .content24 .content {
        padding: 0
    }

    .content24 ul {
        list-style-type: disc;
        padding-left: 20px;
    }

    .content24 ul li {
        margin-bottom: 10px;
        font-size: 1.1rem;
        line-height: 1.5;
        list-style: disc
    }

    @media (max-width: 768px) {
        .content24 .header {
            flex-direction: column;
            align-items: flex-start;
            padding: 15px;
        }

        .content24 .header-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .content24 .content {
            padding: 0 20px;
        }

        .content24 ul li {
            font-size: 1rem;
        }
    }


    .content25 {
        width: 100%;

    }

    .content25 .content {
        padding: 0
    }

    .content25 .section {
        margin-bottom: 40px;
    }

    .content25 .section-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #2c3e50;
    }

    .content25 ol {
        list-style-type: decimal;
        padding-left: 0px;
        margin-bottom: 20px;
    }

    .content25 li {
        margin-bottom: 10px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .content25 .note {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
    }


    /* 반응형 스타일 */
    @media (max-width: 768px) {
        .content25 .content {
            padding: 0
        }

        .content25 .section-title {
            font-size: 1.3rem;
        }

        .content25 li {
            font-size: 0.9rem;
        }
    }




    .content26 {
        width: 100%;
 
    }

    .content26 .features-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        padding: 40px 0;
    }

    .content26 .feature-column {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .content26 .circle {
        width: 320px;
        height: 320px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .content26 .circle-inner {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .content26 .reliability {
        background-color: #a9dcf3;
    }

    .content26 .professionalism {
        background-color: #65bde7;
    }

    .content26 .differentiation {
        background-color: #1a99d2;
    }

    .content26 .feature-title {
        color: #1a99d2;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .content26 .feature-subtitle {
        color: #1a99d2;
        font-size: 16px;
        font-weight: 400;
    }

    .content26 .primary-text {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #333;
        line-height: 1.4;
    }

    .content26 .secondary-text {
        font-size: 14px;
        color: #666;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .content26 .feature-item {
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #ddd;
    }

    .content26 .feature-item:last-child {
        border-bottom: 1px solid #ddd;
    }

    .content26 .feature-item-title {
        color: #1a99d2;
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .content26 .feature-item-description {
        font-size: 13px;
        color: #777;
    }

    @media (max-width: 1200px) {
        .content26 .features-container {
            flex-direction: column;
        }

        .content26 .feature-column {
            width: 100%;
            max-width: 500px;
        }
    }

    @media (max-width: 480px) {
        .content26 .circle {
            width: 180px;
            height: 180px;
        }

        .content26 .circle-inner {
            width: 150px;
            height: 150px;
        }

        .content26 .feature-title {
            font-size: 24px;
        }

        .content26 .primary-text {
            font-size: 18px;
        }
    }

    .content27 {
        width: 100%;
        background-color: #1f2640;
    }

    .content27 .header {
        text-align: center;
        padding: 40px 0;
    }

    .content27 .header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 600;
        color: #fff
    }

    .content27 .header h3 {
        font-size: 1.8rem;
        font-weight: 400;
        color: #fff;
        opacity: 0.8
    }

    .content27 .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        padding: 20px;
    }

    .content27 .gallery-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 200px;
        width: 100%;
        margin-bottom: 20px;
    }

    .content27 .gallery-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 300px;
    }

    .content27 .circle-image {
        width: 340px;
        height: 340px;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 20px;
        border: 0px solid rgba(255, 255, 255, 0.2);
    }

    .content27 .circle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .content27 .item-title {
        color: #3498db;
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 10px;
        text-align: center;
    }

    .content27 .item-dots {
        color: #3498db;
        font-size: 1rem;
        letter-spacing: 5px;
        margin-bottom: 10px;
    }

    .content27 .item-description {
        color: #fff;
        font-size: 1rem;
        text-align: center;
    }

    @media (max-width: 1200px) {
        .content27 .gallery-row {
            justify-content: center;
        }

        .content27 .gallery-item {
            width: 280px;
        }

        .content27 .circle-image {
            width: 220px;
            height: 220px;
        }
    }

    @media (max-width: 768px) {
        .content27 .header h2 {
            font-size: 2rem;
        }

        .content27 .header h3 {
            font-size: 1.5rem;
        }

        .content27 .gallery {
            gap: 30px;
        }

        .content27 .gallery-row {
            gap: 30px;
        }

        .content27 .gallery-item {
            width: 240px;
        }

        .content27 .circle-image {
            width: 200px;
            height: 200px;
        }
    }

    @media (max-width: 480px) {
        .content27 .header h2 {
            font-size: 1.8rem;
        }

        .content27 .header h3 {
            font-size: 1.3rem;
        }

        .content27 .gallery-item {
            width: 100%;
            max-width: 280px;
        }
    }



    .content28 {
        width: 100%
    }

    .content28 .container {
        padding: 30px;
    }

    .content28 .title {
        margin-bottom: 30px;
        font-size: 2.5rem;
        font-weight: 600;
    }

    .content28 .title span {
        color: #3498db;
    }

    .content28 .subtitle {
        background-color: #5c9ccc;
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        display: inline-block;
        margin: 10px auto 30px;
        text-align: center;
        font-size: 1.2rem;
    }

    .content28 .subtitle-container {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .content28 .gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .content28 .gallery-item {
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border-radius: 5px;
    }

    .content28 .gallery-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .content28 .gallery-item .caption {
        padding: 15px;
        text-align: center;
        font-size: 1.1rem;
        color: #333;
    }

    @media (max-width: 1200px) {
        .content28 .gallery {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .content28 .gallery {
            grid-template-columns: repeat(2, 1fr);
        }

        .content28 .title {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .content28 .gallery {
            grid-template-columns: 1fr;
        }

        .content28 .container {
            padding: 20px;
        }

        .content28 .title {
            font-size: 1.8rem;
        }

        .content28 .subtitle {
            font-size: 1rem;
            padding: 8px 16px;
        }
    }


    .content29 {
        width: 100%
    }

    .content29 .faq-container {
        width: 100%;
    }

    .content29 .top-border {
        width: 100%;
        height: 1px;
        background-color: #333;
        margin-bottom: 0;
    }

    .content29 .faq-item {
        border-bottom: 1px solid #e0e0e0;
    }

    .content29 .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 25px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .content29 .faq-question:hover {
        background-color: #f9f9f9;
    }

    .content29 .faq-question h3 {
        font-size: 18px;
        font-weight: 500;
        color: #333;
    }

    .content29 .arrow {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: #f1f1f1;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s;
    }

    .content29 .arrow svg {
        width: 14px;
        height: 14px;
    }

    .content29 .faq-answer {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .content29 .faq-answer-content {
        padding: 20px 25px 20px 20px;
        line-height: 1.6;
        color: #555;
    }

    .content29 .faq-item.active .arrow {
        transform: rotate(180deg);
    }

    .content29 .faq-item.active .faq-answer {
        max-height: 1000px;
        padding: 0;
    }

    @media (max-width: 768px) {
        .content29 .faq-question {
            padding: 15px 20px;
        }

        .content29 .faq-question h3 {
            font-size: 15px;
        }

        .content29 .faq-answer-content {
            padding: 0 20px 15px;
            font-size: 14px;
        }
    }





    .sub-page03 .container { max-width: 1600px; margin: 0 auto; padding: 20px 0; }
    .sub-page03 .header { text-align: center; margin-bottom: 40px; }
    .sub-page03 .main-title { font-size: 52px; padding: 60px 0; color: #0088cc; }
    .sub-page03 .section-title { font-size: 24px; margin-bottom: 15px; color: #444; text-align: center; }
    .sub-page03 .section-subtitle { font-size: 32px; color: #555; text-align: center; margin-bottom: 30px; }
    .sub-page03 .note { font-size: 16px; color: #666; margin: 10px 0; text-align: center; }
    .sub-page03 .icon-list { display: flex; flex-wrap: wrap; list-style: none; margin: 30px 0; gap: 20px; }
    .sub-page03 .icon-item { display: flex; flex: 1 1 calc(50% - 20px);  border-radius: 8px; padding: 40px 20px; border: 1px solid #ddd; min-width: 300px; font-size: 17px }
    .sub-page03 .icon-image { flex: 0 0 80px; display: flex; justify-content: center; align-items: center; }
    /* .sub-page03 .icon-image img { max-width: 60px; max-height: 60px; } */
    .sub-page03 .icon-content { flex: 1; padding-left: 15px; }
    .sub-page03 .icon-title {  margin-bottom: 15px; font-size: 22px;font-weight: 600; }
    .sub-page03 .icon-desc { font-size: 17px; color: #666; line-height: 1.65 }
    .sub-page03 .contact-section { background-color: #f2f2f2; border-radius: 8px; padding: 20px; margin: 30px 0; }
    .sub-page03 .contact-title { font-size: 36px; font-weight: bold; margin-bottom: 10px; text-align: center; }
    .sub-page03 .contact-content-centered { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px 0 20px; }
    .sub-page03 .contact-main-number { font-size: 36px; font-weight: bold; color: #0088cc; margin-bottom: 10px; text-align: center; }
    .sub-page03 .contact-sub-numbers { display: flex; flex-direction: column; align-items: center; color: #666; font-size: 14px; line-height: 1.5; }
    .sub-page03 .contact-sub-numbers div { margin: 2px 0; }
    
    .sub-page03 .divider { border: none; height: 1px; background-color: #ddd; margin: 30px 0; }
    .sub-page03 .info-section { margin: 30px 0; }
    .sub-page03 .info-table { width: 100%; border-collapse: collapse; margin-top: 15px; font-size: 17px }
    .sub-page03 .info-table th { width: 200px; background-color: #f5f5f5; padding: 15px; text-align: center; border: 1px solid #ddd; vertical-align: middle; }
    .sub-page03 .info-table td { padding: 15px; border: 1px solid #ddd; vertical-align: middle; line-height: 1.65 }
    .sub-page03 .process-image { display: block; max-width: 100%; margin: 20px auto; }
    
    @media (max-width: 1200px) {
      .sub-page03 .icon-item { flex: 1 1 calc(100% - 20px); }
    }
    
    @media (max-width: 768px) {
      .sub-page03 .container { padding: 15px 0; }
      .sub-page03 .main-title { font-size: 32px; padding: 30px 0; }
      .sub-page03 .section-title { font-size: 22px; }
      .sub-page03 .info-table th { width: 150px; padding: 10px; }
      .sub-page03 .info-table td { padding: 10px; }
    }
    
    @media (max-width: 480px) {
      .sub-page03 .icon-item { flex-direction: column; }
      .sub-page03 .icon-image { margin-bottom: 15px; }
      .sub-page03 .icon-content { padding-left: 0; }
      .sub-page03 .info-table th,
      .sub-page03 .info-table td { display: block; width: 100%; }
      .sub-page03 .info-table th { text-align: left; border-bottom: none; }
    }
      
      
    .sub-page03 .process-img-container .process-steps { display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: stretch; gap: 30px; margin: 30px 0; position: relative; }
      .sub-page03 .process-img-container .container { padding: 0}
    .sub-page03 .process-img-container .step { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 30px 10px; position: relative; min-height: 150px; color: #fff;border-radius: 10px; }
    .sub-page03 .process-img-container .step:not(:last-child)::after { content: "▶"; position: absolute; left: calc(100% + 10px); top: 50%; transform: translateY(-50%); color: #ccc; font-size: 16px; z-index: 1; }
    .sub-page03 .process-img-container .step-title { font-size: 24px; font-weight: bold; margin-bottom: 10px; }
    .sub-page03 .process-img-container .step-subtitle { font-size: 14px; opacity: 0.9; }
    .sub-page03 .process-img-container .step-1 { background-color: #002b54; }
    .sub-page03 .process-img-container .step-2 { background-color: #014258; }
    .sub-page03 .process-img-container .step-3 { background-color: #45a0a2; }
    .sub-page03 .process-img-container .step-4 { background-color: #006570; }
    .sub-page03 .process-img-container .step-5 { background-color: #c5aa70; }
    .sub-page03 .process-img-container .step-6 { background-color: #dbb100; }
    .sub-page03 .process-img-container .step-7 { background-color: #7c6255; }
    
    @media (max-width: 1200px) {
      .sub-page03 .process-img-container .process-steps { gap: 8px; }
      .sub-page03 .process-img-container .step-title { font-size: 20px; }
      .sub-page03 .process-img-container .step-subtitle { font-size: 12px; }
    }
    
    @media (max-width: 992px) {
      .sub-page03 .process-img-container .process-steps { flex-wrap: wrap; gap: 20px; }
      .sub-page03 .process-img-container .step { flex: 1 1 calc(50% - 10px); margin-bottom: 10px; }
      .sub-page03 .process-img-container .step:not(:last-child)::after { display: none; }
      /* .sub-page03 .process-img-container .step:nth-child(odd):not(:last-child)::after { display: block; left: calc(100% + 10px); top: 50%; transform: translateY(-50%); } */
      .sub-page03 .process-img-container .step:nth-child(even)::after { display: none; }
      .sub-page03 .process-img-container .step:nth-child(1)::after, .process-img-container .step:nth-child(3)::after, .process-img-container .step:nth-child(5)::after { display: block; }
    }
    
    @media (max-width: 768px) {
      .sub-page03 .process-img-container .step { flex: 1 1 100%; }
      .sub-page03 .process-img-container .step:not(:last-child)::after { display: block; left: 50%; top: calc(100% + 10px); transform: translateX(-50%) rotate(90deg); }
    }
          

    hr {margin: 100px 0 !important;}


    .sub-page02 { width: 100%}
.sub-page02 .container { max-width: 1600px; margin: 0 auto; padding: 20px 0; }
.sub-page02 .header { text-align: center; padding: 60px 0; }
.sub-page02 .main-title { font-size: 42px; margin-bottom: 20px; color: #0088cc; }
.sub-page02 .cta-button { display: inline-block; background-color: #6699cc; color: white; padding: 10px 30px; border-radius: 50px; font-size: 16px; text-decoration: none; transition: background-color 0.3s; }
.sub-page02 .cta-button:hover { background-color: #5588bb; }
.sub-page02 .funeral-hall-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: flex-start; }
.sub-page02 .funeral-hall-item { flex: 0 0 calc(33% - 15px); margin-bottom: 20px; text-align: center; }
.sub-page02 .funeral-hall-image { width: 100%; height: 220px; overflow: hidden; margin-bottom: 10px; border-radius: 4px; }
.sub-page02 .funeral-hall-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.sub-page02 .funeral-hall-image img:hover { transform: scale(1.05); }
.sub-page02 .funeral-hall-name { font-size: 16px; font-weight: 500; color: #333; margin-top: 10px; }

@media (max-width: 1200px) {
  .sub-page02 .funeral-hall-item { flex: 0 0 calc(33.333% - 14px); }
}

@media (max-width: 768px) {
  .sub-page02 .funeral-hall-item { flex: 0 0 calc(50% - 10px); }
  .sub-page02 .funeral-hall-image { height: 160px; }
}

@media (max-width: 480px) {
  .sub-page02 .funeral-hall-item { flex: 0 0 100%; }
  .sub-page02 .funeral-hall-image { height: 200px; }
}

	
	
.sub-page02 .resort-membership-list { padding: 0; margin: 0; list-style: none; }
.sub-page02 .resort-item { border: 1px solid #e0e0e0; margin-bottom: 20px; }
.sub-page02 .resort-container { display: flex; flex-direction: column;}
.sub-page02 .resort-content { display: flex; width: 100%; }
.sub-page02 .resort-image { flex: 0 0 auto; margin-right: 50px; width: 500px; }
.sub-page02 .resort-image img { width: 100%; height: auto; }
.sub-page02 .resort-info { flex: 1; display: flex; flex-direction: column; justify-content: center;}
.sub-page02 .resort-title { font-size: 20px; font-weight: bold; margin-bottom: 15px; color: #0088cc; }
.sub-page02 .resort-benefits { list-style: none; padding-left: 0; }
.sub-page02 .resort-benefits li { position: relative; padding-left: 15px; margin-bottom: 10px; font-size: 17px }
.sub-page02 .resort-benefits li:before { content: "•"; position: absolute; left: 0; color: #666; }
.sub-page02 .resort-buttons { display: flex; flex-wrap: wrap; }
.sub-page02 .resort-btn { display: inline-block; padding: 10px 15px; text-decoration: none; text-align: center; margin-right: 10px; margin-bottom: 10px; transition: all 0.3s; }
.sub-page02 .resort-btn-light { background-color: #f0f0f0; color: #333; flex: 1 0 calc(50% - 10px); }
.sub-page02 .resort-btn-dark { background-color: #2c3e50; color: white; flex: 1 0 100%; }
@media (max-width: 768px) {
  .sub-page02 .resort-content { flex-direction: column; }
  .sub-page02 .resort-image { width: 100%; margin-right: 0; margin-bottom: 15px; }
  .sub-page02 .resort-btn-light { flex: 1 0 100%; }
}
	
.sub-page02 .membership-container { max-width: 1600px; margin: 50px auto;  }
.sub-page02 .membership-title { text-align: center; font-size: 42px; font-weight: 600; margin-bottom: 40px; color: #0b96ce; }
.sub-page02 .membership-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.sub-page02 .membership-item { display: flex; flex-direction: column; width: calc(33.33% - 14px); border: 1px solid #e6e6e6; background-color: #fff; border-radius: 2px; overflow: hidden; min-width: 300px; }
.sub-page02 .membership-image { height: 300px; overflow: hidden; }
.sub-page02 .membership-image img { width: 100%; height: 100%; object-fit: cover; }
.sub-page02 .membership-content { padding: 20px; flex-grow: 1; }
.sub-page02 .membership-org { font-size: 24px; font-weight: 500; margin-bottom: 15px; color: #0088cc; }
.sub-page02 .membership-benefits { list-style-type: none; padding: 0; margin: 0; }
.sub-page02 .membership-benefits li { position: relative; padding-left: 10px; margin-bottom: 8px; font-size: 16px; color: #666; line-height: 1.5; }
.sub-page02 .membership-benefits li:before { content: "•"; position: absolute; left: 0; color: #666; }
.sub-page02 .membership-footer { margin-top: auto; }
.sub-page02 .membership-btn { display: block; text-align: center; padding: 15px; background-color: #303e48; color: white; text-decoration: none; font-size: 16px; transition: background-color 0.3s; }
.sub-page02 .membership-btn:hover { background-color: #1c2630; }

@media (max-width: 1024px) {
  .sub-page02 .membership-item { width: calc(50% - 10px); }
}

@media (max-width: 768px) {
  .sub-page02 .membership-title { font-size: 28px;} 
  .sub-page02 .membership-item { width: 100%; }
  .sub-page02 .membership-image { height: 250px; }
}

	
.sub-page04 { width: 100%}
.sub-page04 .container { max-width: 1600px; margin: 0 auto; padding: 50px 0; }
.sub-page04 .service-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; margin-bottom: 40px; }
.sub-page04 .service-item { flex: 0 0 calc(33% - 10px); margin-bottom: 20px;  border-radius: 4px; overflow: hidden; border:1px solid #ddd}
.sub-page04 .service-image { width: 100%; height: 390px; overflow: hidden; position: relative; }
.sub-page04 .service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.sub-page04 .service-image img:hover { transform: scale(1.05); }
.sub-page04 .service-content { padding: 25px; }
.sub-page04 .service-title { font-size: 24px; font-weight: bold; color: #0b96ce; margin-bottom: 8px; }
.sub-page04 .service-description { font-size: 16px; color: #666; margin-bottom: 15px; overflow: hidden; }
.sub-page04 .btn-more { display: block; width: 100%; padding: 12px; background-color: #36454f; color: white; text-align: center; border: none; cursor: pointer; font-size: 14px; transition: background-color 0.3s; }
.sub-page04 .btn-more:hover { background-color: #2c3840; }

.sub-page04 .header {
    padding: 20px 0 0;
}

.sub-page04 .title-area {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-end;
}



@media (max-width: 1200px) {
  .sub-page04 .service-item { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
  .sub-page04 .service-item { flex: 0 0 100%; }
  .sub-page04 .service-image { height: 200px; }
}


.content100 {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0rem 0 10rem;
}

/* 좌우 패딩 제거 */
.content100 .container {
    width: 100%;
    max-width: 1600px;
    padding: 0 20px;
}

/* 컨테이너에 적절한 패딩 추가 */
.content100 .choice_header {
    text-align: center;
    padding: 20px 20px;
}
.content100 .sub-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 15px;
    padding: 0;
    text-align: center;
    letter-spacing: -2px;
}

.content100 .main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -2px;
    text-align: center;
}
.content100 .main-title .blue-text {
color: #1D90D3;
}
.content100 .green-line {
display: block;
width: 50px;
height: 1px;
background-color: #0b96ce;
margin: 30px auto
}

.content100 .preed-btn {text-align: center;margin: 50px 0;}
.content100 .preed-btn a{auto;background-color: #0b96ce; text-align: center;    background-color: #0b96ce;
text-align: center;
padding: 30px;
color: #fff;
font-size: 52px;
font-weight: 600;
border-radius: 25px;