/* Fixed full-page background */
body {
    background: url('../images/background_main.png') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Space between cards */
section {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

/* Card styling */
.section-card1 {
    background-color: rgba(42, 33, 58, 0.90); /* Slight transparency */
    padding: 40px;
    width: 70%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.section-card1 h2,
.section-card1 h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.section-card1 p {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #DDDDDD;
}

/* Card styling for section-card2 */
.section-card2 {
    background-color: rgba(58, 42, 80, 0.90); /* Slight transparency */
    padding: 40px;
    width: 70%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.section-card2 h2,
.section-card2 h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.section-card2 p {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #DDDDDD;
}
