body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #e0f0ff; /* Light blue background */
}

.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    text-align: center;
    background-color: #dbeaff; /* Background color */
}

.contact-section h1 {
    font-size: 42px;
    color: #2b3b4f; /* Darker text color */
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 20px;
    color: #606c7b;
    margin-bottom: 10px;
}

.contact-section a {
    font-size: 18px;
    color: #2b3b4f;
    text-decoration: none;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 50px 10px;
    }

    .contact-section h1 {
        font-size: 32px;
    }

    .contact-section p {
        font-size: 18px;
    }
}





body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa; /* Light background */
}

.g2-section {
    text-align: center;
    padding: 100px 20px;
}

.g2-section h1 {
    font-size: 36px;
    color: #333; /* Text color */
    margin-bottom: 20px;
}

.g2-section img {
    width: 120px;
    margin-bottom: 20px;
}

.g2-section h2 {
    font-size: 24px;
    color: #333; /* Text color */
}

.g2-section p {
    font-size: 18px;
    color: #606c7b;
    margin-top: 10px;
}

.g2-section a {
    color: #2a80ff;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .g2-section {
        padding: 50px 10px;
    }

    .g2-section h1 {
        font-size: 28px;
    }

    .g2-section h2 {
        font-size: 20px;
    }

    .g2-section img {
        width: 100px;
    }
}




body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px;
}

.testimonial-box {
    background-color: #fff;
    width: 30%;
    min-width: 300px;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: red;
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 16px;
    color: #777;
}

@media (max-width: 768px) {
    .testimonial-box {
        width: 90%;
    }
}







body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.footer {
    background-color: #2a2e35;
    color: #fff;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer .section h3 {
    color: #0091ff;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer .section ul {
    list-style: none;
    padding: 0;
}

.footer .section ul li {
    margin-bottom: 8px;
}

.footer .section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer .section ul li a:hover {
    color: #fff;
}

.email-signup {
    background-color: #3a3e45;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 20px;
}

.email-signup input[type="email"] {
    padding: 10px;
    border: none;
    flex: 1;
    font-size: 14px;
    border-radius: 3px;
}

.email-signup button {
    background-color: #0091ff;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
}

@media(max-width: 768px) {
    .footer {
        flex-direction: column;
    }

    .footer .section {
        min-width: 100%;
    }
}


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.bottom-footer {
    background-color: #2a2e35;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

.bottom-footer .footer-line {
    border-top: 1px solid #ffffff33;
    margin-bottom: 20px;
    width: 90%;
    margin: 0 auto;
}

.bottom-footer .links {
    margin-bottom: 10px;
}

.bottom-footer .links a {
    margin: 0 15px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.bottom-footer .links a:hover {
    color: #fff;
}

.bottom-footer p {
    font-size: 14px;
    color: #ccc;
}


