.tarifs-hero {
    height: auto;
    min-height: 400px;
    background-image: url('../images/saint pe.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.tarifs-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.tarifs-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.pricing-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #faf6f1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    color: #2c5530;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    color: #2c5530;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 2.5em;
    color: #2c5530;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-card .period {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: #555;
}

.pricing-card ul li i {
    color: #2c5530;
    width: 20px;
    text-align: center;
}

.pricing-card .btn-reservation {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c5530;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pricing-card .btn-reservation:hover {
    background-color: #1e3c21;
}

.additional-info {
    text-align: left;
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.additional-info h3 {
    color: #2c5530;
    margin-bottom: 20px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-section h4 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section h4 i {
    color: #2c5530;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.info-section ul li:before {
    content: "•";
    color: #2c5530;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        margin-bottom: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-section {
        margin-bottom: 20px;
    }
}
