/* About 페이지 스타일 */

/* 헤더 이미지 섹션 */
.about-header-section {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.about-header-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('../images/about-header.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.about-header-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, #272727 0%, rgba(39, 39, 39, 0.8) 100%, rgba(39, 39, 39, 0.5) 100%);
    opacity: 0.7;
    z-index: -1;
}

.about-header-content {
    position: relative;
    z-index: 1;
}

.about-header-content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 65px;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.about-header-content p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #B19777;
}

/* 회사 소개 섹션 */
.about-intro-section {
    padding: 100px 0;
}

.about-container {
    width: 1140px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.about-section-title span {
    color: #B19777;
    margin-left: 15px;
}

.about-title-center {
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
}

.about-intro-content {
    width: 48%;
}

.about-intro-text {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #999999;
    margin-bottom: 20px;
}

.about-signature {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.about-signature img {
    width: 120px;
    height: auto;
    margin-right: 20px;
}

.about-signature-info h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.about-signature-info p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #B19777;
}

.about-intro-image {
    width: 48%;
}

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

/* 팀 멤버 섹션 */
.about-team-section {
    padding: 100px 0;
    background-color: #1A1A1A;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-team-member {
    position: relative;
}

.about-member-image {
    position: relative;
    overflow: hidden;
}

.about-member-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-team-member:hover .about-member-image img {
    transform: scale(1.05);
}

.about-member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(177, 151, 119, 0.9);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-team-member:hover .about-member-social {
    transform: translateY(0);
}

.about-social-link {
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-social-link:hover {
    color: #272727;
}

.about-member-info {
    padding: 20px 0;
    text-align: center;
}

.about-member-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.about-member-position {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #B19777;
}

/* 연혁 섹션 */
.about-history-section {
    padding: 100px 0;
}

.about-timeline {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.about-timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.about-timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.about-timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background-color: #B19777;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    border-radius: 20px;
    z-index: 1;
}

.about-timeline-content {
    width: 45%;
    padding: 40px 30px 30px;
    background-color: #1A1A1A;
    position: relative;
}

.about-timeline-content h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.about-timeline-content p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #999999;
}


/* 헤더 이미지 섹션 */
.service-header-section {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.service-header-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('../images/service-header.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.service-header-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, #272727 0%, rgba(39, 39, 39, 0.8) 100%, rgba(39, 39, 39, 0.5) 100%);
    opacity: 0.7;
    z-index: -1;
}

.service-header-content {
    position: relative;
    z-index: 1;
}

.service-header-content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 65px;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.service-header-content p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #B19777;
}

/* 서비스 소개 섹션 */
.service-intro-section {
    padding: 100px 0;
}

.service-container {
    width: 1140px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.service-intro-content {
    width: 48%;
    float: left;
}

.service-intro-image {
    width: 48%;
    float: right;
}

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

.service-container:after {
    content: "";
    display: table;
    clear: both;
}

.service-section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.service-section-title span {
    color: #B19777;
    margin-left: 15px;
}

.service-title-center {
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
}

.service-intro-text {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #999999;
    margin-bottom: 20px;
}

.service-intro-text span {
    color: #B19777;
}

/* 서비스 목록 섹션 */
.service-list-section {
    padding: 100px 0;
    background-color: #1A1A1A;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #272727;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #1e1e1e;
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon img {
    width: 60px;
    height: auto;
    filter: brightness(0) invert(0.7) sepia(1) saturate(1.5) hue-rotate(30deg); /* 골드색으로 변환 */
}

.service-item-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.service-item-description {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #999999;
    margin-bottom: 20px;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-details li {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #999999;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-details li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #B19777;
    border-radius: 50%;
}

.service-details li span {
    color: #B19777;
    font-weight: bold;
    margin-right: 5px;
}

.service-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid #B19777;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B19777;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-button:hover {
    background-color: #B19777;
    color: #000000;
}

/* 서비스 프로세스 섹션 */
.service-process-section {
    padding: 100px 0;
}

.service-process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.service-process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.service-process-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 80px;
}

.service-process-item:last-child {
    margin-bottom: 0;
}

.service-process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #B19777;
    color: #000000;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 24px;
    border-radius: 50%;
    z-index: 1;
}

.service-process-content h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.service-process-content p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #999999;
}

/* 문의 섹션 */
.service-contact-section {
    padding: 100px 0;
    background-color: #1A1A1A;
}

