body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    body style="background-image: url('./img/new-background.jpg'); background-size: cover; background-position: center; background-attachment: fixed;">
    line-height: 1.6;
}
.banner {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 1.5em 0;
}
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background-color: #f4f4f4;
}
.buttons {
    display: flex;
    gap: 2em;
}
.large-button {
    padding: 1em 2em;
    font-size: 1.5em;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.large-button:hover {
    background-color: #0056b3;
}
section {
    padding: 2em;
    text-align: center;
}
section.how-it-works, section.example {
    background-color: #ffffff;
    margin: 1em 0;
}
section.call-to-action {
    background-color: #007bff;
    color: white;
    padding: 2em 0;
}
footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 1em 0;
}

    body, header, footer, .hero, .how-it-works {
        background-color: black !important;
        color: white !important;
    }

    .heirs-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
        background-color: black;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .heirs-form label {
        color: white;
        font-size: 1rem;
    }

    .heirs-form input, .heirs-form textarea, .heirs-form select {
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .big-button {
        background-color: #007bff !important;
        color: white !important;
        font-size: 1.2rem;
        padding: 10px 20px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }

    .big-button:hover {
        opacity: 0.9;
    }
    
