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

body {
    line-height: 1.6;
    color: #333;
}

.header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header h1 {
    font-size: 1.5em;
    color: #000;
    font-weight: bold;
}

.header img {
    width: 250px;
    height: 250px;
}

.container-custom {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}


.carousel {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}


.main-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.section {
    margin: 40px 0;
}

.section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

.section p {
    margin: 10px 0;
    line-height: 1.8;
}

.highlight {
    font-weight: bold;
    color: #e74c3c;
}

/* Quick Button Wrap */
.quick-button-wrap {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.quick-button-wrap button {
    background-color: #1e2a38;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-button-wrap button:hover {
    background-color: #253746;
}

.quick-button-wrap img {
    width: 20px;
    height: 20px;
}


.review-section {
    background-color: #ffeb3b;
    padding: 50px 0;
}

.review-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.review-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 40px;
}

.review-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.review-chat {
    position: relative;
    width: 45%;
    min-width: 280px;
    margin-bottom: 20px;
}

.review-profile {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.review-name {
    font-weight: bold;
    font-size: 1.1em;
}

.review-bubble {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.map-section {
    padding: 40px 0;
    text-align: center;
}

.map-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

.map-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.map-address {
    margin-bottom: 20px;
    text-align: left;
}

.map-section h2,
.map-section .map-address {
    text-align: left;
}

.root_daum_roughmap_landing {
    margin: 0 auto;
    width: 100% !important;
}

.combined-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.text-content {
    flex: 2;
}

.image-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}


.footer {
    background-color: #f5f5f5;
    padding: 20px;
    font-size: 14px;
    color: #666;
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.footer-left p {
    margin: 5px 0;
}

.footer-right img {
    margin: 0;
    width: 200px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-left {
        margin-bottom: 10px;
    }

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

    .header h1 {
        font-size: 1.2em;
    }

    .main-content {
        padding: 10px;
    }

    .quick-button-wrap {
        position: fixed;
        bottom: 20px;
        top: auto;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        gap: 5px;
    }

    .quick-button-wrap button {
        padding: 8px 12px;
        font-size: 0.9em;
    }

    .review-row {
        flex-direction: column;
    }

    .review-chat {
        width: 100%;
    }

    .footer {
        padding: 20px 20px 50px 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .footer-left h3 {
        font-size: 16px;
    }

    .footer-left p {
        font-size: 13px;
    }

    .footer-right img {
        width: 150px;
    }

    .combined-wrapper {
        flex-direction: column;
    }
}