/* How It Works Section */
#how-it-works {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

#how-it-works h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333333;
}

#how-it-works .steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

#how-it-works .steps li {
    font-size: 1.2em;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
    text-align: left;
}

#how-it-works .cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f2bc1c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#how-it-works .cta:hover {
    background-color: #e0a900;
}

/* Get Started Section */
#get-started {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

#get-started h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333333;
}

.trial-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.trial-form .form-group {
    margin-bottom: 20px;
}

.trial-form label {
    display: block;
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 10px;
}

.trial-form input[type="text"],
.trial-form input[type="email"],
.trial-form input[type="checkbox"] {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.trial-form input[type="checkbox"] {
    margin-top: 5px;
}

.trial-form button {
    padding: 15px 30px;
    background-color: #f2bc1c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.trial-form button:hover {
    background-color: #e0a900;
}

/* Benefits Section */
#benefits {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

#benefits h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333333;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.benefit-item {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-item h3 {
    font-size: 2em;
    color: #333333;
    margin-bottom: 20px;
}

.benefit-item p {
    font-size: 1.1em;
    color: #666666;
    line-height: 1.6;
}

/* Why CYDEF Section */
#why-cydef {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

#why-cydef h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333333;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.reason {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.reason h3 {
    font-size: 2em;
    color: #333333;
    margin-bottom: 20px;
}

.reason p {
    font-size: 1.1em;
    color: #666666;
    line-height: 1.6;
}

blockquote {
    margin-top: 50px;
    font-style: italic;
}

blockquote p {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 20px;
}

blockquote cite {
    font-size: 1.1em;
    color: #666666;
}



#content .cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #75a634;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.1em;
    margin-top: 20px;
}

#content .cta:hover {
    background-color: #93c843;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    margin-right: 20px;
}

.footer-section h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-section ul li a:hover {
    color: #f2bc1c;
}