/* CMS Pages Styling - Journey, Guide, Contact content sections */

.cms-content-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.cms-content-section h3 {
    color: var(--primary-color, #8B4513);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.cms-content h5 {
    color: var(--primary-color, #8B4513);
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.cms-content h5:first-child {
    margin-top: 0;
}

.cms-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cms-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.cms-content ul li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cms-content strong {
    color: #333;
    font-weight: 600;
}

.cms-content .text-brown {
    color: var(--primary-color, #8B4513) !important;
}

/* Form description styling */
.form-description {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color, #8B4513);
}

.form-description p {
    margin-bottom: 0.5rem;
}

.form-description ul {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .cms-content-section {
        padding: 1.5rem;
    }

    .cms-content h5 {
        font-size: 1.1rem;
    }
}
