/* Global Styles */
body {
  font-family: 'Abel', sans-serif;
}

/* Veille Section Styles */
.veille-section {
  padding: 6rem 2rem 2rem;
  background-color: #f5f5f5;
  min-height: 100vh;
  font-family: 'Abel', sans-serif;
}

.section-title2 {
  text-align: center;
  font-size: 35px;
  display: inline-block;
  padding: 5px 40px 5px;
  border: 8px solid #233D63;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.2);
  margin: 30px auto;
  font-family: 'Abel', sans-serif;
  width: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}


h1, h2 {
  color: var(--main-color);
}

h1 {
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2.2em;
}

h2 {
  margin-bottom: 15px;
  font-size: 1.5em;
}

.section {
  margin-bottom: 40px;
  background: var(--section-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

ul {
  list-style: disc inside;
}

p, li {
  margin-bottom: 10px;
}

.section-title2:hover {
  transform: translateX(-50%) scale(0.95);
}

/* Introduction */
.veille-intro {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 9px solid #ffffff;
}

.veille-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

/* Outils de Veille */
.veille-tools {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.veille-tools h3 {
  text-align: center;
  font-size: 2rem;
  color: #1a237e;
  margin-bottom: 2rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 9px solid #ffffff;
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tool-card h4 {
  color: #1a237e;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.tool-card p {
  color: #666;
  line-height: 1.5;
}

/* Articles de Veille */
.veille-articles {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.veille-articles h3 {
  text-align: center;
  font-size: 2rem;
  color: #1a237e;
  margin-bottom: 2rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.article-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 9px solid #ffffff;
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.article-category {
  background: #1a237e;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.article-card h4 {
  color: #1a237e;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.article-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-block;
  color: #1a237e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #283593;
}

/* Méthodologie */
.veille-method {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.veille-method h3 {
  text-align: center;
  font-size: 2rem;
  color: #1a237e;
  margin-bottom: 2rem;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 9px solid #ffffff;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #1a237e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step h4 {
  color: #1a237e;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step p {
  color: #666;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .veille-section {
    padding: 5rem 1rem 1rem;
  }

  .section-title2 {
    font-size: 28px;
    padding: 5px 30px 5px;
    border: 6px solid #233D63;
    margin: 15px auto 20px;
  }

  .veille-intro {
    padding: 1.5rem;
  }

  .veille-intro p {
    font-size: 1.1rem;
  }

  .tool-card, .article-card, .step {
    padding: 1.5rem;
    border: 6px solid #ffffff;
  }

  .tool-icon {
    font-size: 2.5rem;
  }

  .tool-card h4, .article-card h4, .step h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .section-title2 {
    font-size: 22px;
    padding: 5px 20px 5px;
    border: 4px solid #233D63;
    margin: 10px auto 15px;
  }

  .veille-intro {
    padding: 1rem;
  }

  .veille-intro p {
    font-size: 1rem;
  }

  .tool-card, .article-card, .step {
    padding: 1rem;
    border: 4px solid #ffffff;
  }

  .tool-icon {
    font-size: 2rem;
  }

  .tool-card h4, .article-card h4, .step h4 {
    font-size: 1.1rem;
  }

  .article-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
} 