/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/HomePage.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
.page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.container {
    display: flex;
    gap: 40px;
    max-width: 900px;
    width: 100%;
    align-items: stretch;
}

.sidebar {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    width: 280px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.service-time {
    font-size: 13px;
    color: #86868b;
    margin-bottom: 20px;
}

.copy-tip {
    background: #34c759;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 12px;
    text-align: center;
}

.contact-item {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.contact-info .label {
    font-size: 12px;
    color: #86868b;
}

.contact-info .value {
    font-size: 15px;
    font-weight: 500;
    color: #1d1d1f;
}

.contact-btns {
    display: flex;
    gap: 8px;
}

.btn-copy {
    flex: 1 1;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy:hover {
    background: #f5f5f5;
}

.btn-contact {
    flex: 1 1;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    background: #0071e3;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-contact:hover {
    background: #0077ed;
}

.loading-text {
    color: #86868b;
    font-size: 14px;
}

.main-content {
    flex: 1 1;
    background: #fff;
    border-radius: 18px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.main-content h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tagline {
    font-size: 18px;
    color: #86868b;
    margin-bottom: 32px;
}

.buttons {
    display: flex;
    gap: 12px;
}

@media (max-width: 700px) {
    .page {
        padding: 20px 16px;
    }

    .container {
        flex-direction: column;
        gap: 20px;
    }

    .sidebar {
        width: 100%;
        padding: 20px;
    }

    .main-content {
        padding: 24px;
        text-align: center;
    }

    .main-content h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .buttons {
        flex-direction: column;
    }

    .buttons .btn {
        width: 100%;
        text-align: center;
    }
}
/*!******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/Toast.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************/
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.toast {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    color: #1d1d1f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease;
    border: 2px solid;
}

.toast.success {
    border-color: #86efac;
}

.toast.error {
    border-color: #fca5a5;
}

.toast.warning {
    border-color: #fcd34d;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