.service-contact-content {
    width: 48%;
    float: left;
}

.service-contact-image {
    width: 48%;
    float: right;
}

.service-contact-image img {
    width: 87%;
    height: 300px;
    display: block;
}

.service-contact-text {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 18px;
    line-height: 32px;
    color: #999999;
    margin-bottom: 40px;
}

.service-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #B19777;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta-button:hover {
    background-color: transparent;
    color: #B19777;
    border: 1px solid #B19777;
}

/* 컨설턴트 페이지 스타일 */

/* 헤더 이미지 섹션 */
.consultant-header-section {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.consultant-header-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('./images/consultant-header.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.consultant-header-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, #272727 0%, rgba(39, 39, 39, 0.8) 100%, rgba(39, 39, 39, 0.5) 100%);
    opacity: 0.7;
    z-index: -1;
}

.consultant-header-content {
    position: relative;
    z-index: 1;
}

.consultant-header-content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 65px;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.consultant-header-content p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #B19777;
}

/* 컨설턴트 컨테이너 */
.consultant-container {
    width: 1140px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.consultant-section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.consultant-section-title span {
    color: #B19777;
    margin-left: 15px;
}

.consultant-title-center {
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
}

/* 대표 컨설턴트 섹션 */
.consultant-featured-section {
    padding: 100px 0;
    background-color: #272727;
}

.consultant-featured-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.consultant-featured-item {
    display: flex;
    gap: 40px;
}

.consultant-featured-image {
    width: 300px;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.consultant-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultant-featured-info {
    flex: 1;
}

.consultant-featured-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.consultant-featured-position {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #B19777;
    margin-bottom: 20px;
}

.consultant-featured-description {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #999999;
    margin-bottom: 25px;
}

.consultant-featured-specialties {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.consultant-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(177, 151, 119, 0.2);
    border: 1px solid #B19777;
    color: #B19777;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    border-radius: 20px;
}

.consultant-detail-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    border: 1px solid #B19777;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B19777;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultant-detail-button:hover {
    background-color: #B19777;
    color: #000000;
}

.consultant-filter-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

/* 컨설턴트 필터링 섹션 */
.consultant-filter-section {
    padding: 100px 0;
    background-color: #1A1A1A;
}

.consultant-filter-container {
    display: block; /* 세로 배치에서 블록으로 변경 */
}

.consultant-filter-box {
    width: 100%;
    background-color: #272727;
    padding: 30px;
    margin-bottom: 40px;
}

.consultant-filter-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-align: center;
}

.consultant-filter-group {
    margin-bottom: 15px;
    min-width: 200px;
}

.consultant-filter-category {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #B19777;
    margin-bottom: 15px;
}

.consultant-filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}

.consultant-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.consultant-checkbox {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    display: block;
    user-select: none;
}

.consultant-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.consultant-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #333333;
    border: 1px solid #555555;
}

.consultant-checkbox:hover input ~ .consultant-checkmark {
    background-color: #3a3a3a;
}

.consultant-checkbox input:checked ~ .consultant-checkmark {
    background-color: #B19777;
    border-color: #B19777;
}

.consultant-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.consultant-checkbox input:checked ~ .consultant-checkmark:after {
    display: block;
}

.consultant-checkbox .consultant-checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consultant-filter-button {
    display: inline-block;
    width: auto;
    padding: 12px 25px;
    margin-top: 0;
    color: #B19777;
}

.consultant-filter-button:hover {
    background-color: #555555;
    color: #B19777;
}

.consultant-reset-button {
    background-color: transparent;
    border: 1px solid #555555;
    color: #FFFFFF;
    margin-top: 10px;
}

.consultant-reset-button:hover {
    background-color: #555555;
}

.consultant-popup-slogan {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9em;
}

/* 페이지네이션 스타일 */
.consultant-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}

