.ready-section {
  display: flex;
  justify-content: center;
  width: 100%;
  /* min-height: 50vh; */
  /* padding: 80px 0; */
  background: #fff;
}

.ready-wrapper {
  max-width: 1200px;
  padding: 40px 20px 80px 20px;
  /* margin: 50px auto; */
  font-family: 'Roboto', sans-serif;
}

.ready-container {
    max-width: 100%;
    margin: 0 auto;
}

.ready-help-content {
    background-color: #B8FFBF; /* Fond vert clair */
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.ready-help-text {
    flex: 1;
}

.ready-help-label {
    background: none;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid #134F50;
    color: #134F50;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.ready-title {
    margin-bottom: 15px;
    text-align: left;
    color: #134F50;
    /* Police */
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.ready-subtitle {
    margin: 0;
    line-height: 1.6;
    text-align: left;
    color: #134F50;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Boutons */
.ready-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    align-self: flex-end;
}

.ready-button {
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    width: 220px;
    text-align: center;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Bouton principal */
.ready-button.primary {
    color: #fff;
    background-color: #134F50;
    border: none;
}

/* Bouton secondaire */
.ready-button.secondary {
    color: #134F50;
    background-color: transparent;
    border: 2px solid #134F50;
}

/* Responsive */
@media (max-width: 768px) {
    .ready-help-content {
        flex-direction: column;
        text-align: center;
    }

    .ready-buttons {
        align-items: center;
        width: 100%;
    }

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

    .ready-button {
        width: 100%;
    }
}
