.join {
    background: #fff0e6;
    padding: 80px 0 60px 0;
    text-align: center;
}

.join-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.join h1 {
    font-family: 'Caprasimo', serif;
    font-size: 2.8rem;
    color: rgba(2, 32, 63, 0.98);
    margin-bottom: 20px;
    line-height: 1.2;
}

.join-description {
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: rgba(2, 32, 63, 0.98);
    margin-bottom: 0;
    font-weight: 300;
}

/* Chat Container */
.chat-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
    background: rgb(255, 255, 255);
    box-sizing: border-box;
    border: 4px solid rgba(224, 224, 224);
    border-radius: 12px;
}

/* Message Bubbles */
.message {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
    gap: 12px;
}

.message.user {
    flex-direction: row-reverse;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.avatar.bot {
    background-color: rgba(52, 152, 219, 0.15);
    color: white;
}

.avatar.user {
    background-color: rgba(52, 152, 219, 0.15);
    color: #641b1b;
}

.message-content-bot,
.message-content-user,
.message-content {
    max-width: 70%;
    padding: 16px 20px;
    border-radius: 20px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.message-content-bot {
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.message-content-user {
    transition: transform 0.3s ease;
    transform-origin: right center;
}

.message-content-bot:hover,
.message-content-user:hover {
    transform: scale(1.02);
    z-index: 1;
}

.message-content strong {
    color: rgba(8, 35, 68, 0.85);
}

.message.bot .message-content,
.message.bot .message-content-bot {
    background-color: rgba(52, 152, 219, 0.08);
    color: #333;
    border-bottom-left-radius: 6px;
}

.message.user .message-content-user {
    background-color: rgba(100, 27, 27, 0.7);
    color: white;
    border-bottom-right-radius: 6px;
}

/* Expectations Section */
.expectation-item {
    gap: 16px;
    background-color: #fafafa;
    border-radius: 8px;
    border-left: 3px solid #e8ddd4;
    padding: 30px;
    margin: 30px 0;
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.expectation-item h4 {
    font-family: 'Caprasimo', serif;
    font-weight: 200;
    color: rgba(8, 35, 68, 0.85);
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.expectation-item p {
    color: rgba(8, 35, 68, 0.85);
    margin: 0;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.expectation-item:hover {
    border-left-width: 4px;
    border-left-color: #7d1f42;
    transform: scale(1.02);
    z-index: 1;
}

/* Best Way Section */
.best-way-section {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.best-way-title {
    font-family: 'Caprasimo', serif;
    font-size: 1.8rem;
    color: #8b4b6b;
    margin-bottom: 20px;
    text-align: center;
}

.best-way-content h3 {
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.best-way-content p {
    color: #666;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    padding: 8px 0;
    color: #666;
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.benefits-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #8b4b6b;
    font-weight: 600;
}

.benefits-list strong {
    color: #333;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    font-family: 'Caprasimo', serif;
    font-size: 1.8rem;
    color: #8b4b6b;
    text-align: center;
    margin-bottom: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.faq-item {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 12px;
}

.faq-item h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 1rem;
}

.faq-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .join-hero h1 {
        font-size: 2.2rem;
    }

    .chat-container {
        padding: 0 16px;
    }

    .message-content {
        max-width: 85%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .best-way-section,
    .form-section,
    .faq-section {
        margin: 20px 16px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .join-hero {
        padding: 60px 0 40px 0;
    }

    .join-hero h1 {
        font-size: 1.8rem;
    }

    .avatar {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .message-content {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .best-way-section,
    .form-section,
    .faq-section {
        margin: 16px 12px;
        padding: 16px;
    }
}