 @font-face {
     font-family: 'Nanum Pen Script';
     src: url('/fonts/NanumPenScript-Regular.ttf') format('truetype');
     font-weight: normal;
     font-style: normal;
 }

 @font-face {
     font-family: 'Paperlogy';
     src: url('/fonts/Paperlogy-ExtraBold.woff2') format('woff2');
     font-weight: 800;
     font-style: normal;
 }

 @font-face {
     font-family: 'Pretendard';
     src: url('/fonts/Pretendard-Regular.otf') format('opentype');
     font-weight: normal;
     font-style: normal;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Pretendard', sans-serif;
     line-height: 1.6;
     color: #333;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 ul {
     list-style: none;
 }

 /* 스크린 리더 전용 (SEO용 숨김 텍스트) */
 .visually-hidden {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0;
 }

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

 .container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
 }

 header {
     background: #fff;
     border-bottom: 1px solid #e0e0e0;
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 0;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo a {
     display: flex;
     align-items: center;
     line-height: 1;
 }

 .logo img {
     height: 40px;
     width: auto;
     display: block;
 }

 nav ul {
     display: flex;
     gap: 60px;
     justify-content: space-between;
     min-width: 500px;
 }

 nav li {
     width: 150px;
     text-align: center;
 }

 nav a {
     font-size: 16px;
     font-weight: 700;
     color: #333;
     transition: color 0.3s;
 }

 nav a:hover {
     color: #2563eb;
 }

 .header-submenu-area {
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: #fff;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s;
     z-index: 999;
 }

 header:hover .header-submenu-area {
     opacity: 1;
     visibility: visible;
 }

 .header-submenu-area .header-content {
     padding: 0 0 30px 0;
 }

 .submenu-logo-space {
     display: flex;
     align-items: center;
     min-height: 40px;
     visibility: hidden;
 }

 .submenu-logo-space::before {
     content: '';
     display: block;
     width: 176px;
     height: 40px;
 }

 .header-submenu-area nav ul {
     display: flex;
     gap: 60px;
     min-width: 500px;
 }

 .header-submenu-area nav li {
     width: 150px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     text-align: center;
 }

 .header-submenu-area nav a {
     font-size: 15px;
     font-weight: 500;
     color: #666;
     padding: 8px 0;
     transition: color 0.3s;
 }

 .header-submenu-area nav a:hover {
     color: #2563eb;
 }

 .lang {
     display: flex;
     gap: 10px;
 }

 .lang a {
     font-size: 12px;
     color: #666;
     padding: 5px 10px;
     border: 1px solid #e0e0e0;
     border-radius: 3px;
 }

 .lang a.active {
     background: #333;
     color: #fff;
     border-color: #333;
 }

 .hero {
     height: 600px;
     position: relative;
     overflow: hidden;
 }

 .hero-slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease-in-out;
 }

 .hero-slide.active {
     opacity: 1;
 }

 .hero-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
 }

 .hero-overlay .container {
     position: relative;
     height: 100%;
 }

 .hero-content {
     position: absolute;
     bottom: 40px;
     right: 20px;
     text-align: right;
     color: #fff;
 }

 .hero-logo {
     max-width: 300px;
     width: auto;
     height: auto;
     margin-left: auto;
     margin-right: 0;
 }

 .hero .subtitle {
     font-size: 18px;
     letter-spacing: 3px;
     margin-bottom: 20px;
 }

 .hero .description {
     font-size: 14px;
     letter-spacing: 1px;
 }

 .tradition {
     padding: 80px 0;
     text-align: center;
     background: #f8f9fa;
 }

 .tradition h2 {
     font-size: 36px;
     font-weight: bold;
     margin-bottom: 20px;
 }

 .tradition p {
     font-size: 14px;
     color: #666;
     margin-bottom: 30px;
     line-height: 1.8;
 }

 .services {
     padding: 80px 0;
 }

 .news {
     padding: 80px 0;
     background: #f8f9fa;
 }

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

 .section-header h2 {
     font-size: 28px;
     font-weight: bold;
 }

 .section-header .more {
     color: #2563eb;
     font-size: 14px;
 }

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

 .news-item {
     display: block;
     background: #fff;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     text-decoration: none;
     color: inherit;
     transition: all 0.3s;
 }

 .news-item:hover {
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     transform: translateY(-4px);
 }

 .badge {
     display: inline-block;
     padding: 4px 12px;
     font-size: 11px;
     border-radius: 3px;
     margin-bottom: 15px;
 }

 .badge-red {
     background: #dc2626;
     color: #fff;
 }

 .badge-blue {
     background: #2563eb;
     color: #fff;
 }

 .news-item h3 {
     font-size: 16px;
     font-weight: bold;
     margin-bottom: 15px;
     line-height: 1.5;
 }

 .news-item p {
     font-size: 13px;
     color: #666;
     line-height: 1.6;
     margin-bottom: 15px;
 }

 .news-item .date {
     font-size: 12px;
     color: #999;
 }

 .consultation {
     background: #1e293b;
     color: #fff;
     padding: 80px 0 60px;
 }

 .consultation-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
 }

 .consultation-item {
     padding: 40px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 8px;
 }

 .consultation-item .label {
     font-size: 12px;
     color: #94a3b8;
     margin-bottom: 15px;
 }

 .consultation-item h3 {
     font-size: 20px;
     font-weight: bold;
     line-height: 1.6;
     margin-bottom: 30px;
 }

 .consultation-single {
     text-align: center;
     padding: 60px 40px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 8px;
     max-width: 800px;
     margin: 0 auto;
 }

 .consultation-single .label {
     font-size: 12px;
     color: #94a3b8;
     margin-bottom: 15px;
 }

 .consultation-single h3 {
     font-size: 28px;
     font-weight: bold;
     line-height: 1.6;
     margin-bottom: 30px;
 }

 .btn-primary {
     display: inline-block;
     padding: 12px 30px;
     background: #2563eb;
     color: #fff;
     border-radius: 5px;
     font-size: 14px;
     transition: background 0.3s;
 }

 .btn-primary:hover {
     background: #1d4ed8;
 }

 .btn-outline {
     display: inline-block;
     padding: 12px 30px;
     border: 1px solid #333;
     color: #333;
     border-radius: 5px;
     font-size: 14px;
     transition: all 0.3s;
 }

 .btn-outline:hover {
     background: #333;
     color: #fff;
 }

 .btn-outline-white {
     display: inline-block;
     padding: 12px 30px;
     border: 1px solid #fff;
     color: #fff;
     border-radius: 5px;
     font-size: 14px;
     transition: all 0.3s;
 }

 .btn-outline-white:hover {
     background: #fff;
     color: #1e293b;
 }

 footer {
     background: #111;
     color: #999;
     padding: 60px 0 120px;
 }

 .footer-content {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 60px;
 }

 .footer-left {
     flex: 0 0 auto;
 }

 .footer-logo {
     display: flex;
     align-items: center;
 }

 .footer-logo img {
     height: 60px;
     width: auto;
     display: block;
 }

 .footer-right {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .footer-info p {
     font-size: 12px;
     line-height: 1.8;
 }

 .footer-address,
 .footer-contact,
 .footer-email {
     display: inline;
 }

 .footer-address::before,
 .footer-contact::before,
 .footer-email::before {
     content: " | ";
 }

 .footer-links {
     display: flex;
     gap: 20px;
 }

 .footer-links a {
     font-size: 12px;
     color: #999;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: #fff;
 }

 .floating-buttons {
     position: fixed;
     bottom: 100px;
     right: 30px;
     display: flex;
     flex-direction: column;
     gap: 15px;
     z-index: 1000;
 }

 .floating-btn {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 24px;
     cursor: pointer;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
     transition: all 0.3s;
     text-decoration: none;
     overflow: hidden;
     position: relative;
 }

 .floating-btn img {
     width: 35px;
     height: 35px;
     object-fit: contain;
 }

 .floating-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
 }

 .floating-btn.kakao {
     background: #FFFFFF;
     color: #000;
 }

 .floating-btn.phone {
     background: #FFFFFF;
 }

 .floating-btn.blog {
     background: #FFFFFF;
 }

 .floating-btn.consultation {
     background: #FFFFFF;
     color: #000;
     line-height: 1;
     padding: 0;
     font-size: 28px;
     overflow: visible;
 }

 .page-title {
     padding: 80px 0;
     background: #f8f9fa;
 }

 .page-title h1 {
     font-size: 48px;
     font-weight: bold;
     line-height: 1.4;
 }

 .intro-image img {
     width: 100%;
     height: 400px;
     object-fit: cover;
 }

 .intro-text {
     text-align: center;
 }

 .intro-text h2 {
     font-size: 32px;
     font-weight: bold;
     line-height: 1.6;
     color: #2563eb;
 }

 .intro-image-dark {
     background: #333;
     padding: 100px 0;
     position: relative;
 }

 .intro-image-dark .overlay {
     color: #fff;
 }

 .intro-image-dark h2 {
     font-size: 28px;
     font-weight: bold;
     margin-bottom: 20px;
 }

 .intro-image-dark p {
     font-size: 14px;
     line-height: 1.8;
     color: #ccc;
 }

 .history {
     padding: 80px 0;
 }

 .history h2 {
     font-size: 28px;
     font-weight: bold;
     margin-bottom: 40px;
     text-align: center;
 }

 .history-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
 }

 .history-item h3 {
     font-size: 16px;
     font-weight: bold;
     margin-bottom: 10px;
 }

 .history-item p,
 .history-item .year {
     font-size: 13px;
     color: #666;
 }

 .field-list {
     padding: 60px 0;
 }

 .field-category {
     border-bottom: 1px solid #e0e0e0;
     padding: 30px 0;
 }

 .field-category h2 {
     font-size: 20px;
     font-weight: bold;
     margin-bottom: 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
 }

 .field-category .arrow {
     color: #999;
 }

 .field-category ul {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
 }

 .field-category li {
     font-size: 14px;
     color: #666;
 }

 .person-list {
     padding: 60px 0;
 }

 .person-category {
     margin-bottom: 80px;
 }

 .person-category h2 {
     font-size: 24px;
     font-weight: bold;
     margin-bottom: 40px;
     padding-bottom: 15px;
     border-bottom: 2px solid #2563eb;
 }

 .person-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
 }

 .person-card {
     display: flex;
     gap: 30px;
     background: #fff;
     border: 1px solid #e0e0e0;
     border-radius: 8px;
     padding: 30px;
     transition: all 0.3s;
 }

 .person-card:hover {
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transform: translateY(-4px);
 }

 .person-image {
     flex: 0 0 200px;
 }

 .person-image img {
     width: 200px;
     height: 250px;
     object-fit: cover;
     border-radius: 8px;
     background: #f0f0f0;
 }

 .person-info {
     flex: 1;
 }

 .person-info h3 {
     font-size: 24px;
     font-weight: bold;
     margin-bottom: 5px;
 }

 .person-info .position {
     font-size: 14px;
     color: #2563eb;
     margin-bottom: 20px;
 }

 .person-details h4 {
     font-size: 14px;
     font-weight: bold;
     color: #333;
     margin-top: 20px;
     margin-bottom: 10px;
     padding-bottom: 5px;
     border-bottom: 1px solid #e0e0e0;
 }

 .person-details h4:first-child {
     margin-top: 0;
 }

 .person-details ul {
     list-style: disc;
     padding-left: 20px;
 }

 .person-details li {
     font-size: 13px;
     color: #666;
     line-height: 1.8;
     margin-bottom: 5px;
 }

 .news-list {
     padding: 60px 0;
 }

 .pagination {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-top: 40px;
 }

 .page {
     padding: 8px 15px;
     border: 1px solid #ddd;
     background: #fff;
     cursor: pointer;
     border-radius: 5px;
 }

 .page.active {
     background: #2563eb;
     color: #fff;
     border-color: #2563eb;
 }

 .map-section {
     padding: 60px 0;
 }

 .contact-info {}

 .info-row {
     display: flex;
     align-items: center;
     padding: 15px 0;
 }

 .info-row:first-child {
     padding-top: 0;
 }

 .info-row:last-child {
     padding-bottom: 0;
 }

 .info-label {
     font-size: 20px;
     font-weight: 700;
     color: #000;
     min-width: 200px;
     flex-shrink: 0;
 }

 .info-value {
     font-size: 20px;
     font-weight: 400;
     color: #000;
     flex: 1;
 }

 .info-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
     margin-bottom: 40px;
 }

 .info-item h3 {
     font-size: 14px;
     color: #666;
     margin-bottom: 10px;
 }

 .info-large {
     font-size: 20px;
     font-weight: bold;
     line-height: 1.6;
 }

 .building-photos {
     padding: 60px 0;
     background: #fff;
 }

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

 .photo-card {
     width: 100%;
     aspect-ratio: 3/4;
     background: #f0f0f0;
     border-radius: 8px;
 }

 .recruit-section {
     padding: 60px 0;
     background: #f8f9fa;
 }

 .recruit-section h2 {
     font-size: 28px;
     font-weight: bold;
     margin-bottom: 20px;
 }

 .recruit-desc {
     font-size: 14px;
     line-height: 1.8;
     color: #666;
     margin-bottom: 40px;
 }

 .recruit-contact h3 {
     font-size: 14px;
     color: #666;
     margin-bottom: 10px;
 }

 .consultation-wrapper {
     display: flex;
     gap: 60px;
     align-items: flex-start;
     justify-content: space-between;
 }

 .consultation-text {
     flex: 0 0 auto;
     min-width: 300px;
 }

 .consultation-text .consultation-label {
     font-size: 20px;
     color: #ffffff;
     margin-bottom: 0;
     display: block;
     font-weight: 700;
 }

 .consultation-text h2 {
     font-size: 34px;
     font-weight: bold;
     margin-bottom: 15px;
     line-height: 1.3;
 }

 .consultation-form {
     flex: 0 0 auto;
     width: 60%;
     background: rgba(53, 63, 79, 1);
     padding: 40px;
     border-radius: 4px;
     margin-left: auto;
 }

 .form-row-horizontal {
     display: flex;
     gap: 45px;
     margin-bottom: 15px;
 }

 .form-row-horizontal .form-field {
     flex: 1;
     display: flex;
     align-items: center;
     gap: 30px;
 }

 .form-row-vertical {
     margin-bottom: 25px;
     display: flex;
     align-items: flex-start;
     gap: 30px;
 }

 .consultation-form label {
     color: #ffffff;
     font-size: 20px;
     font-weight: bold;
     white-space: nowrap;
     flex-shrink: 0;
 }

 .form-row-horizontal .form-field label {
     margin: 0;
     min-width: 50px;
 }

 .form-row-vertical label {
     padding-top: 15px;
     min-width: 50px;
 }

 .form-row-button {
     display: flex;
     justify-content: flex-end;
 }

 .consultation-form input,
 .consultation-form textarea {
     width: 100%;
     padding: 15px 20px;
     border: none;
     border-radius: 4px;
     background: rgba(255, 255, 255, 0.9);
     color: #333;
     font-size: 20px;
     font-family: inherit;
     transition: all 0.3s;
 }

 .consultation-form input::placeholder,
 .consultation-form textarea::placeholder {
     color: rgba(0, 0, 0, 0.5);
 }

 .consultation-form input:focus,
 .consultation-form textarea:focus {
     outline: none;
     background: rgba(255, 255, 255, 1);
 }

 .consultation-form textarea {
     resize: vertical;
     min-height: 120px;
 }

 .consultation-form .btn-submit {
     padding: 12px 35px;
     background: #2563eb;
     color: #fff;
     border: none;
     border-radius: 4px;
     font-size: 20px;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s;
     white-space: nowrap;
 }

 .consultation-form .btn-submit:hover {
     background: #1d4ed8;
     transform: translateY(-2px);
 }

 .consultation-form .btn-submit:disabled {
     opacity: 0.6;
     cursor: not-allowed;
 }

 .fixed-bottom-buttons {
     display: none;
 }

 @media (max-width: 768px) {
     .fixed-bottom-buttons {
         display: flex;
         position: fixed;
         bottom: 0;
         left: 0;
         right: 0;
         background: #fff;
         height: 80px;
         z-index: 999;
         box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
     }

     .fixed-btn-left,
     .fixed-btn-right {
         flex: 1;
         border: none;
         background: transparent;
         font-size: 14px;
         font-weight: 400;
         color: #000;
         cursor: pointer;
         text-decoration: none;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         gap: 5px;
         transition: background 0.3s;
     }

     .fixed-btn-left img,
     .fixed-btn-right img {
         height: 30px;
         width: auto;
     }

     .fixed-btn-left:active,
     .fixed-btn-right:active {
         background: #f5f5f5;
     }

     .fixed-btn-divider {
         width: 1px;
         height: 60%;
         background: #e0e0e0;
         align-self: center;
     }
 }

 .intro-hero {
     padding: 0;
     margin: 0;
     position: relative;
 }

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

 .intro-hero-text-container {
     position: absolute;
     bottom: 40px;
     left: 0;
     right: 0;
     z-index: 2;
 }

 .intro-hero-text {}

 .hero-subtitle {
     font-size: 38px;
     font-weight: 300;
     color: #fff;
     margin: 0 0 10px 0;
     line-height: 1;
 }

 .hero-title {
     font-size: 40px;
     font-weight: 900;
     color: #fff;
     margin: 0;
     line-height: 1;
 }

 .intro-tabs-section {
     padding: 60px 0 0;
     background: #fff;
 }

 .intro-tab-buttons {
     display: flex;
     gap: 20px;
     margin-bottom: 60px;
 }

 .intro-tab-btn {
     padding: 15px 50px;
     font-size: 18px;
     font-weight: 500;
     border: 1px solid #e5e7eb;
     border-radius: 50px;
     background: #fff;
     color: #9ca3af;
     cursor: pointer;
     min-width: 180px;
     text-align: center;
 }

 .intro-tab-btn.active {
     background: #182650;
     color: #fff;
     border-color: #182650;
 }

 .intro-tab-btn:hover {
     border-color: #182650;
     color: #182650;
 }

 .intro-tab-btn.active:hover {
     color: #fff;
 }

 .intro-content-section {
     padding: 0 0 80px;
     background: #fff;
 }

 .intro-content-section .container {
     padding: 0 20px;
 }

 .intro-bg-container {
     position: relative;
     width: 100%;
     height: auto;
 }

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

 .intro-text-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     padding: 60px 0 100px 60px;
     z-index: 1;
 }

 .intro-text {
     max-width: 100%;
     text-align: left;
 }

 .intro-text h2 {
     font-family: 'Nanum Pen Script', cursive;
     font-size: 40px;
     font-weight: normal;
     line-height: 1.4;
     margin-bottom: 30px;
     color: #000;
     text-align: left;
 }

 .intro-text p {
     font-size: 18px;
     line-height: 1.8;
     margin-bottom: 10px;
     color: #333;
     text-align: left;
 }

 .intro-text p strong {
     font-size: 18px;
     font-weight: 600;
 }

 .intro-tab-content {
     display: none;
 }

 .intro-tab-content.active {
     display: block;
 }

 .member-main {
     background-image: url('/images/person_background.svg');
     background-size: 111% 90%;
     background-position: center 70%;
     background-repeat: no-repeat;
     padding: 0;
     position: relative;
     min-height: 600px;
 }

 .member-main-logo {
     position: absolute;
     top: 20%;
     right: 5%;
     width: 50px;
     height: 50px;
     z-index: 10;
     background: transparent;
     opacity: 0.6;
 }

 .member-main-content {
     display: flex;
     gap: 40px;
     align-items: flex-end;
     max-width: 1200px;
     margin: 0 auto;
 }

 .member-info {
     flex: 1;
     color: #fff;
     padding: 0;
 }

 .member-name {
     font-family: 'Paperlogy', sans-serif;
     font-size: 36px;
     font-weight: 800;
     margin-bottom: 0;
     color: #000;
 }

 .member-title {
     font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
     font-size: 24px;
     font-weight: normal;
     margin-left: 0;
     color: #000;
 }

 .member-subtitle {
     font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
     font-size: 24px;
     font-weight: 500;
     margin-bottom: 5px;
     color: #fff;
     background: rgb(24, 38, 80);
     padding: 4px 10px;
     border-radius: 8px;
     display: inline-block;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
 }

 .member-career {
     list-style: none;
     padding: 0;
     margin-bottom: 0;
 }

 .member-career li {
     font-size: 18px;
     line-height: 2;
     color: #fff;
     position: relative;
     padding-left: 20px;
 }

 .member-career li:before {
     content: '•';
     position: absolute;
     left: 0;
     color: #fff;
 }

 .member-career li:last-child:before {
     content: '';
 }

 .member-expertise {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     align-items: center;
     background: rgb(24, 38, 80);
     padding: 20px 0;
     margin: 0 0 60px 0;
     width: 100%;
 }

 .expertise-label {
     font-size: 18px;
     font-weight: 500;
     color: #fff;
     margin-right: 5px;
     padding-left: 100px;
 }

 .expertise-btn {
     padding: 8px 20px;
     background: transparent;
     border: 1px solid #fff;
     color: #fff;
     border-radius: 20px;
     font-size: 14px;
     cursor: pointer;
     transition: all 0.3s;
 }

 .expertise-btn:hover {
     background: #fff;
     color: #3B4D6F;
 }

 .member-photo {
     flex: 0 0 430px;
     margin-bottom: 0;
 }

 .member-main-mobile {
     display: none;
 }

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

 .advisory-team {
     padding: 40px 0;
     background: #fff;
     border-top: 1px solid #e0e0e0;
     position: relative;
 }

 .team-card-logo {
     position: absolute;
     top: 10%;
     right: 10%;
     width: 50px;
     height: 50px;
     z-index: 10;
     background: transparent;
     opacity: 0.4;
 }

 .section-title {
     font-size: 32px;
     font-weight: bold;
     margin: 0 0 20px 0;
     text-align: left;
     color: #000;
 }

 .team-grid {
     display: flex;
     gap: 30px;
     margin-bottom: 30px;
 }

 .team-grid-3 {
     justify-content: flex-start;
 }

 .team-grid-4 {
     justify-content: flex-start;
 }

 .team-card {
     width: calc((100% - 90px) / 4);
     flex-shrink: 0;
 }

 .team-card {
     background: url('/images/person_background2.svg');
     background-size: cover;
     background-position: center;
     border-radius: 0;
     overflow: hidden;
     transition: all 0.3s;
     display: flex;
     flex-direction: column;
     position: relative;
 }

 .team-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 .team-photo {
     width: 100%;
     aspect-ratio: 3/4;
     overflow: hidden;
     position: relative;
 }

 .team-photo img {
     width: 90%;
     height: 60%;
     object-fit: cover;
     margin: auto;
     display: block;
 }

 .team-info-box {
     background: rgba(24, 38, 80, 1);
     padding: 30px 20px;
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
 }

 .team-card h3 {
     font-size: 18px;
     font-weight: bold;
     margin: 0 0 10px 0;
     color: #fff;
 }

 .team-name {
     font-size: 18px;
     font-weight: bold;
     color: #fff;
 }

 .team-title {
     font-size: 14px;
     font-weight: normal;
     color: #fff;
 }

 .team-specialty {
     list-style: none;
     padding: 0;
     margin: 0;
     font-size: 13px;
     line-height: 1.6;
     color: #fff;
 }

 .team-specialty li {
     position: relative;
     padding-left: 12px;
     margin-bottom: 5px;
 }

 .team-specialty li:before {
     content: '•';
     position: absolute;
     left: 0;
     color: #fff;
 }

 .recruitment {
     padding: 40px 25px 40px 25px;
     background: #f8f9fa;
 }

 .recruitment .section-title {
     font-size: 24px;
     margin-bottom: 10px;
 }

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

 .recruitment-email {
     font-size: 18px;
     line-height: 1.8;
     color: #666;
     text-align: left;
 }

 .success-stories {
     padding: 20px 0;
     background: transparent;
 }

 .success-layout {
     display: flex;
     gap: 20px;
     align-items: flex-start;
 }

 .success-intro {
     flex: 0 0 360px;
     padding-top: 20px;
 }

 .section-label {
     font-size: 14px;
     color: #2563eb;
     margin-bottom: 10px;
     font-weight: 500;
     border-left: 3px solid #2563eb;
     padding-left: 10px;
 }

 .section-label-text {
     font-size: 20px;
     font-weight: 700;
     color: #000;
     margin-bottom: 0;
 }

 .success-intro h2 {
     font-size: 34px;
     font-weight: bold;
     margin-top: -10px;
     margin-bottom: 5px;
     color: #000;
 }

 .section-desc {
     font-size: 20px;
     color: #000;
     font-weight: 300;
     line-height: 1.6;
     margin-top: 5px;
     margin-bottom: 20px;
 }

 .btn-more {
     background: transparent;
     border: 1px solid #e2e8f0;
     padding: 10px 20px;
     font-size: 14px;
     color: #1e293b;
     border-radius: 6px;
     cursor: pointer;
     transition: all 0.3s;
 }

 .btn-more:hover {
     background: #1e293b;
     color: #fff;
     border-color: #1e293b;
 }

 .success-content {
     flex: 1;
     overflow: hidden;
     padding: 5px;
 }

 .success-cards {
     display: flex;
     gap: 28px;
     transition: transform 0.5s ease;
     padding: 20px 0;
 }

 a.success-card {
     text-decoration: none;
     color: inherit;
 }

 .success-card {
     flex: 0 0 calc((100% - 56px) / 3);
     min-width: calc((100% - 56px) / 3);
     background: #fff;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
     transition: all 0.3s;
     height: 320px;
     display: flex;
     flex-direction: column;
     cursor: pointer;
 }

 .success-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
 }

 .card-header {
     background: rgba(24, 38, 80, 1);
     padding: 20px 25px;
     border-radius: 8px;
     flex: 0 0 auto;
 }

 .card-tag {
     display: inline-block;
     background: #fff;
     color: #1e293b;
     font-size: 14px;
     font-weight: 600;
     padding: 6px 12px;
     border-radius: 20px;
     margin-bottom: 15px;
 }

 .card-header h3 {
     font-size: 24px;
     font-weight: bold;
     line-height: 1.5;
     color: #fff;
     margin: 0;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     min-height: calc(24px * 1.5 * 2);
 }

 .card-body {
     background: #fff;
     padding: 25px;
     flex: 1;
     overflow: hidden;
 }

 .card-body p {
     font-size: 16px;
     color: #64748b;
     line-height: 1.8;
     margin: 0;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .btn-more-wrapper {
     margin-top: 100px;
 }

 .btn-more-link {
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
 }

 .btn-more-link span {
     font-size: 20px;
     color: #000;
     font-weight: 300;
 }

 .btn-circle-arrow {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: rgba(24, 38, 80, 1);
     border: none;
     color: #fff;
     font-size: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s;
 }

 .btn-circle-arrow img {
     width: 16px;
     height: 16px;
     object-fit: contain;
 }

 .btn-circle-arrow:hover {
     background: rgba(24, 38, 80, 0.8);
     transform: scale(1.1);
 }

 .slider-controls {
     display: flex;
     gap: 10px;
     margin-bottom: 20px;
 }

 .slider-arrow {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: rgba(217, 217, 217, 1);
     border: 1px solid #e2e8f0;
     color: #1e293b;
     font-size: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s;
 }

 .slider-arrow img {
     width: 16px;
     height: 16px;
     object-fit: contain;
 }

 .slider-arrow:hover {
     background: #1e293b;
     color: #fff;
     border-color: #1e293b;
 }

 .slider-arrow:hover img {
     filter: brightness(0) invert(1);
 }

 .press-coverage {
     padding: 20px 0;
     background: #f8f9fa;
 }

 .press-layout {
     display: flex;
     gap: 20px;
     align-items: flex-start;
 }

 .press-intro {
     flex: 0 0 360px;
     padding-top: 20px;
 }

 .press-intro .section-label-text {
     font-size: 20px;
     font-weight: 700;
     color: #000;
     margin-bottom: 0;
 }

 .press-intro h2 {
     font-size: 32px;
     font-weight: bold;
     margin-top: -10px;
     margin-bottom: 15px;
     color: #000;
 }

 .press-intro .section-desc {
     font-size: 20px;
     color: #000;
     font-weight: 300;
     line-height: 1.6;
     margin-top: 5px;
     margin-bottom: 20px;
 }

 .press-content {
     flex: 1;
     overflow: hidden;
     padding: 5px;
 }

 .press-cards {
     display: flex;
     gap: 28px;
     transition: transform 0.5s ease;
     padding: 20px 0;
 }

 a.press-card {
     text-decoration: none;
     color: inherit;
 }

 .press-card {
     flex: 0 0 calc((100% - 56px) / 3);
     min-width: calc((100% - 56px) / 3);
     background: #fff;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
     transition: all 0.3s;
     height: 320px;
     display: flex;
     flex-direction: column;
     cursor: pointer;
 }

 .press-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
 }

 .press-card .card-image {
     flex: 1;
     background: #e5e7eb;
     background-size: cover;
     background-position: center;
 }

 .press-card .card-header {
     background: #1a2947;
     padding: 20px 25px;
     flex: 0 0 auto;
 }

 .press-card .card-tag {
     display: inline-block;
     background: transparent;
     color: #fff;
     border: 1px solid #fff;
     font-size: 14px;
     font-weight: 600;
     padding: 6px 12px;
     border-radius: 20px;
     margin-bottom: 10px;
 }

 .press-card .card-header h3 {
     color: #fff;
     font-size: 22px;
     font-weight: bold;
     line-height: 1.5;
     margin: 0;
 }

 .press-card .card-body {
     display: none;
 }

 .practice-areas {
     padding: 80px 0;
     background: transparent;
 }

 .practice-header {
     text-align: left;
     margin-bottom: 50px;
 }

 .practice-header .section-label-text {
     font-size: 20px;
     font-weight: 700;
     color: #000;
     margin-bottom: 0;
 }

 .practice-header h2 {
     font-size: 34px;
     font-weight: bold;
     margin-top: -10px;
     margin-bottom: 20px;
     color: #000;
 }

 .practice-header .btn-more-wrapper {
     margin-top: 20px;
     display: flex;
     justify-content: flex-start;
 }

 .practice-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 25px;
     padding-right: 10px;
 }

 .practice-card {
     background: rgba(244, 244, 244, 1);
     border-radius: 12px;
     padding: 0;
     text-align: center;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
     transition: all 0.3s;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     aspect-ratio: 1 / 1;
 }

 .practice-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
 }

 .practice-icon {
     width: 160px;
     height: 160px;
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .practice-icon img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
 }

 .practice-card h3 {
     font-size: 24px;
     font-weight: 700;
     color: #333;
     margin: 0;
     line-height: 1.4;
 }

 .practice-card h3 .dot {
     display: inline-block;
     vertical-align: middle;
     line-height: 1;
 }

 .consultation-subtitle {
     font-size: 18px;
     color: #cbd5e1;
     margin-top: 10px;
 }

 .mobile-br {
     display: none;
 }

 .field-grid-section {
     padding: 60px 0;
     background: #fff;
 }

 .field-grid-2col {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 0;
     margin-bottom: 0;
 }

 .field-grid-2col .field-item {
     background: transparent;
     border: none;
     padding: 0;
     margin: 0 40px 0 0;
     display: flex;
 }

 .field-grid-2col .field-item:nth-child(even) {
     margin: 0;
 }

 .field-grid-2col .field-content {
     margin: 10px 0;
     padding: 0;
     transition: background 0.3s ease;
     border-top: 1px solid #000;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .field-grid-2col .field-item:hover .field-content {
     background: #F4F4F4;
 }

 .field-grid-2col .field-header-row {
     display: flex;
     align-items: center;
     gap: 60px;
     margin: 0;
     height: 80px;
 }

 .field-grid-2col .field-item h2 {
     font-size: 28px;
     font-weight: 700;
     margin: 0;
     color: #000;
     white-space: nowrap;
     flex-shrink: 0;
     width: 150px;
     padding-left: 20px;
     line-height: 1;
 }

 .field-grid-2col .field-subtitle-text {
     font-size: 16px;
     color: #000;
     line-height: 1.6;
     margin: 0;
     font-weight: 400;
     opacity: 0;
     transition: opacity 0.3s ease;
     flex: 1;
 }

 .field-grid-2col .field-item:hover .field-subtitle-text {
     opacity: 1;
 }

 .field-grid-2col .field-item .field-divider {
     margin-left: 0;
 }

 .field-grid-2col .field-item ul {
     list-style: none;
     padding: 0;
     margin: 0;
     margin-left: 210px;
     padding-bottom: 20px;
 }

 .field-grid-2col .field-item li {
     font-size: 18px;
     color: #000;
     line-height: 1.5;
     position: relative;
     padding-left: 0;
     margin-bottom: 3px;
 }

 .field-grid-2col .field-item li:before {
     content: '';
     position: absolute;
     left: 0;
     color: #000;
     font-weight: normal;
 }

 .field-divider-top {
     display: none;
 }

 .field-grid-2col .field-item .field-divider {
     border: none;
     border-top: 1px solid #e0e0e0;
     margin: 0 0 15px 0;
 }

 .field-grid-3col-wrapper {
     background: #F4F4F4;
     padding: 60px 0;
 }

 .field-grid-3col {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 0;
 }

 .field-grid-3col .field-item {
     background: transparent;
     border: none;
     padding: 0;
     margin: 0 40px 0 0;
     display: flex;
 }

 .field-grid-3col .field-item:nth-child(3n) {
     margin: 0;
 }

 .field-grid-3col .field-content {
     padding: 20px 0;
     border-top: 1px solid #000;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .field-grid-3col .field-item h2 {
     font-size: 28px;
     font-weight: 700;
     margin: 0;
     color: #000;
     padding-left: 20px;
     line-height: 1;
 }

 .field-grid-3col .field-item .field-divider {
     border: none;
     border-top: 1px solid #e0e0e0;
     margin: 16px 0 20px 0;
 }

 .field-grid-3col .field-item ul {
     list-style: none;
     padding-left: 20px;
     margin: 0;
 }

 .field-grid-3col .field-item li {
     font-size: 18px;
     color: #000;
     line-height: 1.5;
     position: relative;
     padding-left: 0;
     margin-bottom: 3px;
 }

 .field-grid-3col .field-item li:before {
     content: '';
     position: absolute;
     left: 0;
     color: #000;
     font-weight: normal;
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     padding: 0;
     z-index: 1001;
 }

 .mobile-menu-btn span {
     display: block;
     width: 24px;
     height: 2px;
     background: #333;
     margin: 5px 0;
     transition: all 0.3s;
 }

 .mobile-menu-btn.active span:nth-child(1) {
     transform: rotate(45deg) translate(5px, 5px);
 }

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

 .mobile-menu-btn.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -6px);
 }

 .mobile-menu {
     display: none;
     position: fixed;
     top: 0;
     right: -100%;
     width: 80%;
     max-width: 320px;
     height: 100vh;
     background: #fff;
     box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
     z-index: 1000;
     overflow-y: auto;
     overflow-x: visible;
 }

 .mobile-menu.active {
     right: 0;
 }

 .mobile-menu-close {
     position: absolute;
     top: 20px;
     right: 20px;
     background: none;
     border: none;
     cursor: pointer;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1002;
     font-size: 0;
 }

 .mobile-menu-close::before,
 .mobile-menu-close::after {
     content: '';
     position: absolute;
     width: 20px;
     height: 1px;
     background: #333;
     transition: background 0.3s;
 }

 .mobile-menu-close::before {
     transform: rotate(45deg);
 }

 .mobile-menu-close::after {
     transform: rotate(-45deg);
 }

 .mobile-menu-close:hover::before,
 .mobile-menu-close:hover::after {
     background: #2563eb;
 }

 .mobile-menu nav {
     padding: 80px 20px 20px;
 }

 .mobile-menu nav>ul {
     flex-direction: column;
     gap: 0;
     min-width: auto;
 }

 .mobile-menu nav>ul>li {
     width: 100%;
     text-align: left;
     border-bottom: 1px solid #e0e0e0;
 }

 .mobile-menu nav>ul>li>a {
     display: block;
     padding: 20px 0;
     font-size: 16px;
     font-weight: 700;
     position: relative;
     z-index: 1;
     text-align: left;
 }

 .mobile-menu nav li {
     text-align: left;
 }

 .mobile-menu nav a {
     text-align: left;
     -webkit-tap-highlight-color: transparent;
 }

 .accordion-item .accordion-header {
     position: relative;
     padding-right: 30px;
     color: #000;
 }

 .accordion-item .accordion-header:active,
 .accordion-item .accordion-header:focus,
 .accordion-item .accordion-header:visited {
     color: #000;
 }

 .accordion-item .accordion-header::after {
     content: '';
     position: absolute;
     right: 20px;
     top: 50%;
     transform: translateY(-50%) rotate(45deg);
     width: 8px;
     height: 8px;
     border-right: 1px solid #333;
     border-bottom: 1px solid #333;
     z-index: 10;
     pointer-events: none;
 }

 .accordion-item.active .accordion-header::after {
     transform: translateY(-50%) rotate(45deg);
 }

 .accordion-item.active>.accordion-header {
     padding: 15px 0 10px 0;
 }

 .accordion-content {
     display: none;
     padding-left: 0;
 }

 .accordion-item.active .accordion-content {
     display: block;
     padding-bottom: 0;
 }

 .accordion-content li {
     border-bottom: none;
     padding: 5px 0 10px 0;
 }

 .accordion-content a {
     font-size: 16px;
     font-weight: 400;
     padding: 0;
     color: #666;
     text-align: left;
 }

 .mobile-menu-logo {
     position: absolute;
     bottom: 50px;
     left: 0;
     right: 0;
     padding: 40px 20px 20px;
     text-align: center;
 }

 .mobile-menu-logo img {
     height: 40px;
     width: auto;
     margin: 0 auto;
 }

 .mobile-menu-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.5);
     z-index: 999;
 }

 .mobile-menu-overlay.active {
     display: block;
 }

 @media (max-width: 1200px) {
     nav ul {
         gap: 60px;
         min-width: 400px;
     }

     nav a {
         font-size: 15px;
     }
 }

 @media (max-width: 992px) {
     nav ul {
         gap: 40px;
         min-width: 350px;
     }

     nav a {
         font-size: 14px;
     }
 }

 @media (max-width: 768px) {

     header>.container>.header-content nav,
     .header-submenu-area {
         display: none;
     }

     .mobile-menu-btn {
         display: block;
     }

     .mobile-menu {
         display: block;
     }

     .header-content {
         flex-direction: row;
         justify-content: space-between;
         gap: 20px;
     }

     .logo img {
         height: 30px;
     }

     .hero {
         height: 400px;
     }

     .hero-logo {
         max-width: 250px;
         width: 70%;
     }

     .hero-content {
         bottom: 20px;
         right: 20px;
     }

     .success-stories {
         padding: 40px 0 20px 0;
     }

     .success-layout {
         flex-direction: column;
         gap: 0;
     }

     .success-intro {
         flex: 1;
         padding-top: 0;
         width: 100%;
     }

     .success-intro h2 {
         font-size: 28px;
     }

     .success-content {
         width: 100%;
     }

     .success-cards {
         flex-direction: row;
         gap: 20px;
     }

     .success-card {
         flex: 0 0 100%;
         min-width: 100%;
         height: auto;
         min-height: 280px;
     }

     .controls-wrapper {
         display: flex;
         justify-content: space-between;
         align-items: center;
         margin: 0;
     }

     .btn-more-wrapper {
         margin-top: 0;
     }

     .btn-more-link span {
         font-size: 14px;
     }

     .slider-controls {
         margin-bottom: 0;
     }

     .press-coverage {
         padding: 40px 0 20px 0;
     }

     .press-layout {
         flex-direction: column;
         gap: 0;
     }

     .press-intro {
         flex: 1;
         padding-top: 0;
         width: 100%;
     }

     .press-intro h2 {
         font-size: 28px;
         margin-bottom: 0;
     }

     .press-content {
         width: 100%;
     }

     .press-cards {
         flex-direction: row;
         gap: 20px;
     }

     .press-card {
         flex: 0 0 100%;
         min-width: 100%;
         height: auto;
         min-height: 280px;
     }

     .practice-areas {
         padding: 40px 0;
     }

     .practice-header h2 {
         font-size: 28px;
     }

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

     .practice-icon {
         width: 80px;
         height: 80px;
     }

     .practice-card h3 {
         font-size: 16px;
     }

     .consultation {
         padding: 40px 0;
     }

     .consultation-wrapper {
         flex-direction: column;
         gap: 30px;
     }

     .consultation-text {
         min-width: 100%;
         text-align: left;
     }

     .consultation-text h2 {
         font-size: 28px;
     }

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

     .mobile-br {
         display: inline;
     }

     .badge {
         margin-bottom: 0;
     }

     .consultation-form {
         width: 100%;
         padding: 30px 20px;
     }

     .form-row-horizontal {
         flex-direction: column;
         gap: 15px;
     }

     .form-row-horizontal .form-field {
         flex-direction: column;
         gap: 10px;
         align-items: stretch;
     }

     .form-row-vertical {
         flex-direction: column;
         gap: 10px;
         align-items: stretch;
     }

     .consultation-form label {
         font-size: 16px;
         padding-top: 0;
     }

     .consultation-form input,
     .consultation-form textarea {
         font-size: 16px;
         padding: 12px 15px;
     }

     .consultation-form .btn-submit {
         font-size: 16px;
         padding: 12px 25px;
     }

     footer {
         padding: 40px 0 90px;
     }

     .footer-content {
         flex-direction: column;
         align-items: flex-start;
         gap: 30px;
     }

     .footer-left,
     .footer-right {
         width: 100%;
     }

     .footer-logo img {
         height: 40px;
     }

     .footer-info p {
         font-size: 11px;
     }

     .footer-address,
     .footer-contact,
     .footer-email {
         display: block;
     }

     .footer-address::before,
     .footer-contact::before,
     .footer-email::before {
         content: none;
     }

     .floating-buttons {
         bottom: 100px;
         right: 15px;
     }

     .floating-btn.phone {
         display: none;
     }

     .floating-btn {
         width: 50px;
         height: 50px;
     }

     .floating-btn img {
         width: 28px;
         height: 28px;
     }

     .services .container {
         flex-direction: column;
     }

     .services-grid,
     .news-grid,
     .consultation-grid,
     .person-grid {
         grid-template-columns: 1fr;
     }

     .news-grid,
     .cases-grid {
         padding: 0 20px;
     }

     .person-card {
         flex-direction: column;
     }

     .person-image {
         flex: none;
         width: 100%;
     }

     .person-image img {
         width: 100%;
         height: 300px;
     }

     .field-category ul,
     .info-grid,
     .history-grid {
         grid-template-columns: 1fr;
     }

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

     .info-label {
         min-width: auto;
         font-size: 16px;
     }

     .info-value {
         font-size: 16px;
     }

     .intro-content-section {
         padding: 0;
     }

     /* 모바일에서 intro-content-section 내 컨테이너 패딩 제거 */
     .intro-content-section .container {
         padding: 0;
     }

     .field-grid-2col,
     .field-grid-3col {
         grid-template-columns: 1fr;
     }

     /* 모바일에서 호버 효과 제거 */
     .field-grid-2col .field-item:hover .field-content {
         background: transparent;
     }

     .field-grid-2col .field-subtitle-text {
         opacity: 1 !important;
         transition: none !important;
     }

     .field-grid-2col .field-item:hover .field-subtitle-text {
         opacity: 1 !important;
     }

     /* 모바일에서 field-grid-3col 마진 제거 */
     .field-grid-3col .field-item {
         margin: 0;
     }

     .team-grid {
         flex-direction: column;
         gap: 20px;
         margin-bottom: 20px;
         padding: 0 20px;
     }

     .team-card {
         width: 100%;
     }

     .team-photo img {
         width: 100%;
         height: auto;
     }

     .member-main {
         display: none;
     }

     .member-main-mobile {
         display: block;
         background: #fff;
         padding-bottom: 0;
     }

     .mobile-top-section {
         position: relative;
         background: linear-gradient(180deg, #8e9399 0%, #5a5e63 100%);
         padding: 0;
         overflow: hidden;
         display: flex;
         justify-content: flex-end;
         align-items: flex-end;
         min-height: 280px;
     }

     .mobile-logo {
         position: absolute;
         top: 50px;
         right: 30px;
         width: 50px;
         height: 50px;
         opacity: 0.4;
         z-index: 0;
     }

     .mobile-member-info {
         position: absolute;
         top: 55%;
         left: 20px;
         transform: translateY(-50%);
         z-index: 10;
         width: auto;
         text-align: left;
         margin: 0;
         padding: 0;
     }

     .mobile-member-name {
         font-family: 'Paperlogy', sans-serif;
         font-size: 24px;
         font-weight: 800;
         color: #000;
         margin: 0 0 5px 0;
         line-height: 1.2;
     }

     .mobile-member-title {
         font-family: 'Pretendard', sans-serif;
         font-size: 16px;
         font-weight: 400;
         color: #333;
         margin-left: 0;
     }

     .mobile-member-badge {
         display: inline-block;
         background: #182650;
         color: #fff;
         padding: 6px 12px;
         border-radius: 4px;
         font-size: 13px;
         font-weight: 500;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
     }

     .mobile-member-photo {
         width: 60%;
         display: block;
         margin: 0 15px 0 0;
         padding: 0;
         position: relative;
         z-index: 1;
         transform: translateY(30px);
     }

     .mobile-member-photo img {
         width: 100%;
         height: auto;
         display: block;
         margin: 0;
     }

     .mobile-member-expertise {
         background: #182650;
         padding: 12px 10px;
         display: flex;
         flex-wrap: wrap;
         gap: 8px;
         align-items: center;
         justify-content: center;
         position: relative;
         z-index: 3;
     }

     .mobile-expertise-label {
         font-size: 13px;
         color: #fff;
         margin-right: 5px;
         opacity: 0.8;
     }

     .mobile-expertise-btn {
         background: transparent;
         border: 1px solid rgba(255, 255, 255, 0.4);
         color: #fff;
         padding: 4px 12px;
         border-radius: 20px;
         font-size: 10px;
         cursor: default;
     }

     .mobile-bottom-section {
         background: #f4f4f4;
         padding: 40px 25px;
     }

     .mobile-member-career {
         list-style: none;
         padding: 0;
         margin: 0;
     }

     .mobile-member-career li {
         font-size: 14px;
         line-height: 1.8;
         color: #333;
         padding-left: 15px;
         position: relative;
         text-align: left;
         font-weight: 500;
     }

     .mobile-member-career li:before {
         content: '·';
         position: absolute;
         left: 0;
         color: #333;
     }

     .member-main-content {
         flex-direction: column;
         gap: 20px;
     }

     .member-photo {
         flex: 1;
         width: 100%;
     }

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

     .member-name {
         font-size: 28px;
         text-align: left;
     }

     .member-title {
         font-size: 18px;
     }

     .member-subtitle {
         font-size: 18px;
         text-align: left;
     }

     .member-career {
         text-align: left;
     }

     .member-career li {
         font-size: 14px;
         text-align: left;
     }

     .expertise-label {
         padding-left: 20px;
         font-size: 14px;
     }

     .expertise-btn {
         font-size: 12px;
         padding: 6px 15px;
     }

     .section-title {
         font-size: 24px;
     }

     .advisory-team-title {
         padding-left: 20px;
     }

     .section-label-text {
         font-size: 16px;
     }

     .section-desc {
         font-size: 16px;
     }

     .press-intro .section-desc {
         font-size: 16px;
     }

     .case-card {
         flex-direction: column;
         gap: 15px;
         padding: 0;
     }

     .case-card .thumbnail {
         width: 100% !important;
         height: 200px !important;
     }

     .case-card h3 {
         font-size: 16px;
     }

     .case-card p {
         font-size: 14px;
     }

     .detail-header-row h2 {
         font-size: 20px;
     }

     .detail-images-row {
         grid-template-columns: 1fr;
     }

     .detail-images-row img {
         max-width: 200px;
     }

     .detail-test-image {
         max-width: 200px;
     }

     .detail-highlight-box {
         font-size: 16px;
         padding: 15px;
     }

     .detail-body {
         font-size: 14px;
     }

     .photo-grid {
         gap: 10px;
     }

     .intro-hero img {
         height: 150px;
         object-fit: cover;
     }

     .intro-hero-text-container {
         bottom: 20px;
     }

     .hero-subtitle {
         font-size: 17px;
     }

     .hero-title {
         font-size: 20px;
     }

     .intro-tabs-section {
         padding: 40px 0 0;
     }

     .intro-tab-buttons {
         gap: 10px;
         margin-bottom: 30px;
     }

     .intro-tab-btn {
         padding: 8px;
         font-size: 14px;
         min-width: 120px;
     }

     .intro-text-overlay {
         padding: 20px 20px 33px 20px;
     }

     .intro-text h2 {
         font-size: 30px;
         margin-bottom: 15px;
     }

     .intro-text p {
         font-size: 12px;
     }

     .intro-text p strong {
         font-size: 12px;
     }

     .intro-bg-image {
         content: url('/images/intro_2x.png');
     }

     .team-specialty li {
         font-size: 12px;
     }
 }

 .news-grid,
 .cases-grid {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin: 40px 0;
 }

 .case-card {
     background: #fff;
     border-top: 1px solid #ddd;
     border-bottom: none;
     border-left: none;
     border-right: none;
     padding: 15px 0 15px 20px;
     text-decoration: none;
     display: flex;
     flex-direction: row;
     gap: 45px;
 }

 .case-card:hover {
     background: #fafafa;
 }

 .cases-grid .case-card .thumbnail {
     width: 120px;
     height: 180px;
     background: #e8e8e8;
     background-size: cover;
     background-position: center;
     flex-shrink: 0;
     border: 1px solid #ddd;
 }

 .news-grid .case-card .thumbnail {
     width: 120px;
     height: 180px;
     background: #e8e8e8;
     background-size: cover;
     background-position: center;
     flex-shrink: 0;
     border: 1px solid #ddd;
 }

 .case-card .content {
     display: flex;
     flex-direction: column;
     flex: 1;
     gap: 8px;
     justify-content: center;
 }

 .case-card .badge {
     align-self: flex-start;
 }

 .case-card h3 {
     font-size: 18px;
     color: #000;
     line-height: 1.5;
     font-weight: 500;
 }

 .case-card p {
     font-size: 15px;
     color: #666;
     line-height: 1.5;
 }

 .case-card .date {
     font-size: 14px;
     color: #999;
 }

 .badge-red {
     background: #182650;
     color: #fff;
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 13px;
     font-weight: 400;
 }

 .badge-blue {
     background: transparent;
     color: #000;
     padding: 4px 12px;
     border-radius: 20px;
     border: 1px solid #000;
     font-size: 13px;
     font-weight: 400;
 }

 .pagination {
     display: flex;
     justify-content: flex-end;
     gap: 10px;
     margin: 40px 0;
 }

 .pagination .page {
     padding: 8px 16px;
     border: 1px solid #e0e0e0;
     border-radius: 0;
     text-decoration: none;
     color: #666;
     transition: all 0.3s;
 }

 .pagination .page:hover {
     background: #f5f5f5;
 }

 .pagination .page.active {
     background: #0066cc;
     color: white;
     border-color: #0066cc;
 }

 #detail-view {
     padding: 40px 0;
 }

 #detail-main-title {
     font-size: 26px;
     font-weight: 700;
 }

 .detail-header-row {
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
     border-bottom: 1px solid #ddd;
     padding-bottom: 15px;
     margin-bottom: 20px;
 }

 .detail-header-row h2 {
     font-size: 24px;
     color: #333;
     margin: 0;
     font-weight: 500;
 }

 .detail-type-btn {
     background: white;
     border: 1px solid #ddd;
     padding: 8px 20px;
     border-radius: 20px;
     font-size: 14px;
     color: #333;
     cursor: default;
 }

 .detail-images-row {
     display: flex;
     flex-direction: row;
     align-items: flex-start;
     gap: 20px;
     margin-bottom: 30px;
 }

 .detail-images-row img {
     max-width: 300px;
     width: 100%;
     height: auto;
     border: 1px solid #e0e0e0;
     aspect-ratio: 210/297;
     object-fit: contain;
 }

 .detail-test-image {
     max-width: 300px;
     width: 100%;
     aspect-ratio: 210/297;
     background: #e8e8e8;
     border: 1px solid #e0e0e0;
 }

 .detail-highlight-box {
     background: #182650;
     color: white;
     padding: 20px;
     text-align: left;
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 30px;
 }

 .detail-body {
     font-size: 16px;
     line-height: 1.8;
     color: #333;
     margin-bottom: 60px;
 }

 .detail-body p {
     margin-bottom: 15px;
 }

 .detail-navigation {
     display: flex;
     justify-content: flex-end;
     align-items: center;
     gap: 15px;
     padding: 30px 0;
     border-top: 1px solid #ddd;
 }

 .nav-btn,
 .nav-btn-list {
     background: #D9D9D9;
     border: none;
     width: 48px;
     height: 48px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s;
 }

 .nav-btn:hover,
 .nav-btn-list:hover {
     background: #c0c0c0;
 }

 .nav-btn img,
 .nav-btn-list svg {
     width: 24px;
     height: 24px;
 }

 .nav-btn-list svg {
     color: #666;
 }

 @media (max-width: 768px) {
     #detail-view {
         padding: 20px;
     }

     .badge {
         margin-bottom: 0;
     }

     .case-card {
         flex-direction: column;
         gap: 0;
         padding: 0;
         padding-top: 20px;
     }

     .case-card .thumbnail {
         margin-bottom: 20px;
     }
 }

 .case-card .thumbnail {
     width: 100%;
     height: 200px;
 }

 .detail-images-row {
     grid-template-columns: 1fr;
 }

 }


 /* 이미지 모달 스타일 */
 .modal {
     display: none;
     position: fixed;
     z-index: 2000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.9);
     align-items: center;
     justify-content: center;
 }

 .modal-content {
     max-width: 90%;
     max-height: 90%;
     object-fit: contain;
     cursor: default;
 }

 .modal-close {
     position: absolute;
     top: 20px;
     right: 40px;
     color: #ccc;
     font-size: 40px;
     font-weight: 100;
     cursor: pointer;
     z-index: 2001;
     transform: scaleX(0.7);
 }

 .modal-close:hover {
     color: #999;
 }

 .modal-prev,
 .modal-next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background-color: rgba(255, 255, 255, 0.2);
     color: white;
     font-size: 30px;
     font-weight: bold;
     padding: 16px 20px;
     border: none;
     cursor: pointer;
     z-index: 2001;
     transition: background-color 0.3s;
 }

 .modal-prev:hover,
 .modal-next:hover {
     background-color: rgba(255, 255, 255, 0.4);
 }

 .modal-prev {
     left: 20px;
 }

 .modal-next {
     right: 20px;
 }

 @media (max-width: 768px) {

     .modal-prev,
     .modal-next {
         font-size: 20px;
         padding: 10px 14px;
     }

     .modal-close {
         font-size: 30px;
         top: 10px;
         right: 20px;
     }

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

     .practice-header h2 {
         margin-bottom: 0;
     }

     .practice-header .btn-more-wrapper {
         margin-top: 0;
         justify-content: flex-end;
     }

     .field-grid-2col .field-item {
         margin: 0;
     }

     .field-grid-2col .field-header-row {
         display: contents;
     }

     .field-grid-2col .field-item h2 {
         font-size: 18px;
         width: auto;
         order: 1;
         line-height: 1.4;
         min-height: calc(18px * 1.4 * 2);
         display: flex;
         align-items: center;
     }

     .field-grid-2col .field-item .field-divider {
         order: 2;
     }

     .field-grid-2col .field-subtitle-text {
         display: block;
         order: 3;
         font-size: 16px;
         font-weight: 600;
         margin-bottom: 15px;
         padding-left: 20px;
         opacity: 1;
     }

     .field-grid-2col .field-item li {
         font-size: 15px;
     }

     .field-grid-2col .field-item ul {
         order: 4;
         padding-left: 20px;
         margin-left: 0;
     }

     /* field-grid-3col 모바일 글자 크기 (field-grid-2col과 동일) */
     .field-grid-3col .field-item h2 {
         font-size: 18px;
     }

     .field-grid-3col .field-item li {
         font-size: 15px;
     }
 }

