.banner_page {
    background-image: url("../images/innovation.jpeg");
}
.nav {
    background-color: white;
}
.nav ul {
    background-color: white;
}
a {
    color: black;
}
.main {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.appel-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}
.appel-section div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    height: 220px;
    box-sizing: border-box;
    cursor: pointer;
}

.appel-section div:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.appel-section i {
    font-size: 1.5rem;
    color: #60c338;
    margin-bottom: 10px;
}

.appel-section p {
    margin: 0;
}

.appel-section-critere {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.appel-section-critere div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    box-sizing: border-box;
    padding: 10px;
    margin: 10px;
    text-align: center;
}

.appel-section-critere img {
    max-width: 100%;
    height: auto;
    transition: 0.3s ease-in-out;
}
.appel-section-critere img:hover {
    transform: rotate(-5deg);
}
.appel-section-critere p {
    font-size: 1em;
    line-height: 1.5em;
    margin-top: 10px;
}

.application-process {
    list-style-type: decimal;
    padding-left: 20px;
    font-family: Arial, sans-serif;
}

.application-process li {
    margin-bottom: 20px;
}

.application-process strong {
    font-weight: bold;
    color: #333;
}

.application-process ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.application-process ul ul {
    list-style-type: circle;
    padding-left: 20px;
}

.application-process a.link {
    color: blue;
    text-decoration: none;
}

.application-process a.link:hover {
    text-decoration: underline;
}

.submission-deadline {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    color: red;
}

@media (max-width: 768px) {
    .appel-section-critere div {
        width: 100%;
    }
}
