/* 전역 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* 네비게이션 바 */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 20px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    flex-shrink: 0;
    margin-right: 20px;
    width: auto;
    min-width: 200px;
}

.logo .home-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo .home-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* 데스크톱 화면에서의 로고 크기 */
@media (min-width: 769px) {
    .denomination {
        font-size: 1.3rem !important;
        margin-bottom: 0.3rem !important;
    }

    .logo h1 {
        font-size: 1.6rem !important;
    }

    .navbar .container {
        padding: 0.75rem 20px;
    }

    .logo {
        min-width: 300px;
    }

    .nav-links {
        margin-top: 40px;
    }
}

.denomination {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.2rem;
    font-weight: 500;
    line-height: 1.2;
}

.logo h1 {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex-grow: 1;
    margin-right: 80px;
    margin-top: 35px;
}

.nav-links li {
    margin-left: 1.2rem;
    position: relative;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
    padding: 5px 6px;
    position: relative;
    background: #fff;
    z-index: 2;
    font-size: 0.9rem;
}

/* 네비게이션 메뉴 호버 효과 */
.nav-links a:hover {
    color: #007bff;
}

/* 앵커 대상 위치 조정 */
section {
    scroll-margin-top: 100px;
}

section:before {
    content: "";
    display: block;
    height: 100px;
    margin-top: -100px;
    visibility: hidden;
    pointer-events: none;
}

/* 히어로 섹션 */
.hero {
    margin-top: 85px;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.church-image {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 50px);
    z-index: -1;
}

.church-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .container {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.church-name-en {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    font-weight: normal;
    opacity: 0.9;
}

.hero p {
    font-size: 1.5rem;
}

/* 섹션 공통 스타일 */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
    background: #fff;
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* 교회 소개 섹션 */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* 교단 소개 스타일 */
.denomination-info {
    margin-top: 3rem;
    text-align: left;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.denomination-info h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.5rem;
}

.denomination-info h3 a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.denomination-info h3 a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.denomination-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.bible-verse {
    text-align: center;
    font-style: italic;
    color: #555;
    margin-top: 2rem;
    padding: 1rem;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* 예배 안내 섹션 */
.worship-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.worship-item {
    position: relative;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.worship-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1;
}

/* 배경 이미지 블러 효과 제거 */
.worship-item::after {
    display: none;
}

.worship-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.worship-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.worship-item p {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.worship-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .worship-times {
        grid-template-columns: 1fr;
    }
    
    .worship-item {
        height: 125px;
    }
    
    .worship-item h3 {
        font-size: 1.5rem;
    }
    
    .worship-item p {
        font-size: 1.1rem;
    }
}

/* 교회 소식 섹션 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 미디어 섹션 */
.media-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.media-section {
    margin-bottom: 2rem;
}

.media-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.youtube-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .media-content {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .media-section {
        margin-bottom: 2rem;
    }
    
    .media-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

/* 지도 섹션 */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

/* 문의하기 폼 */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-email {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-email a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-email a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.submit-btn {
    background: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0056b3;
}

/* 푸터 */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
        position: relative;
        min-height: 60px;
    }

    .logo {
        padding: 5px 0;
        margin-right: 0;
        text-align: center;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 0;
        margin: 0;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }

    /* 언어 선택기 모바일 위치 조정 */
    .language-selector {
        position: absolute;
        top: 50%;
        right: 70px;
        transform: translateY(-50%);
    }

    .hero {
        margin-top: 120px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .church-name-en {
        font-size: 1.2rem;
    }

    .media-section {
        margin-bottom: 2rem;
    }
    
    .media-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

/* 언어 선택기 */
.language-selector {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 5px;
}

#langSelect {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 0.9rem;
    cursor: pointer;
}

/* 주소 정보 */
.address-info {
    margin-top: 2rem;
    text-align: center;
}

.address-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* 데스크톱에서 주소 한 줄 표시 */
@media (min-width: 769px) {
    .address-info p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        font-size: 1.2rem;
    }

    .transport-info {
        margin-bottom: 1.5rem;
    }

    .access-content {
        max-width: 1200px;
    }
}

/* 다국어 지원 */
[lang] .ja,
[lang] .ko,
[lang] .en,
[lang] .zh {
    display: none;
}

[lang="ja"] .ja {
    display: block;
}

[lang="ko"] .ko {
    display: block;
}

[lang="en"] .en {
    display: block;
}

[lang="zh"] .zh {
    display: block;
}

/* 위치 정보 섹션 */
.access-content {
    max-width: 1000px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-map {
    width: 100%;
    height: auto;
    display: block;
}

.access-info {
    padding: 1rem;
}

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

.landmarks {
    margin-bottom: 2rem;
}

.landmarks ul {
    list-style: none;
    padding: 0;
}

.landmarks li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.landmarks li:before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    margin-right: 0.5rem;
}

.address-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.address-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .access-content {
        grid-template-columns: 1fr;
    }

    .map-image {
        margin-bottom: 1rem;
    }
}

/* 교통 정보 스타일 */
.transport-info {
    margin-bottom: 2rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.transport-info h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #007bff;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.transport-item i {
    color: #007bff;
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.transport-item p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Font Awesome 아이콘 추가 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* 햄버거 메뉴 기본 스타일 */
.hamburger {
    display: none;
}

/* 모바일 스타일 */
@media screen and (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 1000;
    }

    .navbar .container {
        padding: 10px;
    }

    .logo {
        text-align: center;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .denomination {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .logo h1 {
        font-size: 1.1rem;
        margin: 0;
    }

    .language-selector {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1002;
    }

    #langSelect {
        padding: 5px;
        border: 1px solid #ddd;
        border-radius: 3px;
        min-width: 80px;
    }

    /* 네비게이션 메뉴 스타일 개선 */
    .nav-links {
        display: none;
        width: 100%;
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        padding: 80px 0 0 0;
        margin: 0;
        box-shadow: none;
        z-index: 999;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links li {
        display: block;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #eee;
        background: white;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 20px 15px;
        text-align: center;
        font-size: 1.1rem;
        color: #333;
        text-decoration: none;
        background: white;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 10px;
        left: 10px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        background: none;
        border: none;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        margin: 5px 0;
        transition: 0.4s;
    }

    /* 메뉴 활성화 시 햄버거 아이콘 애니메이션 */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero {
        margin-top: 80px;
    }
}

/* 교회 생활 섹션 */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    text-align: center;
}

.photo-item:hover {
    transform: translateY(-5px);
}

/* 모바일 화면에서의 사진 조정 */
@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .photo-item {
        aspect-ratio: 16/9;
        margin-bottom: 1rem;
    }

    /* 메인 배너 이미지 조정 */
    .church-image {
        height: 100%;
    }

    .church-image img {
        height: 100%;
        object-fit: cover;
    }

    /* 예배 시간 섹션 이미지 조정 */
    .worship-item {
        height: auto;
        aspect-ratio: 16/9;
    }
}

/* 7대 비전 섹션 */
.vision-section {
    margin: 4rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.vision-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #555;
}

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

.vision-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.vision-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(100, 181, 246, 0.2);
    color: #1976d2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.vision-item h4 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    padding-right: 2rem;
}

