* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.service-header {
    background: linear-gradient(135deg, #dc2626 0%, #7c2d12 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-header-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-header-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    border: none;
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ea580c);
}

.highlight-content {
    position: relative;
    z-index: 1;
}

.highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #92400e;
    margin: 0;
    font-weight: 600;
}

.highlight-text strong {
    color: #dc2626;
    font-weight: 800;
}

.service-section {
    margin: 80px 0;
}

.service-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.service-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ea580c);
    border-radius: 2px;
}

.service-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-text strong {
    color: #dc2626;
    font-weight: 700;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-feature {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.service-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ea580c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-feature:hover::before {
    transform: scaleX(1);
}

.service-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
}

.service-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #7c2d12 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.service-feature-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    text-align: center;
}

.service-feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    text-align: center;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-table thead {
    background: linear-gradient(135deg, #dc2626 0%, #7c2d12 100%);
    color: white;
}

.service-table th,
.service-table td {
    padding: 20px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.service-table th {
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-table td {
    font-size: 0.95rem;
    color: #374151;
}

.service-table tr:hover {
    background: rgba(220, 38, 38, 0.02);
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-step {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 4px solid #dc2626;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626 0%, #7c2d12 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.service-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

.service-cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-cta h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #dc2626 0%, #7c2d12 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    color: white;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
}

.faq-question.active {
    background: linear-gradient(135deg, #dc2626 0%, #7c2d12 100%);
    color: white;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer.active {
    padding: 30px;
    max-height: 2000px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #dc2626;
    font-weight: 700;
}

/* 헤더 고정 스타일 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    min-height: 60px;
}

.logo {
    text-decoration: none;
    margin: 0;
    flex: 1;
}

.logo svg {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    flex: 0 0 auto;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #3498db;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* 햄버거 메뉴 - 모바일에서 보이도록 수정 */


/* 메인 콘텐츠 */
.main-content {
    margin-top: 0;
}

/* 슬라이더 섹션 */
.slider-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide video,
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

.slide-content h3 {
    font-size: 2rem;
    text-align: center;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease 0.5s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hamburger-wrapper {
    display: none;
    flex: 0 0 auto;
    position: relative;
}

.hamburger {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hamburger:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.hamburger:hover::before {
    left: 100%;
}

.hamburger:active {
    transform: scale(0.95);
}

/* 햄버거 라인 스타일 */
.hamburger-line {
    width: 22px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hamburger-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger:hover .hamburger-line::before {
    opacity: 1;
}

/* 햄버거 텍스트 */
.hamburger-text {
    position: absolute;
    bottom: -18px;
    font-size: 0.6rem;
    color: #667eea;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hamburger:hover .hamburger-text {
    color: #764ba2;
    transform: translateY(-2px);
}

/* 활성화 상태 애니메이션 */
.hamburger.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    transform: rotate(180deg);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
    width: 26px;
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
    width: 26px;
}

.hamburger.active .hamburger-text {
    opacity: 0;
    transform: translateY(10px);
}

/* 펄스 효과 */
.hamburger::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.hamburger:active::after {
    width: 60px;
    height: 60px;
}
/* 슬라이더 인디케이터 */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: white;
}

/* 선택 이유 섹션 */
.reasons-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.reasons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reasons-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
    font-weight: bold;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.reason-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: normal;
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: bold;
}

.reason-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* 교통사고 형사 전문 팀 섹션 */
.traffic-expert-section {
    padding: 100px 0;
    background-image: url('gg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.traffic-expert-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 60, 114, 0.6) 100%);
    z-index: 0;
}

.traffic-expert-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.traffic-expert-content {
    text-align: center;
}

.traffic-expert-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
}

.traffic-expert-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.traffic-expert-main-text {
    margin-bottom: 60px;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.traffic-expert-main-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.3px;
}

.traffic-expert-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffd700;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.8));
    font-weight: bold;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.2px;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* 바로가기 버튼 스타일 */
.traffic-expert-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.expert-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 140px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-text {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.expert-btn.secondary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.expert-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
    background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
}

.expert-btn.tertiary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.expert-btn.tertiary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* 의뢰인 지원 섹션 */
.client-support-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
	background-image: url('cc1.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.client-support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(233, 236, 239, 0.8) 100%);*/
    z-index: 0;
}

.client-support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.client-support-content {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.support-main-message {
    text-align: center;
    margin-bottom: 40px;
}

.support-title {
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.support-subtitle {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.support-alert-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.alert-icon {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.alert-content h4 {
    font-size: 1.4rem;
    color: #ffc107;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.alert-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.support-warning {
    background: rgba(220, 53, 69, 0.15);
    border: 2px solid #dc3545;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.warning-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.support-action {
    margin-bottom: 40px;
}

.action-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step-item {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.step-content h5 {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.step-content p {
    font-size: 0.95rem;
    color: #e8f4f8;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* 실적 통계 섹션 */
.stats-section {
    background: #2c3e50;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.stat-number.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 대표변호사 소개 섹션 */
.lawyer-intro-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.lawyer-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lawyer-intro-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.lawyer-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    min-height: 500px;
}

.lawyer-image {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.lawyer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lawyer-info {
    padding: 60px 50px;
}

.lawyer-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.4;
}

.lawyer-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.lawyer-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.lawyer-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.lawyer-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.lawyer-feature .feature-icon {
    font-size: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.lawyer-feature .feature-text h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.lawyer-feature .feature-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.lawyer-contact {
    text-align: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0a96fa 0%, #0876d9 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    
    background: linear-gradient(135deg, #0876d9 0%, #0654a7 100%);
}

/* 플로팅 메뉴 */
.floating-menu {
    position: fixed;
    right: 25px;
    top: 80%; /* 60%에서 90%로 변경 - 화면 하단 근처로 이동 */
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    border: 1px solid #e8ecef;
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.floating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 75px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding: 8px 0px;
}

.floating-btn:last-child {
    border-bottom: none;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #448fff 0%, #2a7fff 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    z-index: -1;
}

.floating-btn:hover::before {
    width: 90%;
	margin-left:4px;
}

.floating-btn:hover {
    color: white;
    transform: translateX(-5px);
}

/* 아이콘 스타일 */
.floating-btn-icon {
    width: 26px;
    height: 26px;
    background-color: #2c3e50;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    margin-bottom: 6px;
    transition: all 0.4s ease;
}

.floating-btn:hover .floating-btn-icon {
    background-color: white;
    transform: scale(1.1);
}

/* 텍스트 스타일 */
.floating-btn-text {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    color: inherit;
    letter-spacing: -0.3px;
}

/* 전화번호 스타일 */
.floating-btn-phone {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.floating-btn:hover .floating-btn-phone {
    color: white;
}

/* 각 버튼별 아이콘 */
.floating-btn.phone .floating-btn-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.floating-btn.consultation .floating-btn-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h3l3 3 3-3h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 11H7v-2h6v2zm2-4H7V8h8v2z'/%3E%3C/svg%3E");
}

.floating-btn.location .floating-btn-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

/* TOP 버튼 특별 스타일 */
.floating-btn.top {
    background: #1a3c6e;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    margin: 15px auto 5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(26, 60, 110, 0.3);
    font-family: inherit;
}

.floating-btn.top::before {
    display: none;
}

.floating-btn.top:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 60, 110, 0.4);
}

.floating-btn.top .floating-btn-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

/* 하단 고정 상담 영역 */
.consultation-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px 0;
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 2rem;
}
/*
.consultation-image {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}
*/
/*
.consultation-image {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px dashed rgba(255, 255, 255, 0.3);
	color:white;
}
*/

.consultation-image {
    flex-shrink: 0;
    width: 180px;
    height: 90px;
   background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    
   
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.consultation-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 17px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

.consultation-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
}

@keyframes borderGlow {
    0%, 100% { 
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    }
    25% { 
        background: linear-gradient(45deg, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    }
    50% { 
        background: linear-gradient(45deg, #45b7d1, #96ceb4, #ff6b6b, #4ecdc4);
    }
    75% { 
        background: linear-gradient(45deg, #96ceb4, #ff6b6b, #4ecdc4, #45b7d1);
    }
}

/*****************************************************/




.consultation-form {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group select,
.form-group input {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    width: 150px;
}

.form-group label {
    font-size: 12px;
    opacity: 0.9;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.consultation-btn {
    background: linear-gradient(135deg, #1a3c6e 0%, #0066cc 100%); /* 남청색 그라데이션 */
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 60, 110, 0.3); /* 남청색 그림자 */
    background: linear-gradient(135deg, #0066cc 0%, #1a3c6e 100%); /* 호버시 그라데이션 반전 */
}


/* 푸터 스타일 */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 40px 40px;
    margin-top: 0px;
}

.footer-top {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ecf0f1;
    font-weight: bold;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.footer-about p {
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.footer-contact .footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

/* 아이콘 대체 스타일 */
.icon-building::before,
.icon-map::before,
.icon-phone::before,
.icon-fax::before,
.icon-email::before,
.icon-scale::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #448fff;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.icon-building::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M4 2H2v20h20V2H4zm16 18H4V4h16v16zM6 6h2v2H6V6zm0 4h2v2H6v-2zm0 4h2v2H6v-2zm4-8h2v2h-2V6zm0 4h2v2h-2v-2zm0 4h2v2h-2v-2zm4-8h2v2h-2V6zm0 4h2v2h-2v-2zm0 4h2v2h-2v-2z'/%3E%3C/svg%3E");
}

.icon-map::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.icon-phone::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.icon-fax::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 12.5h-1.5v-2h1.5v2zm0-3h-1.5v-2h1.5v2zm3 1.5h-1.5v-2h1.5v2zm0-3h-1.5v-2h1.5v2z'/%3E%3C/svg%3E");
}

.icon-email::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.icon-scale::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}
/* 스크롤바 스타일 */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #3498db; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2980b9; }

/* 반응형 디자인 */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .lawyer-profile {
        grid-template-columns: 1fr;
    }
    
    .lawyer-image {
        min-height: 500px;
    }
    
    .lawyer-info {
        padding: 40px 30px;
    }
    
    .lawyer-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
 .service-header {
        padding: 100px 0 60px;
    }
    
    .service-header-title {
        font-size: 2.5rem;
    }
    
    .service-header-subtitle {
        font-size: 1.2rem;
    }
    
    .service-content {
        padding: 0 1rem;
    }
    
    .highlight-box {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
    
    .service-section {
        margin: 60px 0;
    }
    
    .service-section-title {
        font-size: 2rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-feature {
        padding: 30px 20px;
    }
    
    .service-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-table {
        font-size: 0.9rem;
    }
    
    .service-table th,
    .service-table td {
        padding: 15px 10px;
    }
    
    .service-cta {
        padding: 40px 20px;
        margin: 60px 0;
    }
    
    .service-cta h3 {
        font-size: 1.8rem;
    }
    
    .service-cta p {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
    /* 헤더 모바일 스타일 */
    .nav-container {
        padding: 0.5rem 1rem;
        min-height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex: 1;
        max-width: calc(100% - 60px); /* 햄버거 공간 확보 */
    }

    .logo svg {
        height: 35px; /* 모바일에서 로고 크기 약간 축소 */
        max-width: 100%;
    }

    

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    /* 슬라이더 모바일 */
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }

    /* 섹션들 모바일 */
    .reasons-section, .traffic-expert-section, .client-support-section, .lawyer-intro-section {
        padding: 60px 0;
    }
    
    .reasons-title {
        font-size: 2rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reason-card {
        padding: 30px 20px;
    }

    /* 교통사고 전문팀 모바일 */
    .traffic-expert-section {
        background-attachment: scroll;
    }
    
    .traffic-expert-title {
        font-size: 2.0rem;
        margin-bottom: 1.5rem;
    }
    
    .traffic-expert-main-text {
        padding: 10px;
    }
    
    .traffic-expert-main-text p {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .traffic-expert-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }

    .traffic-expert-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
    }
    
    .expert-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* 의뢰인 지원 섹션 모바일 */
    .client-support-content {
        padding: 30px 20px;
    }
    
    .support-title {
        font-size: 1.6rem;
    }
    
    .support-subtitle {
        font-size: 1.1rem;
    }
    
    .support-alert-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .action-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-item {
        padding: 20px 15px;
    }

    /* 통계 섹션 모바일 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* 대표변호사 섹션 모바일 */
    .lawyer-info {
        padding: 30px 20px;
    }
    
    .lawyer-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .lawyer-features {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .lawyer-feature {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .lawyer-feature:hover {
        transform: translateY(-5px);
    }
    
    .contact-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* 플로팅 메뉴 모바일 */
   .floating-menu {
        right: 15px;
        top: 80%; /* 모바일에서도 60%로 설정 */
        padding: 15px 0;
        min-width: 70px;
    }
    
    
    .floating-btn {
        width: 70px;
        height: 65px;
        padding: 6px 0;
    }
    
    .floating-btn-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 4px;
    }
    
    .floating-btn-text {
        font-size: 0.65rem;
    }
    
    .floating-btn-phone {
        font-size: 0.7rem;
    }
    
    .floating-btn.top {
        width: 50px;
        height: 50px;
        margin: 10px auto 0;
    }
    
    .floating-btn.top .floating-btn-text {
        font-size: 0.75rem;
    }

    /* 상담 영역 모바일 최적화 */
    .consultation-fixed {
        padding: 15px 0;
    }
    
    .consultation-container {
        flex-direction: column;
        gap: 0;
        padding: 0 15px;
    }
    
    .consultation-image {
        display: none; /* 모바일에서 이미지 영역 숨김 */
    }
    
    .consultation-form {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 15px;
        align-items: end;
    }
    
    /* 상담종류 선택 숨기기 */
    .consultation-form .form-group:first-child {
        display: none;
    }
    
    .consultation-form .form-group {
        margin: 0;
    }
    
    .consultation-form .form-group select,
    .consultation-form .form-group input {
        width: 100%;
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .consultation-form .form-group label {
        font-size: 11px;
        margin-bottom: 3px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .checkbox-group {
        grid-column: 1 / -1;
        justify-content: center;
        font-size: 11px;
        margin-top: 5px;
        gap: 6px;
    }
    
    .checkbox-group input {
        transform: scale(0.9);
    }
    
    .checkbox-group label {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .consultation-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 20px;
        margin-top: 10px;
    }
    
    .main-content {
        margin-bottom: 140px; /* 상담 영역 높이만큼 여백 */
    }

    /* 푸터 모바일 */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-title {
        font-size: 1.3rem;
    }
}

/* 더 작은 모바일 화면 (480px 이하) */
@media (max-width: 480px) {
 .hamburger {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .hamburger-line {
        width: 18px;
        height: 2px;
    }

    .hamburger-text {
        font-size: 0.55rem;
        bottom: -16px;
    }
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content h3 {
        font-size: 1.3rem;
    }

    .consultation-fixed {
        padding: 8px 0 !important;
    }
    
    .consultation-container {
        padding: 0 10px !important;
    }
    
    .consultation-form {
        display: none !important;
    }
    
    .consultation-form .form-group {
        display: none !important;
    }
    
    .consultation-btn {
        width: 70% !important;
        max-width: 250px !important;
        padding: 10px 15px !important;
        font-size: 13px !important;
        background: transparent !important;
        border: 2px solid #ffffff !important;
        color: #ffffff !important;
        font-weight: bold !important;
    }
    
    .consultation-btn:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .main-content {
        margin-bottom: 60px !important;
    }
}



/* head.php의 <style> 섹션에서 다음 부분을 수정하세요 */

/* 햄버거 메뉴 라인 색상 통일 - 항상 흰색으로 고정 */
.header .hamburger-line {
    background: white !important;
}

.header.scrolled .hamburger-line {
    background: #333 !important; /* 스크롤시에만 검정색 */
}

/* 햄버거 텍스트 색상 통일 */
.header .hamburger-text {
    color: white !important;
    opacity: 1 !important;
}

.header.scrolled .hamburger-text {
    color: #666 !important;
    opacity: 1 !important;
}

/* 모바일에서 햅버거 버튼 배경과 효과 통일 */
@media (max-width: 768px) {
    .hamburger {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    }
    
    .header.scrolled .hamburger {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    }
    
    /* 햄버거 라인 색상 모바일에서 항상 흰색 */
    .hamburger-line {
        background: white !important;
    }
    
    .header.scrolled .hamburger-line {
        background: white !important; /* 모바일에서는 항상 흰색 유지 */
    }
    
    /* 햄버거 텍스트 모바일에서 항상 일관된 색상 */
    .hamburger-text {
        color: white !important;
        opacity: 1 !important;
    }
    
    .header.scrolled .hamburger-text {
        color: white !important; /* 모바일에서는 항상 흰색 유지 */
        opacity: 1 !important;
    }
}