/* 이미지 라이트박스 스타일 */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-content {
    position: relative;
    z-index: 3001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lightbox-slider {
    width: 80%;
    height: 90%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-track {
    display: flex;
    height: 100%;
    cursor: grab;
}

.lightbox-track:active {
    cursor: grabbing;
}

.lightbox-track img {
    flex-shrink: 0;
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 3002;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 28px;
    padding: 20px 18px;
    border: none;
    cursor: pointer;
    z-index: 3002;
    transition: background-color 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 5%;
}

.lightbox-next {
    right: 5%;
}

.lightbox-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    z-index: 3002;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 20px;
        padding: 14px 12px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        font-size: 40px;
        top: 15px;
        right: 20px;
    }

    .lightbox-counter {
        bottom: 10px;
        font-size: 14px;
    }
}

/* 이미지 드래그 슬라이더 스타일 */
.detail-slider-container {
    margin-bottom: 30px;
    overflow: hidden;
}

.detail-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.detail-slider-track::-webkit-scrollbar {
    display: none;
}

.detail-slider-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.detail-slider-track .slider-item {
    flex-shrink: 0;
    width: calc(30% - 10px);
    position: relative;
    display: inline-block;
    aspect-ratio: 210 / 297;
    border: 1px solid #ddd;
}

.detail-slider-track .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    display: block;
}

