.p+{
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--text-dark);
    text-align: center;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}
.hero-title {
    transition: color 0.3s ease;
}
.hero-title:hover {
    color: var(--navy-accent);
}
.p+ {
    transition: color 0.3s ease;
}
.p+:hover {
    color: var(--navy-accent);
}
.statis div p:nth-child(1) {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}
.hero-content {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
    display: flex;
}
.container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}
.text {
    text-align: justify;
    font-size: 1em;
}
label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
input {
    background-color: rgb(218, 218, 214);
    width: 200%;
    height: 40px;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
}
textarea {
    background-color: rgb(227, 227, 225);
    width: 200%;
    height: 100px;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
    resize: vertical;
}
input:focus, textarea:focus {
    border-color: var(--navy-accent);
    outline: none;
    box-shadow: 0 0 5px var(--navy-accent);
}
button {
    background-color: var(--navy-accent);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: var(--navy-dark);
}
.apropos-text{
    font-size: 1.1em;
}