/* Recruitment Public Page */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #22364D;
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for children */
.animate-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-children.animated > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.animate-children.animated > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.animate-children.animated > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.animate-children.animated > *:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.animate-children.animated > *:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.animate-children.animated > *:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

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

/* Header */
.recruitment-public-header {
  background-color: #ffffff;
  border-bottom: 1px solid #DFE5EC;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.btn-apply-header {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0B3D5D;
  color: #ffffff;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 20px;
  text-decoration: none;
}

.btn-apply-header:hover {
  background-color: #094561;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 61, 93, 0.3);
}

/* Hero Section */
.hero-section {
  padding: 0;
  background-color: #ffffff;
}

.hero-container {
  margin: 0 auto;
  padding-left: 93px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Assurer l'ordre correct sur desktop : hero-left à gauche, hero-right à droite */
.hero-left {
  order: 1;
}

.hero-right {
  order: 2;
}

@media (max-width: 768px) {
  .hero-container {
    padding-left: 0;
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-left {
    order: 2;
  }
  
  .hero-right {
    order: 1;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 16px;
    gap: 24px;
  }
}

.hero-left {
  animation: fadeIn 0.8s ease-out;
}

.hero-title {
  font-size: 63px;
  font-weight: 700;
  color: #22364D;
  line-height: 70px;
  margin-bottom: 27px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}

.hero-description {
  font-size: 27px;
  font-weight: 500;
  color: #586D85;
  line-height: 40px;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero-description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}

.btn-apply-hero {
  display: inline-block;
  padding: 16px 32px;
  background-color: #0B3D5D;
  color: #ffffff;
  border: none;
  border-radius: 17px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 22px;
  text-decoration: none;
}

.btn-apply-hero:hover {
  background-color: #094561;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 61, 93, 0.4);
}

.hero-right {
  animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.hero-image-container {
  background: linear-gradient(0deg, #FFF 0%, #FEF9F7 54.2%, #E8EEF6 100%);
  padding: 90px 0 90px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

@media (max-width: 768px) {
  .hero-image-container {
    padding: 32px 24px;
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    padding: 24px 16px;
    min-height: 200px;
  }
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Advantages Section */
.advantages-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FEF9F7 0%, #E8EEF6 100%);
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .advantages-section {
    padding: 40px 0;
  }
}

.advantages-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .advantages-container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .advantages-container {
    padding: 0 16px;
  }
}

.advantages-title {
  font-size: 48px;
  font-weight: 700;
  color: #22364D;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .advantages-title {
    font-size: 26px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .advantages-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.advantage-card {
  background-color: rgba(23, 39, 57, 0.04);
  border-radius: 28px;
  padding: 40px 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: rgba(23, 39, 57, 0.06);
}

.advantage-number-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0B3D5D 0%, #5B8AA8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.advantage-number {
  font-size: 27px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.advantage-name {
  font-size: 20px;
  font-weight: 700;
  color: #22364D;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.advantage-description {
  font-size: 15px;
  font-weight: 400;
  color: #384D64;
  line-height: 31px;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 60px 0 120px 0;
}

@media (max-width: 768px) {
  .about-section {
    padding: 48px 0 64px 0;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0 48px 0;
  }
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .about-container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 16px;
  }
}

.about-main-title {
  font-size: 48px;
  font-weight: 700;
  color: #22364D;
  text-align: center;
  margin-bottom: 90px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about-main-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .about-main-title {
    font-size: 22px;
    margin-bottom: 32px;
  }
}

.about-block {
  background: linear-gradient(0deg, #FFF 0%, #FEF9F7 54.2%, #E8EEF6 100%);
  border-radius: 22px;
  padding: 78px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border: 1px solid #DFE5EC;
}

@media (max-width: 768px) {
  .about-block {
    padding: 32px 24px;
    gap: 32px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .about-block {
    padding: 24px 16px;
    gap: 24px;
    border-radius: 12px;
  }
}

.about-left {
  animation: fadeIn 0.8s ease-out;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #22364D;
  line-height: 43px;
  margin-bottom: 27px;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
  }
}

.about-description {
  font-size: 20px;
  font-weight: 500;
  color: #586D85;
  line-height: 30px;
  margin-bottom: 20px;
}

.about-description:last-of-type {
  margin-bottom: 27px;
}

.btn-apply-about {
  display: inline-block;
  padding: 16px 32px;
  background-color: #0B3D5D;
  color: #ffffff;
  border: none;
  border-radius: 17px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 24px;
  text-decoration: none;
}

.btn-apply-about:hover {
  background-color: #094561;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 61, 93, 0.4);
}

.about-right {
  animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Criteria Section */
.criteria-section {
  padding: 120px 0 120px 0;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .criteria-section {
    padding: 48px 0 64px 0;
  }
}

@media (max-width: 480px) {
  .criteria-section {
    padding: 40px 0 48px 0;
  }
}

.criteria-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .criteria-container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .criteria-container {
    padding: 0 16px;
  }
}

.criteria-header-block {
  border-radius: 33px;
  border: 1px solid #DFE5EC;
  background: linear-gradient(0deg, #FFF 0%, #FEF9F7 54.2%, #E8EEF6 100%);
  padding: 56px 78px;
}

@media (max-width: 768px) {
  .criteria-header-block {
    padding: 28px 24px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .criteria-header-block {
    padding: 24px 16px;
    border-radius: 16px;
  }
}

.criteria-main-title {
  font-size: 48px;
  font-weight: 700;
  color: #22364D;
  margin: 0 0 12px 0;
  line-height: 79px;
  text-align: left;
}

@media (max-width: 768px) {
  .criteria-main-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .criteria-main-title {
    font-size: 20px;
    line-height: 28px;
  }
}

.criteria-description {
  font-size: 16px;
  font-weight: 400;
  color: #586D85;
  margin: 0 0 50px 0;
  line-height: 24px;
  text-align: left;
}

@media (max-width: 768px) {
  .criteria-description {
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .criteria-description {
    font-size: 13px;
    margin-bottom: 24px;
  }
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.criterion-card {
  background-color: transparent;
  border: 1px solid #D7E3ED;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.criterion-card:hover {
  border-color: #C5CFD9;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.criterion-number-circle {
  width: 35px;
  height: 35px;
  background-color: #22364D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
}

.criterion-number {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.criterion-name {
  font-size: 15px;
  font-weight: 700;
  color: #172739;
  text-transform: uppercase;
  line-height: 22px;
  margin-bottom: 7px;
}

.criterion-description {
  font-size: 14px;
  font-weight: 400;
  color: #8494A7;
  line-height: 23px;
  margin: 0;
}

.criteria-action {
  display: flex;
  justify-content: center;
  margin-top: 78px;
}

.btn-apply-criteria {
  display: inline-block;
  padding: 6px 42px;
  background-color: #0B3D5D;
  color: #ffffff;
  border: none;
  border-radius: 17px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 42px;
  text-decoration: none;
}

.btn-apply-criteria:hover {
  background-color: #094561;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 61, 93, 0.4);
}

/* FAQ Section */
.faq-section {
  padding: 0 0 100px 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 0 0 60px 0;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 0 0 40px 0;
  }
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 0 16px;
  }
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  color: #22364D;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 22px;
  }
}

.faq-description {
  font-size: 16px;
  font-weight: 400;
  color: #586D85;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #DFE5EC;
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #C5CFD9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
  border-color: #0B3D5D;
}

.faq-question {
  width: 100%;
  background: #F6F7F8;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.faq-question:hover {
  background-color: #F8FAFB;
}

.faq-question span {
  font-size: 18px;
  font-weight: 700;
  color: #22364D;
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 28px;
}

.faq-answer p {
  font-size: 15px;
  font-weight: 400;
  color: #586D85;
  line-height: 1.7;
  margin: 0;
}

/* Partners Section */
.partners-section {
  padding: 0 0 100px 0;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .partners-section {
    padding: 0 0 60px 0;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 0 0 40px 0;
  }
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .partners-container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .partners-container {
    padding: 0 16px;
  }
}

.partners-title {
  font-size: 48px;
  font-weight: 700;
  color: #22364D;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .partners-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .partners-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}

.partner-logo-wrapper {
  background-color: #F8FAFB;
  border: 1px solid #DFE5EC;
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: 90px;
}

.partner-logo-wrapper:hover {
  background-color: #ffffff;
  border-color: #C5CFD9;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.partner-logo {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logo-wrapper:hover .partner-logo {
  opacity: 1;
}

/* Contact Section */
.contact-section {
  padding: 80px 0 100px 0;
  background: linear-gradient(0deg, #FFF 0%, #FEF9F7 54.2%, #E8EEF6 100%);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0 80px 0;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0 60px 0;
  }
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 0 16px;
  }
}

.contact-title {
  font-size: 40px;
  font-weight: 700;
  color: #22364D;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 22px;
  }
}

.contact-description {
  font-size: 16px;
  font-weight: 400;
  color: #586D85;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-description {
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  .contact-description {
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 20px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  font-size: 14px;
  font-weight: 600;
  color: #384D64;
  line-height: 20px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #DFE5EC;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #22364D;
  background-color: #ffffff;
  transition: all 0.2s;
  font-family: inherit;
}

.contact-input:hover,
.contact-textarea:hover {
  border-color: #C5CFD9;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #0B3D5D;
  box-shadow: 0 0 0 3px rgba(11, 61, 93, 0.1);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #8494A7;
}

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

.btn-send-message {
  padding: 14px 32px;
  background-color: #0B3D5D;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 22px;
  align-self: center;
}

.btn-send-message:hover {
  background-color: #094561;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 61, 93, 0.3);
}

.btn-send-message:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Contact Alert */
.contact-alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  transition: all 0.3s ease;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-alert strong {
  margin-right: 8px;
  font-size: 16px;
}

.contact-alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 480px) {
  .contact-alert {
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 16px;
  }
}

/* Footer */
.footer {
  background: radial-gradient(50% 50% at 50% 50%, #274568 0%, #172739 100%);
  padding: 60px 0 40px 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 40px;
}

.footer-logo {
  flex-shrink: 0;
}

.logo-white {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-contact {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.contact-item span {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 20px;
}

.footer-social {
  display: flex;
  gap: 27px;
  align-items: center;
  flex-shrink: 0;
}

.social-link {
  text-decoration: none;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 32px;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 20px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container,
  .about-block {
    gap: 40px;
  }

  .hero-title {
    font-size: 40px;
  }

  .advantages-title,
  .about-main-title {
    font-size: 36px;
  }

  .about-title {
    font-size: 28px;
  }

  .advantages-grid {
    gap: 24px;
  }

  .criteria-main-title {
    font-size: 28px;
  }

  .criteria-grid {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .header-container {
    padding: 0 32px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-container {
    padding: 0 32px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .advantages-section {
    padding: 60px 0;
  }

  .advantages-container {
    padding: 0 32px;
  }

  .advantages-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .advantage-card {
    padding: 32px 24px;
  }

  .advantage-name {
    font-size: 18px;
  }

  .advantage-description {
    font-size: 14px;
  }

  .about-section {
    padding: 60px 0 80px 0;
  }

  .about-container {
    padding: 0 32px;
  }

  .about-main-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .about-block {
    grid-template-columns: 1fr;
    padding: 48px 40px;
    gap: 40px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-description {
    font-size: 15px;
  }

  .criteria-section {
    padding: 60px 0 80px 0;
  }

  .criteria-container {
    padding: 0 32px;
  }

  .criteria-header-block {
    padding: 32px;
    margin-bottom: 48px;
  }

  .criteria-main-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .criteria-action {
    margin-top: 36px;
  }

  .faq-section {
    padding: 60px 0 80px 0;
  }

  .faq-container {
    padding: 0 32px;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .partners-section {
    padding: 60px 0 80px 0;
  }

  .partners-container {
    padding: 0 32px;
  }

  .partners-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .contact-section {
    padding: 60px 0 80px 0;
  }

  .contact-container {
    padding: 0 32px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .footer {
    padding: 50px 0 35px 0;
  }

  .footer-container {
    padding: 0 32px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-social {
    gap: 12px;
  }

  .criterion-card {
    padding: 28px 20px;
  }

  .criterion-name {
    font-size: 17px;
  }

  .criterion-description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 20px;
  }

  .logo-img {
    height: 32px;
  }

  .btn-apply-header {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .logo-img {
    height: 28px;
  }
  
  .btn-apply-header {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 12px;
  }
  
  .hero-section {
    padding: 48px 0;
  }

  .hero-container {
    padding: 0 16px;
    gap: 24px;
  }
  
  .hero-left {
    order: 2;
  }
  
  .hero-right {
    order: 1;
  }

  .hero-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .btn-apply-hero {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }

  .hero-image-container {
    padding: 32px 24px;
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 16px;
    gap: 24px;
  }
  
  .hero-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  
  .hero-description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  
  .btn-apply-hero {
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 12px;
  }
  
  .hero-image-container {
    padding: 24px 16px;
    min-height: 200px;
  }

  .advantages-section {
    padding: 48px 0;
  }

  .advantages-container {
    padding: 0 24px;
  }

  .advantages-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .advantage-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .advantage-number-badge {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .advantage-number {
    font-size: 24px;
  }

  .advantage-name {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .advantage-description {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  .advantages-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  
  .advantage-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .advantage-number-badge {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }
  
  .advantage-number {
    font-size: 22px;
  }
  
  .advantage-name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .advantage-description {
    font-size: 12px;
    line-height: 20px;
  }

  .about-section {
    padding: 48px 0 64px 0;
  }

  .about-container {
    padding: 0 24px;
  }

  .about-main-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .about-block {
    padding: 32px 24px;
    gap: 32px;
    border-radius: 16px;
  }

  .about-title {
    font-size: 22px;
    line-height: 30px;
  }

  .about-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .about-description:last-of-type {
    margin-bottom: 24px;
  }

  .btn-apply-about {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-block {
    padding: 24px 16px;
    gap: 24px;
    border-radius: 12px;
  }
  
  .about-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  
  .about-description {
    font-size: 13px;
    line-height: 22px;
  }
  
  .btn-apply-about {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 12px;
  }

  .criteria-section {
    padding: 48px 0 64px 0;
  }

  .criteria-container {
    padding: 0 24px;
  }

  .criteria-header-block {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .criteria-main-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .criterion-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .criterion-number-circle {
    width: 45px;
    height: 45px;
    margin-bottom: 16px;
  }

  .criterion-number {
    font-size: 20px;
  }

  .criterion-name {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .criterion-description {
    font-size: 13px;
    line-height: 20px;
  }

  .btn-apply-criteria {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .criteria-header-block {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .criteria-main-title {
    font-size: 20px;
    line-height: 28px;
  }
  
  .criterion-card {
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .criterion-number-circle {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  
  .criterion-number {
    font-size: 18px;
  }
  
  .criterion-name {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .criterion-description {
    font-size: 12px;
    line-height: 18px;
  }
  
  .btn-apply-criteria {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 12px;
  }
  
  .criteria-action {
    margin-top: 32px;
  }

  .faq-section {
    padding: 48px 0 64px 0;
  }

  .faq-container {
    padding: 0 24px;
  }

  .faq-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .faq-description {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-question {
    padding: 18px 20px;
    border-radius: 12px;
  }

  .faq-question span {
    font-size: 15px;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 22px;
  }
  
  .faq-description {
    font-size: 13px;
    margin-bottom: 24px;
  }
  
  .faq-question {
    padding: 16px 18px;
    border-radius: 10px;
  }
  
  .faq-question span {
    font-size: 14px;
  }
  
  .faq-icon {
    width: 16px;
    height: 16px;
  }
  
  .faq-answer {
    padding: 0 18px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 18px 16px 18px;
  }
  
  .faq-answer p {
    font-size: 13px;
    line-height: 20px;
  }

  .partners-section {
    padding: 48px 0 64px 0;
  }

  .partners-container {
    padding: 0 24px;
  }

  .partners-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partner-logo-wrapper {
    padding: 20px;
    min-height: 100px;
    border-radius: 12px;
  }

  .partner-logo {
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .partners-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .partner-logo-wrapper {
    padding: 16px;
    min-height: 80px;
  }
  
  .partner-logo {
    max-height: 40px;
  }

  .contact-section {
    padding: 48px 0 64px 0;
  }

  .contact-container {
    padding: 0 24px;
  }

  .contact-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .contact-description {
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 22px;
  }

  .contact-form {
    gap: 20px;
  }

  .contact-label {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .contact-input,
  .contact-textarea {
    padding: 12px 16px;
    font-size: 16px; /* Évite le zoom sur iOS */
    border-radius: 12px;
  }

  .btn-send-message {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 22px;
  }
  
  .contact-description {
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 20px;
  }
  
  .contact-form {
    gap: 16px;
  }
  
  .contact-label {
    font-size: 12px;
  }
  
  .contact-input,
  .contact-textarea {
    padding: 10px 14px;
    font-size: 16px;
    border-radius: 10px;
  }
  
  .contact-textarea {
    min-height: 120px;
  }
  
  .btn-send-message {
    padding: 12px 20px;
    font-size: 14px;
  }

  .footer {
    padding: 40px 0 30px 0;
  }

  .footer-container {
    padding: 0 24px;
  }

  .footer-top {
    gap: 28px;
    margin-bottom: 28px;
  }

  .logo-white {
    height: 36px;
  }

  .contact-item span {
    font-size: 13px;
  }

  .contact-icon {
    width: 18px;
    height: 18px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-icon {
    width: 18px;
    height: 18px;
  }

  .footer-divider {
    margin-bottom: 24px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 32px 0 24px 0;
  }
  
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-top {
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .logo-white {
    height: 32px;
  }
  
  .footer-contact {
    gap: 12px;
  }
  
  .contact-item {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  
  .contact-item span {
    font-size: 12px;
  }
  
  .contact-icon {
    width: 16px;
    height: 16px;
  }
  
  .footer-social {
    gap: 10px;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
  }
  
  .social-icon {
    width: 16px;
    height: 16px;
  }
  
  .footer-divider {
    margin-bottom: 20px;
  }
  
  .footer-copyright {
    font-size: 12px;
    line-height: 18px;
  }
}

@media (max-width: 640px) {
  .header-container {
    padding: 12px 16px;
  }

  .hero-container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .advantages-container {
    padding: 0 20px;
  }

  .advantages-title {
    font-size: 24px;
  }

  .advantage-card {
    padding: 24px 16px;
  }

  .advantage-number-badge {
    width: 48px;
    height: 48px;
  }

  .advantage-number {
    font-size: 22px;
  }

  .advantage-name {
    font-size: 16px;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-main-title {
    font-size: 24px;
  }

  .about-block {
    padding: 24px 20px;
  }

  .about-title {
    font-size: 20px;
  }

  .criteria-container {
    padding: 0 20px;
  }

  .criteria-header-block {
    padding: 20px;
  }

  .criteria-main-title {
    font-size: 22px;
  }

  .criterion-card {
    padding: 20px 16px;
  }

  .criterion-number-circle {
    width: 42px;
    height: 42px;
  }

  .criterion-number {
    font-size: 18px;
  }

  .criterion-name {
    font-size: 15px;
  }

  .criterion-description {
    font-size: 12px;
  }

  .faq-container {
    padding: 0 20px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-description {
    font-size: 13px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question span {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .partners-container {
    padding: 0 20px;
  }

  .partners-title {
    font-size: 24px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partner-logo-wrapper {
    padding: 16px;
    min-height: 90px;
  }

  .partner-logo {
    max-height: 45px;
  }

  .contact-container {
    padding: 0 20px;
  }

  .contact-title {
    font-size: 24px;
  }

  .contact-description {
    font-size: 13px;
  }

  .contact-label {
    font-size: 13px;
  }

  .contact-input,
  .contact-textarea {
    padding: 10px 14px;
    font-size: 13px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-top {
    gap: 24px;
  }

  .logo-white {
    height: 32px;
  }

  .contact-item span {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