.vision-item p {
    color: #777;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* 각 비전 아이템마다 다른 연한 배경색 */
.vision-item:nth-child(1) {
    background: linear-gradient(to bottom right, #fff, #e3f2fd);
}

.vision-item:nth-child(2) {
    background: linear-gradient(to bottom right, #fff, #f3e5f5);
}

.vision-item:nth-child(3) {
    background: linear-gradient(to bottom right, #fff, #e8f5e9);
}

.vision-item:nth-child(4) {
    background: linear-gradient(to bottom right, #fff, #fff3e0);
}

.vision-item:nth-child(5) {
    background: linear-gradient(to bottom right, #fff, #e1f5fe);
}

.vision-item:nth-child(6) {
    background: linear-gradient(to bottom right, #fff, #f1f8e9);
}

.vision-item:nth-child(7) {
    background: linear-gradient(to bottom right, #fff, #fce4ec);
}

@media (max-width: 768px) {
    .vision-section {
        padding: 1rem;
        margin: 2rem 0;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vision-item {
        padding: 1.5rem;
    }
}

/* 기도원 사역 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 1000px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

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

/* 슬라이더 스타일 */
.prayer-house-slider {
    position: relative;
    margin: 30px 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    text-align: center;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

.slider-button:hover {
    background: rgba(0,0,0,0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #717171;
}

.prayer-house-vision {
    cursor: pointer;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .slide img {
        height: 300px;
    }

    .slider-button {
        padding: 10px;
        font-size: 16px;
    }
}

/* 문의하기 섹션 새 스타일 */
.contact-info {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.contact-method {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

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

.contact-link {
    color: #007bff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid #007bff;
    border-radius: 5px;
    margin-top: 1rem;
}

.contact-link:hover {
    background: #007bff;
    color: #fff;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
} 