/* Styles pour le contenu principal */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

/* Styles pour les sections de contenu */
.content-section {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.content-section h2 {
  color: #00a2ff;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 162, 255, 0.3);
  position: relative;
  display: inline-block;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00a2ff, #00ffcc);
  border-radius: 3px;
}

/* Cartes de contenu */
.content-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Grille de fonctionnalités */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.feature h3 {
  color: #00e6ff;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.feature p {
  color: #e0f7ff;
  margin: 0;
  line-height: 1.6;
}

/* Grille d'exemples */
.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.example {
  background: rgba(0, 162, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 162, 255, 0.2);
  transition: all 0.3s ease;
}

.example:hover {
  background: rgba(0, 162, 255, 0.15);
  transform: translateY(-3px);
}

.example h3 {
  color: #00e6ff;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

/* Section CTA */
.cta-section {
  text-align: center;
  margin: 4rem 0;
  animation: fadeIn 1s ease-out;
}

.cta-content {
  background: linear-gradient(135deg, rgba(0, 162, 255, 0.15), rgba(0, 255, 204, 0.15));
  border-radius: 16px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(0, 230, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.cta-content h2 {
  color: #00e6ff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  color: #e0f7ff;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #00a2ff, #00ffcc);
  color: #003366;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 162, 255, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 162, 255, 0.6);
  color: #001a33;
}

/* Liens dans le contenu */
.cta-link {
  color: #00e6ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px dashed rgba(0, 230, 255, 0.5);
  padding-bottom: 2px;
}

.cta-link:hover {
  color: #ffffff;
  border-bottom-color: #00e6ff;
}

/* Liste à puces */
.content-card ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.content-card li {
  margin-bottom: 0.5rem;
  color: #e0f7ff;
  line-height: 1.6;
  position: relative;
}

.content-card li::before {
  content: '•';
  color: #00e6ff;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .content-section h2 {
    font-size: 1.8rem;
  }
  
  .content-card {
    padding: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .feature-grid, .example-grid {
    grid-template-columns: 1fr;
  }
}

/* Effet de survol sur les cartes */
.content-card, .feature, .example {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.content-card:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.05);
}

/* Amélioration de la lisibilité */
p {
  color: #e0f7ff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Style pour les titres de section */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00a2ff, #00ffcc);
  border-radius: 3px;
}

/* Style pour les cartes d'exemples */
.example-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.example-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.example-card h3 {
  color: #00e6ff;
  margin-top: 0;
  margin-bottom: 1rem;
}

.example-card p {
  color: #e0f7ff;
  margin: 0;
  line-height: 1.6;
}
