/* Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Content Section */
#content {
    background-color: #f9f9f9;
    padding: 60px 0;
}

#content h2 {
    font-size: 2.5em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

#content p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.services-list {
    list-style-type: none;
    padding: 0;
    text-align: center;
    margin-bottom: 30px;
}

.services-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.dashboards {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.dashboard {
    width: 30%;
    text-align: center;
}

.dashboard img {
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.dashboard p {
    font-size: 0.9em;
    color: #666;
}

.special-features h3 {
    font-size: 1.5em;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.special-features p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

blockquote {
    background-color: #f1f1f1;
    border-left: 5px solid #75a634;
    margin: 20px 0;
    padding: 20px;
    font-size: 1.1em;
    color: #666;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    color: #333;
}

#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;
}

footer p {
    margin: 0;
    font-size: 0.9em;
    width: 100%;
    text-align: center;
}