@font-face {
    font-family: 'Optima';
    font-style: normal;
    font-weight: normal;
    src: local('Optima'), url('../font/OPTIMA.woff') format('woff');
}
@font-face {
    font-family: 'Optima Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Optima Italic'), url('../font/Optima_Italic.woff') format('woff');
   }
@font-face {
    font-family: 'Optima Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Optima Medium'), url('../font/Optima Medium.woff') format('woff');
}
@font-face {
    font-family: 'Optima Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Optima Bold'), url('../font/OPTIMA_B.woff') format('woff');
}
body {
    font-family:'Optima';
    font-size:14px;
    /*background-color:#F1F8F6;*/
    background-color:#f8f4ec;
    /*background-color:#FAF0E6;*/
    /*background-color:#DBEAD5;*/
}
header {
    display:flex;
    position:sticky;
    z-index:1050;
    top:0;
    font-size:15px;
    font-weight:600;
    background-color:#f8f4ec;
    color:#000000;
}
.header-logo {
    order:1;
    flex-grow:1;
    display:flex;
    justify-content:center;
    align-items:center;
}
.header-logo img {
    width:150px;
    height:auto;
}
.header-navigation {
    order:2;
    flex-grow:1;
    display:flex;
    justify-content:right;
    align-items:center;
}
.header-navigation button i {
    color:#000000;
}
.header-navigation a {
    color:#000000;
}
.header-signup {
    order:3;
    flex-grow:1;
    display:flex;
    padding-left:5px;
    justify-content:left;
    align-items:center;
}
.header-signup a {
    text-decoration:none;
    color:#000000;
}
/**/
.section-movolve {
    margin-top:70px;
}
.section-movolve-first {
    font-size:30px;
    text-align:center;
}
.section-movolve-second {
    margin-top:30px;
    font-size:16px;
    font-weight:600;
    text-align:center;
}
.section-movolve-signup {
    margin-top:30px;
    text-align:center;
}
.section-movolve-signup a img {
    width:20px;
    height:auto;
    margin:5px;
}
/**/
.section-howitworks {
    margin-top:50px;
    text-align:center;
}
.section-howitworks-steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.step {
    flex: 1 1 calc(20% - 20px);
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.step-number {
    width: 32px;
    height: 32px;
    background: #4a90e2;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 14px;
}
.step-title {
    text-align:left;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.step-desc {
    text-align:justify;
    font-size: 14px;
    color: #666;
}
.section-howitworks-signup {
    margin-top:30px;
    text-align:center;
}
.section-howitworks-signup a img {
    width:20px;
    height:auto;
    margin:5px;
}
/**/
.section-howcurate {
    margin-top:50px;
    text-align:center;
}
.section-howcurate-content {
    font-size:17px;
    font-weight:500;
}
.section-howcurate-content span {
    display:block;
    text-align:center;
}
.section-howcurate-item-container {
    display:flex;
    flex-wrap: rap;
    justify-content:space-around;
}
.section-howcurate-item-container > div {
    flex: 1 1 calc(30% - 20px);
    margin:10px;
    padding:10px;
    text-align:center;
    background-color:#cccccc;
}
/**/
.section-feedback {
    margin-top:50px;
}
.section-feedback-title {
    text-align:center;
}
.feedback-container {
    display:flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.feedback-card {
    flex: 1 1 calc(20% - 20px);
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quote {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
}
.author {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 4px;
}
.location {
    font-size: 13px;
    color: #888;
}

/**/
.section-location {
    margin-top:50px;
    text-align:center;
}

/* FOOTER */
footer {
    padding:20px;
    background-color:#f8f4ec;
    color:#000000;
}
footer a {
    text-decoration:none;
    color:#000000;
}
.footer-logo img {
    width:150px;
    height:auto;
}
.footer-navigation {
    text-align:center;
}
.footer-navigation a {
    display:inline-block;
    margin-right:10px;
    margin-left:10px;
}
.footer-socialmedia {
    text-align:center;
}
.footer-socialmedia a {
    margin-right:10px;
    margin-left:10px;
}
.footer-copyright {
    text-align:center;
}
@media (max-width:768px) {
    .header-logo {
        order:2;
        width:40%;
    }
    .header-logo img {
        width:130px;
    }
    .header-navigation {
        order:1;
        width:30%;
        justify-content:center;
    }
    .header-signup {
        width:30%;
        justify-content:center;
    }
    .header-navigation-mobile-content {
        background-color:#ffffff;
    }
    .social-icons a {
      margin-right: 15px;
      font-size: 1.3rem;
      color: #333;
    }
    .social-icons a:hover {
      color: #007bff;
    }
    .section-movolve {
        margin-top:50px;
    }
    .steps-container {
        flex-direction: column;
    }
    .step {
        flex: 1 1 100%;
    }
    .feedback-container {
        flex-direction: column;
    }
    .section-howcurate-item-container {
        flex-direction: column;
    }
    .section-howcurate-item-container > div {
        flex: 1 1 100%;
    }
    /* FOOTER */
    .footer-logo {
        text-align:center;
    }
    .footer-navigation a {
        display:block;
    }
}
