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

:root {
    --primary-color: #F26B6B;
    --primary-dark: #E05050;
    --primary-light: #F48989;
    --secondary-color: #F29B9B;
    --accent-color: #F26B6B;
    --text-dark: #333333;
    --text-light: #555555;
    --text-lighter: #777777;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 12px;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    background: linear-gradient(135deg, rgba(242, 107, 107, 0.05) 0%, rgba(242, 155, 155, 0.05) 100%);
    z-index: -1;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
}

a:hover {
    color: var(--primary-dark);
}

/* 헤더 스타일 */
.main-site-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.header-logo {
    display: none;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

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

.main-nav a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-highlight {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* 히어로 섹션 스타일 */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0 80px;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(242, 107, 107, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.text-highlight {
    color: var(--primary-color);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(242, 107, 107, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    margin-top: 30px;
}

.primary-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-medium);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
    text-decoration: none;
}

.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, rgba(52, 211, 153, 0) 70%);
    bottom: -50px;
    right: 30%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0) 70%);
    bottom: 20%;
    right: 10%;
}

/* 섹션 공통 스타일 */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* 기능 섹션 스타일 */
.features-section {
    background-color: var(--background-white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    padding: 80px 40px;
    margin: 40px 0;
}

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

.feature-card {
    background-color: var(--background-light);
    border-radius: var(--radius-medium);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(242, 107, 107, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 24px;
    font-size: 26px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* 혜택 섹션 스타일 */
.benefits-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.benefit-item {
    position: relative;
    padding: 20px 0;
}

.benefit-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(242, 107, 107, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.benefit-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 16px;
    color: var(--text-dark);
    position: relative;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
}

/* FAQ 섹션 스타일 */
.faq-section {
    background-color: var(--background-white);
    border-radius: var(--radius-large);
    padding: 80px 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
}

.faq-question {
    background-color: var(--background-light);
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(242, 107, 107, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.toggle-icon {
    font-size: 22px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: var(--background-white);
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* 문의하기 섹션 스타일 */
.contact-section {
    padding: 80px 0;
}

.contact-card {
    background-color: var(--background-white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-method i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(242, 107, 107, 0.1);
}

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

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-medium);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: block;
    margin-left: auto;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* 푸터 스타일 */
.site-footer {
    background-color: var(--background-white);
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 80px;
    height: auto;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-links a {
    margin: 0 15px 10px;
    color: var(--text-light);
    font-size: 15px;
}

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

.footer-info {
    text-align: center;
    color: var(--text-lighter);
    font-size: 14px;
}

.footer-info p {
    margin-bottom: 8px;
}

/* 개인정보 처리방침 페이지 스타일 */
.privacy-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
}

.privacy-header img.logo {
    max-width: 80px;
    margin-bottom: 15px;
}

.back-link {
    position: absolute;
    left: 0;
    top: 20px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    font-size: 15px;
}

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

.policy-intro {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.policy-section p, 
.policy-section ul {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.policy-section ul {
    margin-left: 20px;
}

.policy-section li {
    margin-bottom: 10px;
}

.note {
    font-size: 14px;
    color: var(--text-lighter);
    font-style: italic;
    margin-top: 10px;
}

/* 모바일 반응형 스타일 */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--background-white);
        box-shadow: var(--shadow-medium);
        padding: 20px;
        display: none;
    }
    
    .main-nav.show-mobile-menu {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 0 0 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .features-section,
    .faq-section {
        padding: 60px 20px;
    }
    
    .benefit-item {
        padding-left: 0;
    }
    
    .benefit-number {
        position: relative;
        margin-bottom: 10px;
    }
    
    .benefit-item h3 {
        margin-top: 10px;
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
} 