.consultant-page-button {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #272727;
    border: 1px solid #333333;
    color: #FFFFFF;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultant-page-button:hover,
.consultant-page-button.active {
    background-color: #B19777;
    color: #000000;
    border-color: #B19777;
}

.consultant-page-prev,
.consultant-page-next {
    width: auto;
    padding: 0 15px;
}

.consultant-page-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* 컨설턴트 결과 영역 */
.consultant-results {
    flex: 1;
}

.consultant-results-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.consultant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.consultant-card {
    background-color: #272727;
    border: 1px solid #333333;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.consultant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.consultant-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.consultant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.consultant-card:hover .consultant-image img {
    transform: scale(1.05);
}

.consultant-info {
    padding: 20px;
}

.consultant-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.consultant-position {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #B19777;
    margin-bottom: 15px;
}

.consultant-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* 컨설턴트 상세 팝업 */
.consultant-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.consultant-popup-content {
    position: relative;
    width: 900px;
    max-width: 90%;
    margin: 50px auto;
    background-color: #272727;
    border: 1px solid #333333;
    padding: 30px;
    animation: fadeIn 0.3s;
    overflow: hidden; /* 오버플로우 숨김 추가 */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.consultant-popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: #999999;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10; /* z-index 추가 */
}

.consultant-popup-close:hover {
    color: #FFFFFF;
}

.consultant-popup-body {
    display: flex;
    gap: 30px;
    max-height: 80vh; /* 화면 높이의 80%로 제한 */
    overflow-y: auto; /* 세로 스크롤 가능하게 설정 */
    padding-right: 10px; /* 우측 패딩 줄임 */
    margin-right: 10px; /* 우측 마진 추가 */
    scrollbar-width: thin;
    scrollbar-color: #B19777 #333333; /* 스크롤바 색상과 트랙 색상 */
}
.consultant-popup-image {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

.consultant-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultant-popup-info {
    /* flex: 1; */
    padding-right: 15px;

}

.consultant-popup-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 38px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.consultant-popup-position {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #B19777;
    margin-bottom: 15px;
}

.consultant-popup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.consultant-popup-details {
    margin-bottom: 30px;
    margin-right: 5px;
}

.consultant-popup-details h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #B19777;
    margin: 25px 0 15px;
}

.consultant-popup-details p, 
.consultant-popup-details ul {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #999999;
}

.consultant-popup-details ul {
    list-style-type: circle;
    padding-left: 20px;
}

.consultant-popup-details li {
    margin-bottom: 8px;
}

.consultant-popup-buttons {
    display: flex;
    gap: 15px;
}

.consultant-popup-button {
    padding: 12px 20px;
    background-color: #B19777;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultant-popup-button:hover {
    background-color: #9a8366;
}

/* 커스텀 스크롤바 디자인 (WebKit 기반 브라우저: Chrome, Safari, Edge) */
.consultant-popup-body::-webkit-scrollbar {
    width: 8px; /* 스크롤바 너비 */
    margin-left: 15px; /* 스크롤바 왼쪽 간격 */
}

.consultant-popup-body::-webkit-scrollbar-track {
    background: #333333; /* 트랙 배경색 - 어두운 그레이 */
    border-radius: 4px;
    margin: 5px 0; /* 트랙 상하 여백 */
}

.consultant-popup-body::-webkit-scrollbar-thumb {
    background: #B19777; /* 스크롤바 색상 - 사이트의 골드 색상 */
    border-radius: 4px;
    border: 2px solid #333333; /* 테두리 색상 */
}

.consultant-popup-body::-webkit-scrollbar-thumb:hover {
    background: #c9b08b; /* 호버 시 밝은 골드 */
}

/* Firefox에서의 스크롤바 디자인 */

/* 리뷰 팝업 */
.review-popup-content {
    width: 700px;
}

.review-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #B19777;
    margin: 25px 0 20px;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background-color: #1e1e1e;
    border: 1px solid #333333;
    padding: 20px;
    white-space: pre-line;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-family: 'Didact Gothic', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
}

.review-rating {
    color: #B19777;
    font-size: 16px;
}

.review-text {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #999999;
}

/* 리뷰 페이지 스타일 */

/* 헤더 이미지 섹션 */
.review-header-section {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.review-header-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('../images/review-header.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.review-header-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, #272727 0%, rgba(39, 39, 39, 0.8) 100%, rgba(39, 39, 39, 0.5) 100%);
    opacity: 0.7;
    z-index: -1;
}

.review-header-content {
    position: relative;
    z-index: 1;
}

.review-header-content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 65px;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.review-header-content p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #B19777;
}

/* 컨테이너 */
.review-container {
    width: 1140px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* 섹션 타이틀 */
.review-section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 5px;
    color: #FFFFFF;
    margin-bottom: 40px;
    position: relative;
}

.review-section-title span {
    color: #B19777;
    font-size: 24px;
    letter-spacing: 2px;
    margin-left: 10px;
}

