/* Dampick Clone Styles for Mootda - Pixel Perfect Font Sizes */

:root {
    --dampick-blue: #148fef; /* Dampick's actual blue color */
    --dampick-bg-blue: rgba(205, 233, 251, 0.2);
}

* { font-family: 'Pretendard', sans-serif; }

.flexbox { display: flex; align-items: center; }
.flexbox_stretch { display: flex; align-items: stretch; }
.between { justify-content: space-between; }
.contain { width: 1400px; max-width: 95%; margin: 0 auto; position: relative; }
.radius26 { border-radius: 26px; }

/* Header */
#boxTop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

#boxTop .contain {
    height: 100%;
}

#boxTop.stop {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#boxTop .boxLogo .logo .text p {
    font-size: 24px !important;
    font-weight: 900;
    margin: 0;
    color: var(--dampick-blue);
    line-height: 1.2;
}

#boxTop .boxLogo .logo .text .biznumber {
    font-size: 12px !important;
    color: #999;
}

#boxTop .boxMenu {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 40px;
}

#boxTop .boxMenu .mn {
    font-size: 18px !important;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    padding: 10px;
    transition: color 0.2s;
    white-space: nowrap;
}

#boxTop .boxMenu .mn:hover {
    color: var(--dampick-blue);
}

#boxTop .boxTel {
    background: var(--dampick-blue);
    color: #fff !important;
    padding: 10px 25px;
    font-size: 24px !important;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
}

/* Footer Styles */
footer {
    padding: 60px 0 200px; /* Increased bottom padding to clear the fixed bottom bar */
    background-color: var(--dampick-bg-blue);
    color: #666;
    font-size: 16px !important;
}

footer .inner {
    width: 1400px;
    max-width: 95%;
    margin: 0 auto;
}

footer .company ul, footer .f_info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

footer .company ul li:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: #ccc;
}

footer .company span {
    display: block;
    margin-top: 20px;
    font-size: 14px !important;
    color: #999;
}

footer .loan_warning {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px !important;
    line-height: 1.6;
    color: #888;
}

/* Responsive */
@media (max-width: 1200px) {
    #boxTop .boxMenu { display: none; }
    .contain { width: 100%; padding: 0 20px; }
}
