    /* 페이지 전체 폰트 및 기본 스타일 */
    .location-page-wrapper {
        color: #333;
        line-height: 1.7;
        word-break: keep-all;
        max-width: 1653px; /* 콘텐츠 최대 너비 수정 */
        margin: 40px auto; /* 페이지 상하좌우 여백 */
        padding: 0 20px;
    }

    /* 페이지 제목 */
    .location-page-title {
        font-size: 2.8rem; /* 폰트 크기 증가 */
        font-weight: 700;
        color: #111;
        margin-bottom: 80px;
    }

    /* 주소 정보 섹션 */
    .location-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
    }

    /* 소제목 좌측 정렬 및 실선 추가 */
    .location-section .location-title {
        font-size: 1.5rem;
        font-weight: 400; /* 폰트 굵기 수정 */
        color: #222;
        margin-bottom: 20px;
        width: 100%;
        text-align: left;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    /* 지도 영역 가로 꽉 채우기 */
    .map-container {
        width: 100%;
        height: 450px;
        border: 1px solid #eee;
        margin-bottom: 30px;
    }
    
    /* 지도 iframe 스타일 */
    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* 주소 텍스트 영역 좌측 정렬 */
    .address-container {
        width: 100%;
        text-align: left;
    }

    .address-container .main-address {
        font-size: 2.25rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .address-container .sub-address {
        font-size: 1rem;
        color: #666;
    }

    /* 반응형 스타일 (모바일) */
    @media (max-width: 768px) {
        .location-page-wrapper {
            margin: 20px auto;
        }

        .location-page-title {
            font-size: 2rem; /* 모바일 폰트 크기 조정 */
            margin-bottom: 50px;
        }

        .map-container {
            height: 300px;
        }

        .address-container .main-address {
            font-size: 1.1rem;
        }
        
        .address-container .sub-address {
            font-size: 0.9rem;
        }
    }