.review-section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #B19777;
}

.review-popup-content .consultant-popup-body {
    padding-right: 20px;
}

/* 리뷰 헤더 섹션 */
.review-header-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.review-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/review-header-bg.jpg');
    background-size: cover;
    background-position: center;
}

.review-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.review-header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 20px 0;
    text-align: center;
    color: #FFFFFF;
}

.review-header-content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 48px;
    margin-bottom: 20px;
}

.review-header-content p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: #B19777;
}

/* 리뷰 컨테이너 */
.review-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 섹션 타이틀 */
.review-section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.review-section-title span {
    color: #B19777;
}

/* 리뷰 검색 섹션 */
.review-search-section {
    padding: 80px 0 40px;
    background-color: #272727;
}

.review-search-box {
    background-color: #1A1A1A;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 20px;
}

.review-search-form {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.review-search-input {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.review-search-input input {
    width: 100%;
    padding: 15px 20px;
    background-color: #272727;
    border: 1px solid #333333;
    border-radius: 3px;
    color: #FFFFFF;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
}

.review-search-input button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #B19777;
    font-size: 18px;
    cursor: pointer;
}

.review-search-select {
    flex: 1;
    min-width: 200px;
}

.review-search-select select {
    width: 100%;
    padding: 15px 20px;
    background-color: #272727;
    border: 1px solid #333333;
    border-radius: 3px;
    color: #FFFFFF;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B19777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.review-reset-button {
    background-color: transparent;
    border: 1px solid #B19777;
    padding: 15px 25px;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: #B19777;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-reset-button:hover {
    background-color: #B19777;
    color: #000000;
}

/* 리뷰 그리드 */
.review-list-section {
    padding: 60px 0 80px;
    background-color: #1A1A1A;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background-color: #272727;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.review-card-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333333;
}

.review-consultant-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    cursor: pointer;
}

.review-consultant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-consultant-info {
    flex: 1;
}

.review-consultant-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.review-consultant-name:hover {
    color: #B19777;
}

.review-consultant-position {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    color: #B19777;
}

.review-card-body {
    padding: 20px;
}

.review-card-rating {
    margin-bottom: 15px;
}

.review-card-rating i {
    color: #B19777;
    font-size: 16px;
    margin-right: 3px;
}

.review-card-text {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #CCCCCC;
    max-height: 130px;
    overflow: hidden;
    position: relative;
}

.review-card-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0), rgba(39, 39, 39, 1));
    pointer-events: none;
}

.review-card-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #1A1A1A;
    color: #999999;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
}

.review-card-author i,
.review-card-date i {
    margin-right: 5px;
    color: #B19777;
}

/* 페이지네이션 */
.review-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.review-page-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #272727;
    border: none;
    color: #FFFFFF;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-page-button.active {
    background-color: #B19777;
    color: #000000;
}

.review-page-button:hover:not(.active):not(.disabled) {
    background-color: #333333;
}

.review-page-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 빈 결과 메시지 */
.review-empty {
    text-align: center;
    padding: 40px 0;
    color: #999999;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 18px;
}

/* 커뮤니티 헤더 섹션 */
.community-header-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.community-header-content {
  position: relative;
  z-index: 3;
  color: #fff;
}

.community-header-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/community-header.jpg'); /* 이미지 경로는 원하는 걸로 교체 */
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.community-header-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.community-header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 20px 0;
    text-align: center;
    color: #FFFFFF;
}

.community-header-content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 48px;
    margin-bottom: 20px;
}

.community-header-content p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: #B19777;
}

.community-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.community-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-family: 'Didact Gothic', sans-serif;
}

.community-table th,
.community-table td {
  padding: 12px;
  border-bottom: 1px solid #444;
  text-align: left;
}
.community-post-content {
    padding: 50px 150px; /* 위아래 40px, 좌우 20px 여백 */
    box-sizing: border-box;
    max-width: 768px;
    margin: 0 auto;
    padding: 20px;
    word-break: break-word;
    line-height: 1.6;
}

.community-post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
}

.community-post-content iframe,
.community-post-content video {
    width: 100% !important;
    aspect-ratio: 16 / 9; /* 현대 브라우저 지원 */
    height: auto !important;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .community-post-content {
        padding: 16px;
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 1024px) {
    .video-wrapper {
        padding-bottom: 50%; /* 데스크탑에서 좀 더 높게 */
    }
}

/* 문의하기 헤더 섹션 */
.inquiry-header-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.inquiry-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/contact-header-bg.jpg');
    background-size: cover;
    background-position: center;
}

