
/* General Styles */
#new-the-belief-section{
    font-family: Arial, sans-serif;
    line-height: 1.8;
    background-color: #003366;
    margin-top: 20px;
    padding: 0;
    color: #333;
    
}




p {
    font-size: 1.6rem;
    margin: 10px 0;
}

/* Belief Section */
#new-the-belief-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.new-the-belief-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.new-the-belief-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.new-the-belief-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.new-the-belief-item:hover {
    transform: translateY(-5px);
}

.new-the-belief-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1, h2 {
        font-size: 2rem;
    }
    p {
        font-size: 1.4rem;
    }
    .new-the-belief-item {
        padding: 1.5rem;
    }
}
