:root {
    --primary-color: #264e13;
}
.bg-inhumation img {
    width: 100%;
    height: calc(90vh - 164px);
    object-fit: cover;
}
h1, h2 {
    color: var(--primary-color);
}
.rows-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .rows-2 {
        flex-direction: column;
    }
    .rows-2 .col {
        width: 100% !important;
    }
}
.rows-2 .col:first-child { width: 50%; }
.rows-2 .col:last-child { width: 50%; }
.rows-2 .col img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.key-steps {
    text-align: center;
    margin: 60px 0 30px;
}
.key-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
}
.steps-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.steps-section .step {
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 10px;
}
.steps-section .step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.steps-section .step ul {
    padding-left: 18px;
}
.steps-section .step ul li {
    list-style-type: disc;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
}
.steps-section .step ul li strong {
    font-weight: 600;
}


.contact-section-inhumation {
    text-align: center;
    margin: 40px 0;
}
.contact-section-inhumation {
   text-decoration: none;
}

.rows-2 .col button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.rows-2 .col button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 36px; /* Légère augmentation pour plus de confort visuel */
    border-radius: 5px;
    margin-top: 15px;
    font-size: 18px;
    border: 2px solid #fff;

    cursor: pointer;
}
.rows-2 .col button:hover,
.rows-2 .col button:focus {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color) !important;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.rows-2 .col button a {
    color: inherit;
    text-decoration: none  ;
}


.container-btn-inhumation-page {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.container-btn-inhumation-page button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 36px; /* Légère augmentation pour plus de confort visuel */
    border-radius: 5px;
    margin-top: 15px;
    font-size: 18px;
    border: 2px solid #fff;

    cursor: pointer;
}
.container-btn-inhumation-page button:hover,
.container-btn-inhumation-page button:focus {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color) !important;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.container-btn-inhumation-page button a {
    color: inherit;
    text-decoration: none  ;
}
@media (max-width: 768px) {
    .steps-section {
        grid-template-columns: 1fr;
    }

  

}
