:root {
    --primary-color: #8B4513;
    --secondary-color: #A0522D;
    --accent-color: #D2B48C;
    --text-color: #333;
    --light-text: #666;
    --background-color: #fff;
    --section-padding: 4rem 0;
    --card-padding: 2rem;
    --border-radius: 10px;
    --box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    --light-brown: #F5DEB3;
    --dark-brown: #654321;
    --light-gray: #f5f5f5;
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

header {
    background: var(--background-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

/* 홈페이지 초기 상태에서 헤더 스타일 */
.home-page header {
    background: transparent;
    box-shadow: none;
}

/* 스크롤 시 헤더 스타일 변경 */
.home-page.scrolled header {
    background: var(--background-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 홈페이지 초기 상태에서 헤더 숨김 - 이제 필요 없음 */
.home-page .header-hidden {
    /* transform: translateY(-100%);
    opacity: 0; */
    transform: translateY(0);
    opacity: 1;
}

/* 홈페이지 네비게이션 링크 색상 */
.home-page header .nav-links a {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.home-page header .logo-text {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* 스크롤 시 원래 색상으로 변경 */
.home-page.scrolled header .nav-links a,
.home-page.scrolled header .logo-text {
    color: var(--text-color);
    text-shadow: none;
}

.home-page.scrolled header .nav-links a:hover {
    color: var(--primary-color);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.logo img {
    height: 80px;
    margin-right: 1rem;
}

/* 홈페이지 로고 이미지에 얇은 하얀색 테두리 추가 - 제거 */
/* .home-page:not(.scrolled) header .logo img {
    border: 2px solid white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
} */

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.2rem;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-color);
}

main {
    margin-top: 0;
    padding: var(--section-padding);
}

/* 스크롤 시 메인 컨텐츠 위치 조정 */
.home-page.scrolled main {
    margin-top: 80px;
}

/* 일반 페이지 메인 컨텐츠는 항상 헤더 아래 */
body:not(.home-page) main {
    margin-top: 80px;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/banner/banner.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    transition: all 0.5s ease;
}

/* 홈페이지 전체 화면 배너 스타일 */
.home-page .hero-section.fullscreen {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 0;
    margin-top: -80px;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.banner-text {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.5;
    color: white;
    margin-bottom: 0;
    animation: fadeIn 1.5s ease-out;
}

.banner-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.home-page .hero-section.fullscreen .banner-text {
    font-size: 2.8rem;
}

@media (max-width: 768px) {
    .banner-text {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .home-page .hero-section.fullscreen .banner-text {
        font-size: 2rem;
    }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 스크롤 화살표 */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.hero-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: var(--card-padding);
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: #333;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
}

.map-container {
    text-align: center;
    margin-bottom: 30px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.location-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-info h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-info p {
    margin: 0.5rem 0;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.location-info i {
    color: #fff;
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

footer {
    background-color: #1a1a1a;
    padding: 2rem 5%;
    text-align: left;
    margin-top: 4rem;
    color: #fff;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

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

.footer-logo img {
    height: 160px;
    width: auto;
}

.footer-info {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info {
    margin-bottom: 0;
}

.contact-info p {
    margin: 0.3rem 0;
    color: #fff;
}

.social-links {
    margin-bottom: 0;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem 0 0;
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.kakao-link {
    display: inline-block;
    background: #2a2a2a;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.kakao-link:hover {
    background: #333;
    transform: translateY(-2px);
    border-color: #555;
}

@media (max-width: 768px) {
    nav {
        height: auto;
        padding: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo {
        margin-bottom: 0.5rem;
    }
    
    .logo img {
        height: 80px;
        margin-top: 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-section {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo img {
        height: 120px;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .social-links a {
        margin: 0 0.5rem;
    }
    
    .map-container {
        margin: 0 -1rem 2rem;
        border-radius: 0;
    }
    
    .location-info {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .address, .directions {
        min-width: 100%;
    }
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.intro-card {
    background: linear-gradient(135deg, #fff, #f5f5f5);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #eee;
    position: relative;
}

.intro-card:before {
    content: """;
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.2;
}

.intro-card:after {
    content: """;
    position: absolute;
    bottom: 0px;
    right: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.2;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-text {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
    text-shadow: none;
    position: relative;
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .intro-card {
        padding: 3rem 1.5rem;
    }
    
    .intro-text {
        font-size: 1.4rem;
    }
    
    .intro-card:before, .intro-card:after {
        font-size: 3rem;
    }
}

.core-values h3, .section-title {
    color: #333;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.value-card h4 {
    color: #333;
    font-size: 1.4rem;
    margin: 1rem 0;
    font-weight: 500;
    text-shadow: none;
}

.value-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: none;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.timeline-card .year {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: none;
}

.timeline-card .content h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: none;
}

.timeline-card .content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: none;
}

/* Location Section */
.location-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: #333;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.location-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2rem;
    font-weight: 300;
}

.map-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.map-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.map-link i {
    margin-right: 8px;
}

.location-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.address, .directions {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.location-section .address h3, 
.location-section .directions h3,
.location-section .parking-info h3,
.location-section .nearby-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 500;
}

.location-section .location-info p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
    font-size: 1.1rem;
}

.location-section .location-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.parking-info, .nearby-info {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.parking-info p, .nearby-info p {
    color: #666;
    margin: 0.8rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.parking-info i, .nearby-info i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .location-info {
        flex-direction: column;
    }
    
    .address, .directions {
        min-width: 100%;
    }
    
    .parking-info, .nearby-info {
        margin-top: 1rem;
        padding: 1rem;
    }
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    text-shadow: none;
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 1.4rem;
    }
}

.practice-area-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.practice-item {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #eee;
}

.practice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.practice-header {
    background: var(--primary-color);
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid #eee;
}

.practice-item h3 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.practice-content {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    background-color: #f9f9f9;
}

.practice-image {
    flex: 0 0 250px;
    margin-right: 2rem;
    align-self: flex-start;
}

.practice-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    height: 170px;
}

.practice-text {
    flex: 1;
    min-width: 300px;
}

.practice-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: none;
}

@media (max-width: 768px) {
    .practice-area-section {
        padding: 2rem 1rem;
    }
    
    .practice-item {
        padding: 0;
    }
    
    .practice-header {
        padding: 1.2rem 1.5rem;
    }
    
    .practice-item h3 {
        font-size: 1.5rem;
    }
    
    .practice-content {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .practice-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
        flex: 0 0 auto;
        width: 100%;
    }
    
    .practice-image img {
        height: auto;
    }
    
    .practice-item p {
        font-size: 1rem;
    }
}

/* Staff 페이지 스타일 */
.staff-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.staff-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #eee;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.staff-top {
    display: flex;
    gap: 4rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

/* Lawtalk 스타일 프로필 */
.lawtalk-style {
    flex: 1;
}

.profile-details {
    margin-top: 1rem;
}

.profile-section {
    margin-bottom: 1.5rem;
}

.profile-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #eee;
}

.profile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    line-height: 1.5;
    font-size: 0.95rem;
    color: #777;
}

.profile-year {
    display: inline-block;
    width: 90px;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-right: 0.8rem;
}

.profile-list li::before {
    display: none;
}

.staff-image {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-image img {
    width: 500px;
    height: 750px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.staff-info h2 {
    color: #666 !important;
    font-size: 2.2em !important;
    font-weight: 1000 !important;
    margin-bottom: 10px;
    text-align: center !important;
}

.education, .experience {
    margin-bottom: 1.5rem;
}

.education h3, .experience h3, .introduction h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.education ul, .experience ul {
    list-style: none;
    padding-left: 0.5rem;
}

.education li, .experience li {
    color: #666;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.education li:before, .experience li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.introduction {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-top: 2rem;
}

.introduction p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    text-shadow: none;
}

@media (max-width: 768px) {
    .staff-top {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .staff-image {
        flex: none;
        width: 250px;
        margin: 0 auto;
    }
    
    .staff-image img {
        width: 250px;
        height: 310px;
    }
    
    .lawtalk-style {
        width: 100%;
    }
    
    .staff-info h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .profile-section {
        margin-bottom: 1.2rem;
    }
    
    .profile-title {
        font-size: 1rem;
    }
    
    .profile-list li {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .profile-year {
        width: auto;
        margin-bottom: 0.2rem;
        margin-right: 0;
    }
    
    .introduction {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .introduction p {
        font-size: 1rem;
    }
}

/* Contact 페이지 스타일 */
.contact-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-block;
    background: #2a2a2a;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #444;
    transform: translateY(-2px);
}

.contact-button.kakao {
    background: #2a2a2a;
    color: #fff;
}

.contact-button.kakao:hover {
    background: #444;
}

.contact-form {
    background: #fff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 4rem;
    border: 1px solid #eee;
}

.contact-form h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    color: #333;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
}

.submit-button {
    background: #2a2a2a;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-button:hover {
    background: #444;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* 섹션 제목 통일 스타일 */
.section-title,
.location-section h2,
.practice-area-section h2,
.staff-section h2,
.about-section h2,
.contact-info-section h2,
.contact-form h2,
section h2 {
    color: #333;
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Noto Sans KR', sans-serif;
}

/* 기존 스타일 오버라이드 */
.location-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2rem;
    font-weight: 300;
}