.page-section {
    padding-bottom: clamp(2.5rem, 6vw, 6rem);
    padding-top: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 수직 정렬 필요 시 사용 */
    text-align: center;
    /* 내부 텍스트 가운데 정렬 */
    width: 100%;
    margin: 0 auto;
}

@font-face {
    font-family: 'Paperlogy-8ExtraBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
  }

  body {
    font-family: 'Paperlogy-8ExtraBold', sans-serif;
  }

/*main*/
.container-main {
    position: relative;
    width: 100%;
}

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

/*describe*/
.describe-img {
    width: 100%;
    height: auto;
}

/*text*/
.text {
    width: 30vw;
    max-width: 500px;
    min-width: 100px;
    height: auto;
    margin-bottom: 3vw;
}

.phone-btn {
    display: inline-block;
    background-color: #4a9bd6;
    color: white;
    font-weight: bold;
    font-size: clamp(1.0rem, 4.5vw, 5rem);
    padding: 0.8rem 2.5rem;
    border: 2px solid white;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 6px #206c9e;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: clamp(1.0rem, 4.5vw, 5rem);
  }

/*services*/
.services-title {
    background-color: #2e3d86;
    color: #ffffee;
    padding: 0.75em 5em;
    border-radius: 0.5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-weight: 450;
    white-space: nowrap;
    max-width: 95%;
}

.services-text {
    text-align: center;
    font-size: clamp(0.7rem, 3vw, 1.5rem);
}

.services-button {
    display: grid;
    gap: clamp(0.8rem, 3vw, 6rem);
    justify-content: center;
    padding-top: clamp(2.5rem, 6vw, 6rem);
    -webkit-tap-highlight-color: transparent;
    grid-template-columns: repeat(8, 1fr);
}

.service-item img {
    width: 9vw;
    max-width: 150px;
    min-width: 100px;
    height: auto;     
    transition: transform 0.3s ease;
}

.service-item img:hover {
    transform: scale(1.05);
}

@media (max-width: 1281px) {
    .services-button {
        width: 80%;
        grid-template-columns: repeat(4, 1fr);
    }
    .service-item img{
        width: 17vw;
        min-width: 0;
    }
}

@media (max-width:400px) {
    .services-title {
        font-size: 0.8rem;
    }

    .text2-text {
        font-size: 0.8rem;
    }
}

/*ask*/
.ask-h2{
    font-size: clamp(1.0rem, 3vw, 1.5rem);
}

/*example*/
.blog-button {

    display: inline-block;
    background-color: #4a9bd6;
    color: white;
    font-weight: bold;
    font-size: clamp(1.0rem, 2.6vw, 2rem);               /* 글자 크기 */
    padding: 0.8rem 2.5rem 0.6rem 2.5rem;          /* 위아래, 좌우 여백 */
    border: 2px solid white;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 6px #206c9e;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
  }

.example-img {
    width: 90%;
    display: grid;
    gap: clamp(0.3rem, 2vw, 6rem);
    justify-content: center;
    padding-top: clamp(2.5rem, 6vw, 6rem);
    -webkit-tap-highlight-color: transparent;
    grid-template-columns: repeat(4, 1fr);
}

.example-item img {
    width: 22vw;
    max-width: 400px;
    height: auto;     
    transition: transform 0.3s ease;
}

@media (max-width: 1281px) {
    .example-img{
        grid-template-columns: repeat(2, 1fr);
    }

    .example-item img {
        width: 45vw;
    }
}

.example-h2 {
    font-size: clamp(0.9rem, 5vw, 1.8rem);
    font-weight: 500;
}

/*text2*/
.text2-img {
    width: 100%;
    height: auto;
}

/*banner*/
.banner {
    width: 100%;
    height: auto;
}

/*footer*/
.footer {
    background-color: #e6e6e6;
    margin-top: 0;
}