/* beliefs.css - styles for beliefs.html */
.beliefs-section {
    padding: 6rem 0;
    background-color: #ffffff;
}
.tenet-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.tenet-card:hover {
    transform: translateY(-5px);
}
.tenet-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    color: #1a237e;
    opacity: 0.2;
    font-weight: 700;
}
.tenet-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: #1a237e;
}
.tenet-title {
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
}
.scripture-reference {
    color: #3949ab;
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
}
.intro-section {
    background: linear-gradient(45deg, #1a237e, #3949ab);
    color: white;
    padding: 4rem 0;
    margin-bottom: 4rem;
}