.inquiry-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.inquiry-header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 20px 0;
    text-align: center;
    color: #FFFFFF;
}

.inquiry-header-content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 48px;
    margin-bottom: 20px;
}

.inquiry-header-content p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: #B19777;
}

/* 문의하기 컨테이너 */
.inquiry-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* 섹션 타이틀 */
.inquiry-section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.inquiry-google-form {
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 5px;
    margin-top: 20px;
}

.inquiry-google-form p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 30px;
}


/* 연락처 정보 섹션 */
.inquiry-info-section {
    padding: 100px 0 60px;
    background-color: #1A1A1A;
}

.inquiry-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.inquiry-info-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #272727;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

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

.inquiry-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(177, 151, 119, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.inquiry-info-icon i {
    font-size: 32px;
    color: #B19777;
}

.inquiry-info-item h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.inquiry-info-item p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #999999;
}

/* 문의 폼 섹션 */
.inquiry-form-section {
    padding: 80px 0;
    background-color: #272727;
}

.inquiry-success-message {
    display: flex;
    align-items: center;
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    padding: 20px;
    margin-bottom: 40px;
}

.inquiry-success-message i {
    font-size: 24px;
    color: #28a745;
    margin-right: 15px;
}

.inquiry-success-message p {
    color: #FFFFFF;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
}

.inquiry-error-message {
    display: flex;
    align-items: center;
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: 20px;
    margin-bottom: 40px;
}

.inquiry-error-message i {
    font-size: 24px;
    color: #dc3545;
    margin-right: 15px;
}

.inquiry-error-message p {
    color: #FFFFFF;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
}

.inquiry-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 5px;
}

.inquiry-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.inquiry-form-group {
    margin-bottom: 25px;
}

.inquiry-form-group label {
    display: block;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.inquiry-form-group label .required {
    color: #dc3545;
}

.inquiry-form-group input[type="text"],
.inquiry-form-group input[type="tel"],
.inquiry-form-group select,
.inquiry-form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #272727;
    border: 1px solid #333333;
    border-radius: 3px;
    color: #FFFFFF;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.inquiry-form-group input[type="text"]:focus,
.inquiry-form-group input[type="tel"]:focus,
.inquiry-form-group select:focus,
.inquiry-form-group textarea:focus {
    outline: none;
    border-color: #B19777;
}

.inquiry-privacy {
    margin-top: 30px;
}

.inquiry-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    user-select: none;
}

.inquiry-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.inquiry-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #272727;
    border: 1px solid #333333;
    border-radius: 3px;
}

.inquiry-checkbox:hover input ~ .inquiry-checkmark {
    background-color: #333333;
}

.inquiry-checkbox input:checked ~ .inquiry-checkmark {
    background-color: #B19777;
    border-color: #B19777;
}

.inquiry-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.inquiry-checkbox input:checked ~ .inquiry-checkmark:after {
    display: block;
}

.inquiry-checkbox .inquiry-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.inquiry-privacy-text {
    margin-top: 15px;
    padding: 15px;
    background-color: #272727;
    border-radius: 3px;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #999999;
}

.inquiry-privacy-text p {
    margin-bottom: 5px;
}

