.cta-button {
            background-color: rgba(237, 234, 230);
            color: black;
            padding: 0.9375em 1.875em;
            border: none;
            border-radius: 0.3125em;
            cursor: pointer;
            font-size: 18px;
            
            transition: background-color 0.3s ease, transform 0.3s ease;
            margin-bottom: 20em;
        }

        .cta-button:hover {
            background-color: #006980;
            color: white;
            transform: scale(1.05);
        }

        /* Pop-up modal styling */
        #popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        

        .popup-content {
    background-color: rgba(237, 234, 230);/* White background for the popup */
    margin: 15% auto; /* Center the popup */
    padding: 1.25em;
    border-radius: 0.3125em;
    width: 80%; /* Adjust width as needed */
    max-width: 37.5em; /* Maximum width */
    height: 900px; /* Adjust height as needed */
    overflow-y: auto; /* Allow vertical scrolling if content overflows */
}
#wave-animation {
    width: 100%;
    height: 800px; /* Increased height */
    border: none;
}

        #popup-fade {
            opacity: 1;
            transition: opacity 2s ease-in-out;
        }

        #popup-fade.fade-out {
            opacity: 0;
        }

        #quote-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: rgba(237, 234, 230);
            padding: 1.25em;
            border-radius: 0.625em;
            width: 80%;
            max-width: 700px;
            text-align: center;
            position: relative;
        }

        .close-btn {
            position: absolute;
            top: 0.625em;
            right: 0.625em;
            background-color: transparent;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }

        .close-btn:hover {
            color: red;
        }
        @media screen and (max-width: 768px){
            
        }