/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
}

/* Navigation Bar */
/* ... (rest of your navigation bar CSS) ... */

/* Contact Page Styles */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
}

.contact-info, .contact-details {
    flex: 1;
    padding: 20px;
    text-align: center;
    color: #333;
}

.contact-info h2, .contact-details h2 {
    color: #55a630;
    margin-bottom: 20px;
}

.phone {
    font-weight: bold;
    margin-top: 5px;
    display: block;
}

.email {
    color: #55a630;
    text-decoration: none;
}