.inquiry-form-buttons {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.inquiry-submit-button {
    background-color: #B19777;
    border: none;
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.inquiry-submit-button:hover {
    background-color: #9A8368;
    transform: translateY(-2px);
}

.inquiry-note {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    color: #999999;
    margin-top: 20px;
    font-style: italic;
}

/* 지도 섹션 */
.inquiry-map-section {
    height: 500px;
    background-color: #1A1A1A;
}

.inquiry-map-container {
    height: 100%;
}

.inquiry-map {
    width: 100%;
    height: 100%;
}

/* ===================================================
   서브페이지 반응형 미디어 쿼리 - 상세 버전
   =================================================== */

/* ===================================================
   태블릿 (768px)
   =================================================== */
   @media screen and (max-width: 768px) {
    /* 공통 스타일 */
    /* ------------------------------------------------- */
    .page-border:before,
    .page-border:after,
    .page-border .line-left,
    .page-border .line-right {
        display: none;
    }
    
    .about-container,
    .service-container,
    .review-container,
    .inquiry-container,
    .consultant-container {
        width: 100%;
        max-width: 100%;
        padding: 0 30px;
        box-sizing: border-box;
    }
    
    /* 헤더 섹션 공통 */
    /* ------------------------------------------------- */
    .about-header-section,
    .service-header-section,
    .review-header-section,
    .inquiry-header-section,
    .consultant-header-section {
        height: 400px;
    }
    
    .about-header-content,
    .service-header-content,
    .review-header-content,
    .inquiry-header-content,
    .consultant-header-content {
        padding: 0 20px;
    }
    
    .about-header-content h1,
    .service-header-content h1,
    .review-header-content h1,
    .inquiry-header-content h1,
    .consultant-header-content h1 {
        font-size: 36px;
        line-height: 48px;
        letter-spacing: 10px;
    }
    
    /* 섹션 타이틀 공통 */
    /* ------------------------------------------------- */
    .about-section-title,
    .service-section-title,
    .review-section-title,
    .inquiry-section-title,
    .consultant-section-title {
        font-size: 32px;
        line-height: 42px;
        letter-spacing: 8px;
        text-align: center;
    }
    
    .about-title-center,
    .service-title-center,
    .consultant-title-center {
        margin-bottom: 40px;
    }
    
    /* About 페이지 */
    /* ------------------------------------------------- */
    .about-intro-section {
        padding: 60px 0;
    }
    
    .about-intro-content,
    .about-intro-image {
        width: 100%;
        float: none;
    }
    
    .about-intro-content {
        margin-bottom: 40px;
    }
    
    .about-intro-text {
        text-align: center;
    }
    
    .about-signature {
        justify-content: center;
        margin-top: 30px;
    }
    
    .about-history-section {
        padding: 60px 0;
    }
    
    .about-timeline {
        max-width: 90%;
    }
    
    .about-timeline::before {
        left: 20px;
    }
    
    .about-timeline-item {
        justify-content: flex-start;
        margin-bottom: 60px;
    }
    
    .about-timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    
    .about-timeline-year {
        left: 20px;
        transform: translateX(0);
        top: -15px;
    }
    
    .about-timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Service 페이지 */
    /* ------------------------------------------------- */
    .service-intro-section {
        padding: 60px 0;
    }
    
    .service-intro-content,
    .service-intro-image {
        width: 100%;
        float: none;
    }
    
    .service-intro-content {
        margin-bottom: 40px;
    }
    
    .service-intro-text {
        text-align: center;
    }
    
    .service-list-section {
        padding: 60px 0;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .service-process-section {
        padding: 60px 0;
    }
    
    .service-process-timeline {
        max-width: 90%;
    }
    
    .service-process-timeline:before {
        left: 25px;
    }
    
    .service-process-item {
        padding-left: 80px;
        margin-bottom: 50px;
    }
    
    .service-process-number {
        left: 0;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-contact-section {
        padding: 60px 0;
    }
    
    .service-contact-content,
    .service-contact-image {
        width: 100%;
        float: none;
        text-align: center;
    }
    
    .service-contact-content {
        margin-bottom: 40px;
    }
    
    .service-contact-image img {
        margin: 0 auto;
    }
    
    .service-cta-button {
        display: inline-block;
        margin: 0 auto;
    }
    
    /* Consultant 페이지 */
    /* ------------------------------------------------- */
    .consultant-featured-section {
        padding: 60px 0;
    }
    
    .consultant-featured-item {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        background-color: #1e1e1e;
        padding: 30px;
        border-radius: 5px;
    }
    
    .consultant-featured-image {
        width: 220px;
        height: 220px;
        border-radius: 50%;
    }
    
    .consultant-featured-specialties {
        justify-content: center;
    }
    
    .consultant-detail-button {
        margin-top: 20px;
    }
    
    .consultant-filter-section {
        padding: 60px 0;
    }
    
    .consultant-filter-content {
        flex-direction: column;
    }
    
    .consultant-filter-group {
        width: 100%;
    }
    
    .consultant-filter-buttons {
        margin-top: 30px;
    }
    
    .consultant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }
    
    .consultant-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .consultant-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .consultant-pagination {
        margin-top: 40px;
    }
    
    /* 팝업 조정 */
    .consultant-popup-content {
        width: 90%;
        max-width: 700px;
        margin: 30px auto;
    }
    
    .consultant-popup-body {
        flex-direction: column;
        align-items: center;
    }
    
    .consultant-popup-image {
        width: 200px;
        height: 200px;
        margin: 0 auto 30px;
        border-radius: 50%;
        border: 3px solid #B19777;
    }
    
    .consultant-popup-info {
        text-align: center;
    }
    
    .consultant-popup-tags {
        justify-content: center;
    }
    
    .consultant-popup-details {
        text-align: left;
        padding: 20px;
        background-color: #1e1e1e;
        border-radius: 5px;
        margin-top: 30px;
    }
    
    .consultant-popup-buttons {
        justify-content: center;
        margin-top: 30px;
    }
    
    /* Review 페이지 */
    /* ------------------------------------------------- */
    .review-search-section {
        padding: 60px 0 30px;
    }
    
    .review-search-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-search-input,
    .review-search-select {
        width: 100%;
    }
    
    .review-reset-button {
        width: 100%;
        margin-top: 10px;
    }
    
    .review-list-section {
        padding: 30px 0 60px;
    }
    
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .review-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Inquiry 페이지 */
    /* ------------------------------------------------- */
    .inquiry-info-section {
        padding: 60px 0;
    }
    
    .inquiry-info-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    
    .inquiry-info-item {
        padding: 30px 20px;
    }
    
    .inquiry-form-section {
        padding: 60px 0;
    }
    
    .inquiry-google-form {
        padding: 30px 20px;
    }
    
    .inquiry-form-buttons {
        margin: 20px 0;
    }
    
    .inquiry-submit-button {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================================
   모바일 (480px)
   =================================================== */
@media screen and (max-width: 480px) {
    /* 공통 스타일 */
    /* ------------------------------------------------- */
    .about-container,
    .service-container,
    .review-container,
    .inquiry-container,
    .consultant-container {
        padding: 0 20px;
    }
    
    /* 헤더 섹션 공통 */
    /* ------------------------------------------------- */
    .about-header-section,
    .service-header-section,
    .review-header-section,
    .inquiry-header-section,
    .consultant-header-section {
        height: 300px;
    }
    
    .about-header-content h1,
    .service-header-content h1,
    .review-header-content h1,
    .inquiry-header-content h1,
    .consultant-header-content h1 {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 6px;
    }
    
    .about-header-content p,
    .service-header-content p,
    .review-header-content p,
    .inquiry-header-content p,
    .consultant-header-content p {
        font-size: 14px;
    }
    
    /* 섹션 타이틀 공통 */
    /* ------------------------------------------------- */
    .about-section-title,
    .service-section-title,
    .review-section-title,
    .inquiry-section-title,
    .consultant-section-title {
        font-size: 26px;
        line-height: 36px;
        letter-spacing: 6px;
    }
    
    /* About 페이지 */
    /* ------------------------------------------------- */
    .about-intro-section,
    .about-history-section {
        padding: 50px 0;
    }
    
    .about-intro-text {
        font-size: 15px;
        line-height: 26px;
    }
    
    .about-timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
        padding: 30px 20px 20px;
    }
    
    .about-timeline-content h3 {
        font-size: 18px;
        line-height: 24px;
    }
    
    .about-timeline-content p {
        font-size: 14px;
        line-height: 24px;
    }
    
    /* Service 페이지 */
    /* ------------------------------------------------- */
    .service-intro-section,
    .service-list-section,
    .service-process-section,
    .service-contact-section {
        padding: 50px 0;
    }
    
    .service-intro-text {
        font-size: 15px;
        line-height: 26px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        max-width: 400px;
        margin: 0 auto;
        padding: 30px 20px;
    }
    
    .service-icon {
        margin: 0 auto 20px;
    }
    
    .service-item-title {
        text-align: center;
    }
    
    .service-item-description {
        text-align: center;
    }
    
    .service-button {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    .service-process-content h3 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .service-contact-text {
        font-size: 15px;
        line-height: 26px;
    }
    
    /* Consultant 페이지 */
    /* ------------------------------------------------- */
    .consultant-featured-section,
    .consultant-filter-section {
        padding: 50px 0;
    }
    
    .consultant-grid {
        grid-template-columns: 1fr;
    }
    
    .consultant-card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .consultant-name {
        text-align: center;
    }
    
    .consultant-position {
        text-align: center;
    }
    
    .consultant-tags {
        justify-content: center;
    }
    
    .consultant-popup-name {
        font-size: 24px;
        line-height: 32px;
    }
    
    .consultant-popup-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .consultant-popup-button {
        width: 100%;
        text-align: center;
    }
    
    .consultant-popup-details {
        padding: 15px;
    }
    
    /* Review 페이지 */
    /* ------------------------------------------------- */
    .review-search-section,
    .review-list-section {
        padding: 50px 0;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .review-card-header {
        padding: 15px;
    }
    
    .review-card-body {
        padding: 15px;
    }
    
    .review-card-footer {
        padding: 12px 15px;
    }
    
    /* Inquiry 페이지 */
    /* ------------------------------------------------- */
    .inquiry-info-section,
    .inquiry-form-section {
        padding: 50px 0;
    }
    
    .inquiry-info-item {
        padding: 25px 15px;
    }
    
    .inquiry-google-form {
        padding: 25px 15px;
    }
    
    .inquiry-google-form p {
        font-size: 15px;
        line-height: 26px;
    }
}

/* ===================================================
   작은 모바일 (320px)
   =================================================== */
@media screen and (max-width: 320px) {
    /* 헤더 섹션 공통 */
    /* ------------------------------------------------- */
    .about-header-section,
    .service-header-section,
    .review-header-section,
    .inquiry-header-section,
    .consultant-header-section {
        height: 250px;
    }
    
    .about-header-content h1,
    .service-header-content h1,
    .review-header-content h1,
    .inquiry-header-content h1,
    .consultant-header-content h1 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 4px;
    }
    
    .about-header-content p,
    .service-header-content p,
    .review-header-content p,
    .inquiry-header-content p,
    .consultant-header-content p {
        font-size: 13px;
    }
    
    /* 섹션 타이틀 공통 */
    /* ------------------------------------------------- */
    .about-section-title,
    .service-section-title,
    .review-section-title,
    .inquiry-section-title,
    .consultant-section-title {
        font-size: 22px;
        line-height: 30px;
        letter-spacing: 4px;
    }
    
    .about-section-title span,
    .service-section-title span,
    .review-section-title span,
    .inquiry-section-title span,
    .consultant-section-title span {
        display: block;
        margin-top: 5px;
    }
    
    /* About 페이지 */
    /* ------------------------------------------------- */
    .about-intro-text {
        font-size: 14px;
        line-height: 24px;
    }
    
    .about-signature {
        flex-direction: column;
        align-items: center;
    }
    
    .about-signature img {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .about-signature-info {
        text-align: center;
    }
    
    .about-timeline-year {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .about-timeline-content {
        padding: 20px 15px 15px;
    }
    
    /* Service 페이지 */
    /* ------------------------------------------------- */
    .service-intro-text {
        font-size: 14px;
        line-height: 24px;
    }
    
    .service-item-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .service-item-description {
        font-size: 14px;
        line-height: 24px;
    }
    
    .service-button {
        width: 100%;
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .service-process-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .service-process-item {
        padding-left: 60px;
    }
    
    .service-cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Consultant 페이지 */
    /* ------------------------------------------------- */
    .consultant-featured-name {
        font-size: 22px;
        line-height: 30px;
    }
    
    .consultant-featured-position {
        font-size: 14px;
    }
    
    .consultant-featured-description {
        font-size: 14px;
        line-height: 24px;
    }
    
    .consultant-detail-button {
        width: 100%;
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .consultant-filter-options {
        gap: 10px;
    }
    
    .consultant-checkbox {
        padding-left: 30px;
        font-size: 14px;
    }
    
    .consultant-filter-button {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .consultant-popup-close {
        top: 10px;
        right: 15px;
    }
    
    .consultant-popup-details h3 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    /* Review 페이지 */
    /* ------------------------------------------------- */
    .review-consultant-name {
        font-size: 16px;
    }
    
    .review-consultant-position {
        font-size: 13px;
    }
    
    .review-card-text {
        font-size: 14px;
        line-height: 24px;
        max-height: 120px;
    }
    
    .review-card-footer {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .review-page-button {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Inquiry 페이지 */
    /* ------------------------------------------------- */
    .inquiry-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .inquiry-info-icon i {
        font-size: 24px;
    }
    
    .inquiry-info-item h3 {
        font-size: 20px;
    }
    
    .inquiry-info-item p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .inquiry-submit-button {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .inquiry-note {
        font-size: 12px;
    }
}