/* 기본 스타일 및 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333 !important;
    background-color: #fff !important;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 타이포그래피 */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
    color: #1a1a1a !important;
}

h1 {
    font-size: 3.5rem !important;
}

h2 {
    font-size: 2.5rem !important;
}

h3 {
    font-size: 1.8rem !important;
}

p {
    margin-bottom: 20px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #c9a77c;
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c9a77c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #b08e69;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #c9a77c;
    color: #c9a77c;
}

.btn-outline:hover {
    background-color: #c9a77c;
    color: #fff;
}

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

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

.logo a {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c9a77c;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 히어로 섹션 */
.hero {
    height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: 80px;
    padding: 0;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 2.8rem !important;
    margin-bottom: 20px !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    white-space: nowrap !important;
}

.hero h2 {
    font-size: 2.5rem !important;
    margin-bottom: 30px !important;
    color: #fff !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
}

.hero p {
    font-size: 1.2rem !important;
    margin-bottom: 40px !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.6 !important;
}

/* 서비스 하이라이트 섹션 */
.services-highlight {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.service-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-card .icon {
    font-size: 2.5rem;
    color: #c9a77c;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* 회사 소개 미리보기 섹션 */
.about-preview {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

/* 고객 후기 섹션 */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.quote {
    position: relative;
    padding: 20px 0;
}

.quote i {
    color: #c9a77c;
    font-size: 1.5rem;
}

.quote i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
}

.quote i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.quote p {
    padding: 0 30px;
    font-style: italic;
}

.client {
    margin-top: 20px;
    text-align: right;
}

.client .name {
    font-weight: 600;
    margin-bottom: 5px;
}

.client .company {
    color: #777;
    font-size: 0.9rem;
}

/* CTA 섹션 */
.cta {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff !important;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* 푸터 스타일 */
footer {
    background-color: #222;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo a {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.footer-logo p {
    margin-top: 10px;
    color: #999;
}

.footer-links h3,
.footer-contact h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-links ul li a:hover {
    color: #c9a77c;
}

.footer-contact p {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

.social-icons a:hover {
    background-color: #c9a77c;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.9rem;
}

/* 페이지 배너 */
.page-banner {
    height: 300px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/page-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-banner h1 {
    color: #fff !important;
    margin-bottom: 15px !important;
    margin-top: 10px !important;
    font-size: 2.8rem !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
}

/* 회사 소개 페이지 스타일 */
.about-section,
.ceo-section {
    padding: 80px 0;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ceo-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

blockquote {
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #c9a77c;
    font-style: italic;
    margin: 30px 0;
}

.mission-vision {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission,
.vision,
.values {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mission .icon,
.vision .icon,
.values .icon {
    font-size: 2.5rem;
    color: #c9a77c;
    margin-bottom: 20px;
}

.values ul {
    text-align: left;
    padding-left: 20px;
    list-style-type: disc;
}

.values ul li {
    margin-bottom: 10px;
}

.history {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #c9a77c;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.year {
    width: 120px;
    text-align: right;
    padding-right: 30px;
    font-weight: 600;
    font-size: 1.2rem;
}

.event {
    width: calc(100% - 150px);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.event:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #c9a77c;
    border-radius: 50%;
}

.event h3 {
    margin-bottom: 10px;
}

/* 서비스 페이지 스타일 */
.services-overview {
    padding: 80px 0;
}

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

.main-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-details ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.service-details ul li {
    margin-bottom: 10px;
}

.additional-services {
    padding: 80px 0;
}

.service-process {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.step {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a77c;
    margin-bottom: 15px;
}

.faq {
    padding: 80px 0;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question h3 {
    margin-bottom: 0;
    font-size: 0.45rem;
}

.answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.answer p {
    padding: 20px 0;
}

/* 문의하기 페이지 스타일 */
.contact-info {
    padding: 80px 0;
}

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

.info-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.info-card .icon {
    font-size: 2.5rem;
    color: #c9a77c;
    margin-bottom: 20px;
}

.contact-form {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
}

textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

/* 인증 절차 섹션 추가 스타일 */
.process-section {
    margin-bottom: 60px;
}

.process-section h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-size: 2rem;
}

.combined-process {
    background-color: #f9f9f9;
    padding: 50px 30px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.combined-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.detailed-process {
    margin-top: 60px;
}

.detailed-process h3 {
    text-align: center;
    margin-bottom: 40px;
}

.detailed-process .timeline {
    max-width: 900px;
    margin: 0 auto;
}

.detailed-process .timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.phase {
    background-color: #c9a77c;
    color: #fff;
    padding: 15px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.phase-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.phase-content h4 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 1.3rem;
}

.phase-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.phase-content ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        white-space: normal !important;
    }
    
    .hero h2 {
        font-size: 2rem !important;
    }
    
    .about-content,
    .ceo-content,
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .ceo-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 1.8rem !important;
        white-space: normal !important;
    }
    
    .hero h2 {
        font-size: 1.8rem !important;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .year {
        width: 100%;
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .event {
        width: 100%;
        margin-left: 30px;
    }
    
    .event:before {
        left: -40px;
    }
    
    form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .detailed-process .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .phase {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 250px;
        padding: 0;
    }
    
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .hero h2 {
        font-size: 1.5rem !important;
    }
    
    .page-banner {
        height: 200px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

/* 비용 정보 섹션 스타일 */
.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.pricing-card.featured {
    border: 2px solid #d4af37;
    transform: scale(1.05);
}

.pricing-header h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.price {
    margin: 20px 0;
}

.price .amount {
    font-size: 2.2rem;
    font-weight: bold;
    color: #d4af37;
    display: block;
}

.price .unit {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
    color: #d4af37;
    width: 16px;
}

.additional-options {
    margin: 60px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.option-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.option-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.option-card h4 {
    color: #333;
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.option-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.discount {
    background: #d4af37;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    display: inline-block;
}

.cost-comparison {
    margin: 60px 0;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #d4af37;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
    font-size: 0.9rem;
    color: #333;
}

.comparison-table .total-row {
    background: #f8f9fa;
    font-weight: bold;
}

.comparison-table .total-row td {
    color: #d4af37;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
}

/* 마케팅 페이지 전용 스타일 */
.market-opportunity {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.opportunity-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 20px;
    display: block;
}

.success-stories {
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.story-image {
    background: linear-gradient(135deg, #d4af37, #c9a77c);
    padding: 40px;
    text-align: center;
}

.story-image i {
    font-size: 3rem;
    color: white;
}

.story-content {
    padding: 30px;
}

.results {
    margin: 20px 0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.result-item .label {
    color: #666;
}

.result-item .value {
    font-weight: bold;
    color: #d4af37;
}

.competitive-advantages {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.advantage-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.advantage-icon {
    background: linear-gradient(135deg, #d4af37, #c9a77c);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-item ul {
    text-align: left;
    margin-top: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.advantage-item ul li {
    margin-bottom: 8px;
    color: #666;
}

.roi-calculator {
    padding: 80px 0;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.calculator-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

.calculator-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.calculator-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.roi-result {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 2px solid #d4af37;
}

.result-grid {
    display: grid;
    gap: 15px;
}

.calculator-benefits {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.calculator-benefits ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.calculator-benefits ul li i {
    color: #d4af37;
    margin-right: 10px;
    width: 20px;
}

.process-comparison {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comparison-col {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-header .comparison-col {
    background: #333;
    color: white;
    font-weight: 600;
}

.comparison-col.general {
    background: #ffebee;
    color: #c62828;
}

.comparison-col.beautiroad {
    background: #f3e5ab;
    color: #d4af37;
    font-weight: 600;
}

.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
}

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

.urgency-item {
    text-align: center;
    padding: 30px 20px;
}

.urgency-icon {
    background: rgba(212, 175, 55, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.urgency-icon i {
    font-size: 2rem;
    color: #d4af37;
}

.special-offer {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.offer-box {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
}

.price-comparison {
    margin: 30px 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 15px;
}

.discounted-price {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    margin-right: 15px;
}

.discount-rate {
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.offer-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.offer-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.offer-benefits li i {
    color: #d4af37;
    margin-right: 10px;
    width: 20px;
}

.offer-timer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
}

.offer-timer i {
    color: #d4af37;
    margin-right: 8px;
}

.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4af37, #c9a77c);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white !important;
    margin-bottom: 20px;
}

.cta-buttons {
    margin: 40px 0;
}

.cta-buttons .btn {
    margin: 0 10px;
}

.btn-primary {
    background-color: #d4af37;
    color: white;
    border: 2px solid #d4af37;
}

.btn-primary:hover {
    background-color: #c9a77c;
    border-color: #c9a77c;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
}

/* 반응형 스타일 - 마케팅 페이지 */
@media (max-width: 992px) {
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .opportunity-grid,
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-col {
        padding: 15px 10px;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
}