/* Hero Section */
.reglementation-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: 8em;
    position: relative;
}

.reglementation-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #00a0d3;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.reglementation-hero p {
    font-size: 1.2rem;
    color: #666;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

/* Content Section */
.reglementation-content {
    padding: 4rem 2rem;
}

.reglementation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.reglementation-section {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.reglementation-section h2 {
    color: #00a0d3;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.content-block {
    margin-bottom: 2rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.content-block p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-block ul {
    list-style: none;
    padding-left: 0;
}

.content-block ul li {
    color: #666;
    line-height: 1.6;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.content-block ul li::before {
    content: "•";
    color: #00a0d3;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f8f8;
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #00a0d3;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #00a0d3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #0088b3;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .reglementation-hero h1 {
        font-size: 3rem;
    }

    .reglementation-hero p {
        font-size: 1rem;
    }

    .reglementation-section {
        padding: 1.5rem;
    }

    .reglementation-section h2 {
        font-size: 1.5rem;
    }

    .content-block h3 {
        font-size: 1.2rem;
    }
} 