/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f5;
}

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

/* 헤더 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.member-btn-container {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
}

.denomination-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
}

.church-name {
    display: flex;
    flex-direction: column;
}

.denomination {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.church-name h1 {
    color: #8B4513;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8B4513;
}

/* 교인 전용 버튼 */
.member-btn {
    background-color: white;
    color: #8B4513;
    border: 2px solid #8B4513;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.15);
}

.member-btn::before {
    content: '🔒';
    font-size: 1rem;
}

.member-btn:hover {
    background-color: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
}

.member-btn.unlocked {
    background-color: #228B22;
    color: white;
    border-color: #228B22;
}

.member-btn.unlocked::before {
    content: '🔓';
}

.member-btn.unlocked:hover {
    background-color: #32CD32;
    border-color: #32CD32;
    color: white;
}

/* 메가 메뉴 */
.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    cursor: pointer;
}

.has-mega-menu .nav-link::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.3s;
}

.has-mega-menu:hover .nav-link::after {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: auto;
    max-width: 1200px;
    min-width: 800px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px;
}

/* 3열 메가 메뉴 */
.mega-menu-content.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 5열 메가 메뉴 */
.mega-menu-content.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    color: #1e5a8a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1e5a8a;
}

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

.mega-menu-list li {
    margin-bottom: 8px;
}

.mega-menu-list a {
    color: #555;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.2s;
    padding: 5px 10px;
    border-radius: 5px;
    display: block;
}

