/* Company Overview Section */
#company-overview {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

#company-overview h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333333;
}

.company-story,
.cydef-distinguishes,
.origins {
    margin-bottom: 50px;
    text-align: left;
}

.company-story p,
.cydef-distinguishes p,
.origins p {
    font-size: 1.2em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}


/* Call to Action Section */
#call-to-action {
    padding: 80px 0;
    background-color:#93c843;
    text-align: center;
    color: #ffffff;
}

#call-to-action h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
}

#call-to-action .cta {
    padding: 15px 30px;
    background-color: #f2bc1c;
    color: #333333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.2em;
}

#call-to-action .cta:hover {
    background-color: #e0a900;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

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;
}