@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #FF4500;
    --secondary: #8CD44A;
    --dark: #333333;
    --light: #F8F9FA;
    --accent: #36F1CD;
    --grey: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light);
}

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

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #e63e00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--primary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    left: 100%;
}

/* 헤더 스타일 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 35px;
}

nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* 히어로 섹션 */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: linear-gradient(45deg, rgba(255, 69, 0, 0.03), rgba(140, 212, 74, 0.03));
    transform: rotate(-12deg);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--grey);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 650px;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-down i {
    font-size: 26px;
    color: var(--primary);
    animation: scrollDown 2s infinite;
}

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

/* 특징 섹션 */
.features {
    background-color: white;
    position: relative;
}

.section-title {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 18px;
    color: var(--grey);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 69, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    transform: rotateY(360deg);
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--grey);
    margin-bottom: 20px;
}

/* 소개 섹션 */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 3;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

.about-image {
    flex: 2;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-caption {
    margin-top: 10px;
    font-weight: 500;
    color: var(--grey);
    text-align: center;
}

/* 서비스 섹션 */
.services-section {
    padding: 80px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.service-tab {
    padding: 15px 25px;
    border-radius: 30px;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.service-tab.active {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.2);
}

.service-tab i {
    margin-right: 8px;
}

.service-content {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: none; /* 기본적으로 숨김 */
    align-items: stretch;
}

.service-content.active {
    display: flex; /* active 클래스가 있으면 flex로 표시 */
}

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-info p {
    margin-bottom: 25px;
    color: var(--grey);
    line-height: 1.7;
}

.service-features {
    margin-top: 30px;
    margin-bottom: 30px;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-feature i {
    color: var(--primary);
    margin-right: 10px;
}


.service-image {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white; /* light 변수 대신 흰색으로 변경 */
    padding: 20px;
}

/* 칼럼 섹션 */
.blog-section {
    padding: 80px 0;
    background-color: white;
}

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

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

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-date {
    color: var(--grey);
    font-size: 12px;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* 숫자 카운터 섹션 */
.counter {
    background-image: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1600/900');
    background-size: cover;
    opacity: 0.1;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.counter-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.counter-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.counter-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 18px;
    font-weight: 500;
}

/* CTA 섹션 */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    transform: rotate(-12deg);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* 문의하기 섹션 */
.contact-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-container {
    display: flex;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    background-image: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    transform: rotate(-12deg);
    z-index: 0;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
}

.contact-info p {
    margin-bottom: 30px;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 20px;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 50px;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

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

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-footer p {
    color: var(--grey);
    font-size: 14px;
}

/* 푸터 */
footer {
    background-color: var(--dark);
    color: white;
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-about p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.social-links a i {
    color: white;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 14px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    margin-right: 15px;
    color: var(--primary);
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
}

.company-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 14px;
    color: #888;
    text-align: center;
    margin: 0 20px;
}

.copyright {
    margin-top: 20px;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* 플로팅 버튼 */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-decoration: none;
}

.floating-button:hover {
    transform: translateY(-5px);
}

.kakao-button {
    background-color: #FFE812;
    color: #3C1E1E;
}

.blog-button {
    background-color: #03CF5D;
    color: white;
}

.floating-button i {
    font-size: 24px;
}

/* 애니메이션 요소 */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 69, 0, 0.05);
}

.shape1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

.shape2 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation: float2 10s ease-in-out infinite;
}

.shape3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 20%;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(45deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, 30px) rotate(-45deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -20px) rotate(60deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* 반응형 디자인 */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 100px 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 50px auto 0;
        transform: none;
        top: auto;
        right: auto;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    
    .service-image {
        min-height: 300px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    /* 서비스 탭 스타일 수정 */
    .services-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;  /* 2열 그리드로 변경 */
        gap: 10px;
        overflow-x: visible;  /* 가로 스크롤 제거 */
        flex-wrap: wrap;
        padding-bottom: 15px;
    }
    
    .service-tab {
        flex: 1 0 45%;  /* 약 절반 너비로 설정 */
        white-space: normal;  /* 텍스트 줄바꿈 허용 */
        text-align: center;
        padding: 12px 5px;
        font-size: 14px;  /* 글자 크기 조정 */
        margin: 0;
    }
    
    .service-tab i {
        margin-right: 5px;  /* 아이콘과 텍스트 간격 조정 */
    }
    
    /* 서비스 콘텐츠 영역 스타일 조정 */
    .service-content {
        display: none;  /* 기본적으로 숨김 */
    }
    
    .service-content.active {
        display: flex;
        flex-direction: column;
        padding: 20px 15px;
    }
    
    .service-info {
        order: 2;
        width: 100%;
    }
    
    .service-image {
        order: 1;
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .service-image img {
        max-width: 80%;
        height: auto;
    }
    
    .service-features {
        margin: 15px 0;
    }
    
    .service-feature {
        margin-bottom: 10px;
    }
    
    .service-info h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .service-info p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .counter-number {
        font-size: 32px;
    }
    
    .counter-text {
        font-size: 16px;
    }
    
    .contact-form, .contact-info {
        padding: 30px;
    }
}

/* 모바일 메뉴 스타일 개선 */
.mobile-menu {
    width: 100%;
    max-width: 320px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
  
  .mobile-menu-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
  }
  
  .mobile-menu-section {
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu-section-title {
    background-color: #f8f8f8;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
  }
  
  .mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu-item {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #eee;
  }
  
  .mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
  }
  
  .mobile-menu-link:active,
  .mobile-menu-link:focus {
    background-color: #f8f8f8;
  }
  
  .mobile-menu-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu-icon.active {
    color: #fff;
    background-color: #FF5500;
    border-radius: 50%;
  }
  
  .mobile-menu-footer {
    padding: 12px 15px;
    text-align: center;
    background-color: #f8f8f8;
    color: #666;
    font-size: 13px;
    border-top: 1px solid #eee;
  }
  
  /* 모바일 햄버거 메뉴 아이콘 개선 */
  .mobile-menu-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle span:before,
  .mobile-menu-toggle span:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle span:before {
    top: -7px;
  }
  
  .mobile-menu-toggle span:after {
    bottom: -7px;
  }
  
  /* HTTPS 보안 표시 개선 */
  .site-security {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 13px;
  }
  
  .site-security-icon {
    margin-right: 6px;
    color: #4CAF50;
  }
  
  .site-security.secure {
    color: #4CAF50;
  }
  
  .site-security.not-secure {
    color: #F44336;
  }
  
  /* 모바일에서 네비게이션 메뉴 개선 */
  @media (max-width: 767px) {
    #navbar {
      top: 70px;
      right: 0;
      width: 80%;
      max-width: 320px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      overflow: hidden;
    }
    
    #navbar ul {
      background-color: #fff;
      padding: 10px 0;
    }
    
    #navbar ul li {
      border-bottom: 1px solid #eee;
    }
    
    #navbar ul li:last-child {
      border-bottom: none;
    }
    
    #navbar ul li a {
      padding: 12px 15px;
      display: block;
      color: #333;
    }
    
    #navbar ul li a.btn {
      margin: 15px;
      text-align: center;
      border-radius: 8px;
    }
  }
