@import url('https://fonts.googleapis.com/css2?family=Aptos:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Aptos', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.nav-links a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #003d82;
}

/* Main content styles */
main {
    padding: 40px 0;
    min-height: calc(100vh - 230px);
}

.page-title {
    color: #0056b3;
    margin-bottom: 30px;
    text-align: center;
}

/* Form styles */
.form-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.page-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.required::after {
    content: "*";
    color: #e74c3c;
    margin-left: 4px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.file-input {
    padding: 10px 0;
}

button {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #003d82;
}

/* Footer styles */
footer {
    background-color: #fff;
    padding: 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.phone-number {
    color: #777;
    font-size: 14px;
}

/* Winter/Ski Theme elements */
.winter-theme {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* FAQ Page Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: #f0f5ff;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: none;
}

.faq-question.active+.faq-answer {
    display: block;
}

/* CGU Page Styles */
.cgu-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cgu-container h2 {
    color: #0056b3;
    margin: 25px 0 15px;
}

.cgu-container p {
    margin-bottom: 15px;
}

.confirmation-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.confirmation-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon svg {
    width: 60px;
    height: 60px;
    color: #4caf50;
}

.confirmation-title {
    color: #0056b3;
    font-size: 24px;
    margin-bottom: 20px;
}

.confirmation-message {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.ticket-number {
    background-color: #f0f5ff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-weight: 500;
    color: #0056b3;
}

.button-primary {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: #003d82;
}

.confirmation-footer {
    margin-top: 30px;
    color: #777;
    font-size: 14px;
}

h2 {
    padding: 15px
}

h3 {
    padding: 10px;
}

ul {
    margin-left: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}