.djmr-home {
    padding: 32px 5%;
    background: #f5f5f5;
}

.djmr-title-block h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.highlight-primary {
    color: #f9b233;
}

.highlight-secondary {
    color: #222;
}

.djmr-subtitle {
    font-size: 1.2rem;
    color: #006b3f;
    font-weight: 600;
    margin-bottom: 12px;
}

.djmr-desc {
    font-size: 1.1rem;
    color: #222;
}

.djmr-welcome {
    color: #006b3f;
}

.djmr-actions {
    margin: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.djmr-btn {
    background-color: #006b3f;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.djmr-btn:hover {
    background-color: #30c005;
    color: #fff;
}

.djmr-btn-secondary {
    background-color: #f9b233;
    color: #006b3f;
}

.djmr-btn-secondary:hover {
    background-color: #ffe08a;
    color: #222;
}

.djmr-additional-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 107, 63, 0.07);
    padding: 32px 24px;
    margin-bottom: 24px;
}

.djmr-section-title {
    color: #006b3f;
    border-left: 6px solid #f9b233;
    padding-left: 14px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 18px;
}

.djmr-info-list {
    list-style: none;
    padding: 0;
    margin-top: 18px;
}

.djmr-info-list li {
    margin-bottom: 6px;
    font-size: 1.08rem;
    color: #222;
}

.djmr-info-list a {
    color: #006b3f;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .djmr-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .djmr-btn {
        width: 100%;
        text-align: center;
    }
}
