.diksha-container {
    /* background-image: url('{% static "images/diksha_bg.jpg" %}'); */
    background-size: cover;
    background-position: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    font-family: Arial, sans-serif;
}

.diksha-title {
    font-size: 2.5em;
    color: #e15a2a;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.diksha-nav a:hover {
    text-decoration: underline;
}

.diksha-description {
    color: black;
    text-align: justify;
    margin-bottom: 20px;
    padding: 0 10px;
    line-height: 1.6;
}

.diksha-image-container {
    text-align: center;
    margin-bottom: 20px;
}

.diksha-image-container img {
    max-width: 100%;
    height: auto;
}

.diksha-explore {
    display: block;
    padding: 15px 30px;
    background-color: #ff4500;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: 200px;
    margin: 20px auto;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.diksha-explore:hover {
    background-color: #e03a00;
}

@media (max-width: 768px) {
    .diksha-title {
        font-size: 1.8em;
    }

    .diksha-description {
        font-size: 14px;
        padding: 0 5px;
    }

    .diksha-explore {
        width: 160px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .diksha-title {
        font-size: 1.5em;
    }

    .diksha-description {
        font-size: 13px;
    }

    .diksha-explore {
        width: 140px;
        padding: 10px 15px;
        font-size: 13px;
    }
}