/* 히어로 섹션 개선을 위한 추가 CSS */
.hero-content h1 {
    font-size: 2.5rem;
    color: #d9534f;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 5px solid #d9534f;
    padding: 15px;
    margin: 20px 0;
    font-size: 1.2rem;
}

.marketing-points {
    list-style-type: none;
    padding-left: 0;
    margin: 15px 0 25px 0;
}

.marketing-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.marketing-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d9534f;
    font-weight: bold;
}

/* 기존 CSS를 오버라이드하는 스타일 */
.hero-content p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.hero-content p strong {
    font-weight: 600;
}

/* 기본 스타일 - PC 및 모바일 공통 */
.hero-content h1 {
    font-size: 2.5rem;
    color: #d9534f;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: left;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 5px solid #d9534f;
    padding: 15px;
    margin: 20px 0;
    font-size: 1.2rem;
    text-align: left;
}

.marketing-points {
    list-style-type: none;
    padding-left: 0;
    margin: 15px 0 25px 0;
    text-align: left;
}

.marketing-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.marketing-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d9534f;
    font-weight: bold;
}

.hero-content p {
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: left;
}

/* 모바일 환경에서의 스타일 조정 - 작은 화면에서도 PC와 유사하게 보이도록 설정 */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem; /* 약간만 축소하여 가독성 유지 */
        text-align: left;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .highlight-box {
        margin: 15px 0;
        text-align: left;
    }
    
    .marketing-points {
        margin: 15px 0;
    }
    
    .marketing-points li {
        text-align: left;
        padding-left: 22px; /* 약간 줄임 */
    }
    
    /* 버튼 스타일 조정 - 좌측 정렬 유지 */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
    }
    
    .hero-buttons .btn {
        margin: 5px 0;
        min-width: 200px; /* 버튼 최소 너비 설정 */
    }
    
    /* 히어로 이미지 모바일에서도 잘 보이게 */
    .hero-image {
        margin-top: 20px;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 90%;
        height: auto;
    }
    
    /* 스크롤 다운 버튼 위치 조정 */
    .scroll-down {
        bottom: 20px;
    }
}

