/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Header */
header {
    background-color: #02020f;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: x-large;
    position: relative;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    width: 130px;
    height: 130px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 16px;
}

nav ul li a:hover {
    background-color: #2f57ad;
    border-radius: 5px;
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style-type: none;
    padding: 10px;
    border-radius: 10px;
}

.submenu li {
    padding: 8px 16px;
}

.submenu li a {
    color: #0f1897;
    font-size: 15px;
    white-space: nowrap;
}

nav ul li:hover .submenu {
    display: block;
}


/* Section de tarifs inspirée de Porsche */
.pricing-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #e9f1f7;
}

.pricing-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    font-weight: 600;
}

.pricing-section p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-box {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.pricing-box h3 {
    font-size: 1.8em;
    color: #093765;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.pricing-box p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 25px;
}

.price {
    font-size: 2em;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-small {
    font-size: 1.1em;
    color: #777;
}

.discount {
    font-size: 1.2em;
    color: #e60000;
    font-weight: bold;
    margin-top: 15px;
}

/* Footer */
footer {
    background-color: #02020f;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin-right: 20px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}
