body {
    font-family: 'Noto Sans KR', sans-serif;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    background-color: #121212;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: #f0f0f0;
    transition: color 0.3s;
}

a:hover {
    color: #d4af37;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #1a1a1a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: #d4af37;
    font-size: 1.2em;
    font-weight: 800;
    margin-left: -2px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-size: 0.95rem;
    padding: 5px 10px;
    color: #f0f0f0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.nav-phone {
    color: #e74c3c !important;
    font-weight: 700;
    margin-right: 15px;
    border-bottom: none !important;
}

.nav-btn {
    background-color: #e74c3c;
    color: #fff !important;
    padding: 8px 15px !important;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    border-bottom: none !important;
}

.nav-btn:hover {
    background-color: #c0392b;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 1px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

.hero {
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero .container {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.btn-main {
    display: inline-block;
    background-color: #d4af37;
    color: #1a1a1a;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-main:hover {
    background-color: #c9a633;
    transform: translateY(-2px);
}

.trust-bar {
    background-color: #2c3e50;
    padding: 20px 0;
    text-align: center;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.trust-item {
    padding: 10px 20px;
}

.trust-item strong {
    display: block;
    font-size: 2.2rem;
    font-family: 'Montserrat', sans-serif;
    color: #d4af37;
    font-weight: 800;
}

.trust-item span {
    display: block;
    font-size: 0.9rem;
    color: #cfcfcf;
    margin-top: 5px;
}


section {
    padding: 60px 0;
}

.bg-light {
    background-color: #1a1a1a;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}

.section-desc {
    text-align: center;
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.two-col {
    display: flex;
    gap: 40px;
    align-items: center;
}

.two-col .col-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path fill="%23d4af37" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #cfcfcf;
}


.card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #d4af37;
}

.card-content p {
    color: #b0b0b0;
    flex-grow: 1;
}

.card-link {
    display: inline-block;
    color: #e74c3c;
    font-weight: 600;
    margin-top: 15px;
}


.process-section {
    background-color: #1a1a1a;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
}

.step {
    flex: 1;
    padding: 20px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: #444;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    z-index: 2;
    position: relative;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: #a0a0a0;
}


.testimonials {
    background-color: #2c3e50;
}

.review-card {
    background-color: #34495e;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-card p {
    font-style: italic;
    color: #cfcfcf;
    line-height: 1.6;
}

.author {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 500;
    text-align: right;
}


.consultation-section {
    padding: 80px 0;
    background: #121212;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-top: 5px solid #e74c3c;
}

.form-container .section-title {
    text-align: center;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #cfcfcf;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #222;
    color: #f0f0f0;
    box-sizing: border-box;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #d4af37;
    outline: none;
}

.btn-submit {
    width: 100%;
    background-color: #e74c3c;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #c0392b;
}


footer {
    background-color: #1a1a1a;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.f-col {
    flex: 1;
    min-width: 200px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.f-col h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.f-col p, .f-col a {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.8;
}

.f-col a:hover {
    color: #d4af37;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-decline {
    background-color: #e74c3c;
    color: #fff;
}

@media (max-width: 768px) {
    
    .container {
        padding: 0 15px;
    }

    header .container {
        padding: 10px 15px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100%;
        background-color: #1a1a1a;
        padding-top: 70px;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        z-index: 999;
    }
    
    nav ul.open {
        transform: translateX(0);
        display: flex; 
    }

    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #333;
    }

    nav ul li a {
        display: block;
        padding: 15px 25px;
        text-align: left;
        font-size: 1.1rem;
        border-bottom: none !important; 
    }

    .nav-btn {
        margin-top: 10px;
        text-align: center;
        width: calc(100% - 50px);
        margin: 20px 25px;
        padding: 12px !important;
    }

    .nav-phone {
        display: block;
        padding: 15px 25px;
        font-size: 1.1rem;
        text-align: left;
        color: #e74c3c !important;
        font-weight: 700;
    }

    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        height: 50vh; 
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
    
    .btn-main {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .trust-grid {
        flex-direction: column; 
    }
    
    .trust-item {
        padding: 15px 0;
        border-bottom: 1px solid #333;
    }
    
    .trust-item:last-child {
        border-bottom: none;
    }
    
    .trust-item strong {
        font-size: 1.8rem;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .two-col {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step:not(:last-child)::after {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24"><path fill="%23444444" d="M11 20H13V11H17V9H7V11H11V20Z" transform="rotate(90 12 14.5)"/></svg>');
        top: auto;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        width: 20px;
        height: 20px;
        background: none;
    }
    
    .step-icon {
        margin-bottom: 10px;
    }

    .footer-row {
        flex-direction: column;
    }
    
    .f-col {
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
    
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
        text-align: left;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-cookie {
        flex: 1;
        text-align: center;
        padding: 12px 15px;
    }
}