/* 아주 작은 화면(예: 작은 스마트폰)에 대한 추가 조정 */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .highlight-box {
        font-size: 1rem;
        padding: 12px;
    }
    
    .marketing-points li {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    /* 버튼 크기 조정 */
    .hero-buttons .btn {
        min-width: 180px;
        font-size: 0.9rem;
    }
}

/* 테블릿 및 중간 크기 화면에 대한 조정 */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    /* 기본 레이아웃 유지하면서 적절한 여백 조정 */
    .container {
        padding: 0 20px;
    }
    
    /* 이미지와 텍스트의 균형 맞추기 */
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* 컨테이너 구조 조정 - PC와 모바일에서 모두 잘 보이도록 */
@media (max-width: 992px) {
    .hero .container {
        display: flex;
        flex-direction: column;
    }
    
    .hero-content {
        order: 1;
        width: 100%;
    }
    
    .hero-image {
        order: 2;
        width: 100%;
        margin-top: 20px;
    }
}

/* 모바일에서 히어로 섹션 높이 조정 */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 50px 0;
    }
}

/* 크기에 상관없이 항상 왼쪽 정렬 유지 */
.hero-content p, 
.hero-content h1, 
.hero-content h2, 
.hero-content ul {
    text-align: left !important;
}

/* 히어로 섹션 최적화 스타일 */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

.hero-content h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--dark);
    text-align: left;
}

.highlight-box {
    background-color: rgba(255, 69, 0, 0.05);
    border-left: 4px solid var(--primary);
    padding: 15px;
    margin: 20px 0;
    text-align: left;
    font-size: 18px;
}

.marketing-points {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
    text-align: left;
}

.marketing-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 16px;
    color: var(--dark);
}

.marketing-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.strong-message {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
    color: var(--dark);
}

/* 반응형 수정 */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 100px 0 60px;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
    }
    
    .hero-content {
        order: 1;
        max-width: 100%;
    }
    
    .hero-image {
        order: 2;
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 40px auto 0;
        transform: none;
        top: auto;
        right: auto;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
        text-align: left !important;
    }
    
    .hero-content h2 {
        font-size: 24px;
        text-align: left !important;
    }
    
    .highlight-box {
        font-size: 16px;
        text-align: left !important;
    }
    
    .marketing-points li {
        font-size: 15px;
        text-align: left !important;
    }
    
    .strong-message {
        font-size: 18px;
        text-align: left !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        margin-bottom: 10px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .marketing-points {
        margin: 15px 0;
    }
    
    .marketing-points li {
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .strong-message {
        font-size: 16px;
    }
}

/* 히어로 섹션 통일 스타일 - PC 디자인 기준으로 통일 */
.hero {
    min-height: auto;
    padding: 80px 0 60px;
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.9)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: block;
}

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

/* 헤드라인 스타일 - PC 디자인 기준 */
.hero-content h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
    text-align: left;
}

.hero-content h2 {
    font-size: 24px;
    color: #333;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: left;
    font-weight: 500;
}

/* 하이라이트 박스 스타일 */
.highlight-box {
    background-color: rgba(255, 69, 0, 0.05);
    border-left: 3px solid var(--primary);
    padding: 15px;
    margin: 20px 0;
    text-align: left;
    font-size: 16px;
}

/* 마케팅 포인트 불릿 스타일 - PC 디자인처럼 체크 표시 */
.marketing-points {
    list-style-type: none;
    padding-left: 0;
    margin: 25px 0;
    text-align: left;
}

.marketing-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 16px;
    color: #333;
}

.marketing-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* 본문 텍스트 스타일 */
.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
}

.strong-message {
    font-size: 18px;
    margin: 25px 0;
    font-weight: 500;
    color: #333;
    text-align: left;
}

/* 버튼 스타일 - PC 디자인 기준 */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
}

/* 반응형 조정 - 모바일에서도 PC와 동일한 디자인 유지 */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .marketing-points li {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    /* 모바일에서 버튼 배치 유지 (가로배치) */
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* 초소형 모바일 디바이스 */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .highlight-box {
        padding: 12px;
        font-size: 14px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        flex: 1 0 auto;
        text-align: center;
    }
}
@media (max-width: 768px) {
    /* marketing-illustration.svg 이미지 숨기기 */
    .hero-image,
    img[src="marketing-illustration.svg"] {
      display: none !important;
    }
    
    /* 스크롤 다운 버튼 숨기기 */
    .scroll-down {
      display: none;
    }
    
    /* 섹션 간격 조정하여 "우리는 다릅니다" 텍스트가 바로 이어지도록 */
    .hero {
      padding-bottom: 30px;
    }
  }