.slider-zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    background: rgba(24, 38, 80, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.slider-zoom-btn:hover {
    background: rgba(24, 38, 80, 1);
}

.slider-zoom-btn svg {
    width: 21px;
    height: 21px;
}

@media (max-width: 768px) {
    .detail-slider-track {
        gap: 15px;
    }

    .detail-slider-track .slider-item {
        width: calc(30% - 10px);
    }

    .slider-zoom-btn {
        width: 36px;
        height: 36px;
        top: 8px;
        right: 8px;
    }

    .slider-zoom-btn svg {
        width: 18px;
        height: 18px;
    }
}


/* 금융사기 피해구제 배너 */
.fraud-banner {
    background: #000;
    padding: 30px 0;
    text-align: center;
}

.fraud-banner p {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    }

.fraud-banner .red {
    color: #FF0000;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .fraud-banner {
        padding: 15px 0;
    }

    .fraud-banner p {
        font-size: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .fraud-banner .text {
        font-size: 18px;
    }

    .fraud-banner .divider {
        display: none;
    }

    .fraud-banner .phone {
        font-size: 40px;
        font-weight: 900;
        line-height: 1;
    }
}

/* ============================
   정책 페이지 (이용약관/개인정보/이메일무단수집)
   ============================ */
.policy-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.policy-section .container {
    max-width: 800px;
    padding: 0 20px;
}

.policy-content {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.policy-content h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.5;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    padding-left: 22px;
    margin-bottom: 15px;
}

.policy-content li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.policy-table th,
.policy-table td {
    border: 1px solid #ddd;
    padding: 12px 14px;
    text-align: left;
}

.policy-table th {
    background: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.policy-table td {
    color: #555;
}

.policy-highlight {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.policy-highlight p {
    color: #856404;
    font-weight: 500;
    margin-bottom: 0;
}

.policy-law-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
}

.policy-law-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.policy-law-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-law-info p:last-child {
    margin-bottom: 0;
}

.policy-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.policy-confirm-btn {
    display: inline-block;
    min-width: 200px;
    padding: 14px 40px;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.policy-confirm-btn:hover {
    background: #444;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 50px 0;
    }

    .policy-content {
        padding: 30px 22px;
    }

    .policy-content h2 {
        font-size: 16px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 14px;
    }

    .policy-table {
        font-size: 13px;
    }

    .policy-table th,
    .policy-table td {
        padding: 10px;
    }
}
