.hero-devotional {
    background-image: linear-gradient(rgba(61, 64, 91, 0.85), rgba(61, 64, 91, 0.9)), url('https://images.unsplash.com/photo-1518834103328-63b4d2b203b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 150px;
    padding-bottom: 100px;
}

.devotional-icon {
    font-size: 2.5rem;
    color: #F2CC8F;
    margin-bottom: 1rem;
}

.theme-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(244, 241, 222, 0.5);
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.month-theme {
    background-color: #F4F1DE;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
}

.verse-highlight {
    background-color: rgba(129, 178, 154, 0.1);
    border-left: 4px solid #81B29A;
    padding: 20px;
    border-radius: 10px;
    font-style: italic;
    margin: 30px 0;
}

.devotional-structure {
    background-color: #3D405B;
    color: white;
    border-radius: 20px;
    padding: 30px;
}

.btn-devotional {
    background-color: #81B29A;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
}

.btn-devotional:hover {
    background-color: #E07A5F;
    color: white;
    transform: scale(1.05);
}

.bible-icon {
    color: #81B29A;
    font-size: 1.5rem;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .hero-devotional {
        padding-top: 120px;
        padding-bottom: 80px;
    }
}