body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.quote-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto;
    padding-top: 60px;
}
.quote-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 40%; /* Reduced width */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

@media (max-width: 768px) {
    .quote-modal-content {
        width: 70%; /* Adjust width for smaller screens */
    }
}

h2 {
    text-align: center;
    color: #333;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 220px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

button.submit-btn {
    background-image: linear-gradient(to right, #127a99, #4dadc9,#127a99);
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    transition: background 0.3s ease-in-out;
}

button.submit-btn:hover {
    background-image: linear-gradient(to right, #4dadc9, #80c8d0,#4dadc9);
}

.close-btn {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 25px;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.terms-text {
    font-size: 16px;
    text-align: center;
    margin: 10px 0;
}

.terms-text a {
    color: #4CAF50;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .quote-modal-content {
        width: 80%;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        min-width: 100%;
    }
}
.contact-info {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}
.get-quote-btn {
      background-color: #62d167; 
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    transition: background-color 0.3s, box-shadow 0.3s ease-in-out; 
}
.get-quote-btn:hover {
    background-color: #95e699; /* Darker green on hover */

}

.quote-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.quote-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 40%; /* Reduced width */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close-btn {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 25px;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Other styles remain the same... */