.mega-menu-list a:hover {
    color: #1e5a8a;
    background-color: #f0f7ff;
    padding-left: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* 메인 배너 */
.hero {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    text-align: center;
    padding: 150px 20px 100px;
    margin-top: 70px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #8B4513;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* 섹션 공통 */
.section {
    padding: 80px 20px;
}

.section h2 {
    text-align: center;
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* 예배 시간표 */
.worship-section {
    background-color: #fff5e6;
}

.worship-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.worship-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
}

.worship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.worship-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.worship-card h3 {
    color: #8B4513;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.worship-card .time {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.worship-card .day {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

/* 공동체고백 섹션 */
.confession-section {
    background-color: #faf8f5;
}

.confession-section .subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.confession-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.core-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.value-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #8B4513;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-subtitle {
    color: #1e5a8a;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.value-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.welcome-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    border-radius: 15px;
    padding: 40px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
}

.denomination-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.denomination-label {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.denomination-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.welcome-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

/* 교인 전용 섹션 */
.member-section {
    background-color: #f0f7ff;
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.member-section.unlocked {
    display: block !important;
    visibility: visible;
    opacity: 1;
}

.member-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.member-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.member-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.member-card h3 {
    color: #8B4513;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.member-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.member-link {
    display: inline-block;
    background-color: #8B4513;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.member-link:hover {
    background-color: #D2691E;
}

/* 비밀번호 모달 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    color: #8B4513;
    font-size: 1.2rem;
}

.close-modal {
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

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

.modal-body {
    padding: 25px;
    text-align: center;
}

.modal-body p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

#passwordInput {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 5px;
    transition: border-color 0.3s;
}

#passwordInput:focus {
    outline: none;
    border-color: #8B4513;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-confirm, .btn-close {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-confirm {
    background-color: #8B4513;
    color: white;
}

.btn-confirm:hover {
    background-color: #D2691E;
}

.btn-close {
    background-color: #f0f0f0;
    color: #333;
}

.btn-close:hover {
    background-color: #e0e0e0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* 설교 영상 */
.sermon-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.video-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    background-color: #ddd;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card h3 {
    color: #8B4513;
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.video-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
}

/* 주일예배 섹션 */
.sunday-service-section {
    background-color: #faf8f5;
}

.sermon-content {
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 비율 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sermon-info-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.sermon-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.sermon-header h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.church-name {
    display: inline-block;
    background-color: #8B4513;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.sermon-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sermon-bible {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #8B4513;
}

.bible-label {
    background-color: #8B4513;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.bible-text {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.sermon-description p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

/* 오시는 길 */
.location-section {
    background-color: #fff5e6;
}

.location-info {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.address, .transport {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.address h3, .transport h3 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.address p, .transport p {
    color: #555;
    margin-bottom: 10px;
}

.transport strong {
    color: #8B4513;
}

/* 푸터 */
footer {
    background-color: #8B4513;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin-bottom: 10px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        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: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    header .container {
        justify-content: space-between;
    }

    .nav-menu {
        gap: 20px;
    }

    .member-btn {
        display: none;
    }

    .member-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
    }

    .member-btn-container {
        position: static;
        margin-left: 15px;
    }

    .member-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .member-btn::before {
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
    }

    .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, -6px);
    }

    .logo {
        gap: 10px;
        position: static;
    }

    .denomination-mark {
        width: 35px;
        height: 35px;
    }

    .denomination {
        font-size: 0.65rem;
    }

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

    /* 메가 메뉴 모바일 스타일 */
    .mega-menu {
        position: static;
        width: 100%;
        max-width: none;
        min-width: auto;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: #f9f9f9;
    }

    .nav-item.active .mega-menu {
        display: block;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .mega-menu-content.cols-3 {
        grid-template-columns: 1fr;
    }

    .mega-menu-content.cols-5 {
        grid-template-columns: 1fr;
    }

    .has-mega-menu .nav-link::after {
        transform: rotate(0deg);
    }

    .nav-item.active .nav-link::after {
        transform: rotate(180deg);
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .worship-schedule {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .worship-card {
        padding: 25px 20px;
    }

    .worship-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .worship-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .worship-card .time {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .worship-card .day {
        font-size: 0.9rem;
    }

    .confession-section .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .confession-intro p {
        font-size: 1rem;
        padding: 20px;
    }

    .core-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-subtitle {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .value-description {
        font-size: 0.9rem;
    }

    .welcome-box {
        padding: 30px 25px;
    }

    .denomination-info {
        flex-direction: column;
        gap: 10px;
    }

    .welcome-message p {
        font-size: 1rem;
    }

    .sermon-videos {
        grid-template-columns: 1fr;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .sermon-content {
        padding: 0 15px;
    }

    .sermon-info-card {
        padding: 30px 25px;
    }

    .sermon-header h3 {
        font-size: 1.5rem;
    }

    .sermon-bible {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .bible-text {
        font-size: 1rem;
    }

    .sermon-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 8px;
    }

    .denomination-mark {
        width: 30px;
        height: 30px;
    }

    .denomination {
        font-size: 0.6rem;
    }

    .church-name h1 {
        font-size: 1rem;
    }

    .mega-menu-content {
        padding: 15px;
    }

    .mega-menu-title {
        font-size: 1rem;
    }

    .mega-menu-list a {
        font-size: 0.9rem;
    }

    .mega-menu-content.cols-5 {
        grid-template-columns: 1fr;
    }

    .worship-schedule {
        gap: 12px;
    }

    .worship-card {
        padding: 20px 15px;
    }

    .worship-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .worship-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .worship-card .time {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .worship-card .day {
        font-size: 0.85rem;
    }

    .confession-section .subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .confession-intro p {
        font-size: 0.95rem;
        padding: 15px;
    }

    .value-card {
        padding: 20px 15px;
    }

    .value-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-subtitle {
        font-size: 0.8rem;
    }

    .value-description {
        font-size: 0.85rem;
    }

    .welcome-box {
        padding: 25px 20px;
    }

    .denomination-label {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .denomination-name {
        font-size: 1rem;
    }

    .welcome-message p {
        font-size: 0.95rem;
    }

    .member-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .member-card {
        padding: 20px 15px;
    }

    .member-icon {
        font-size: 2.5rem;
    }

    .member-card h3 {
        font-size: 1.1rem;
    }

    .member-card p {
        font-size: 0.9rem;
    }

    .sermon-info-card {
        padding: 25px 20px;
    }

    .sermon-header h3 {
        font-size: 1.3rem;
    }

    .church-name {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .sermon-bible {
        padding: 15px;
    }

    .bible-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .bible-text {
        font-size: 0.95rem;
    }

    .sermon-description p {
        font-size: 0.95rem;
    }

    .hero {
        padding: 120px 15px 80px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section {
        padding: 60px 15px;
    }
}
