body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5; 
}

.header {
    background-color: #252525;
    color: #fff;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    font-weight: bold;
}

.email, .phone-number {
    color: #fff;
    flex-basis: 50%;
    text-align: center;
}

.header-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-button, .nav-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    padding: 10px 20px;
}

.contact-button:hover, .nav-button:hover {
    text-decoration: underline;
}

.sub-header {
    height: 100px;
    background-color: #81a486;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.bee-paragraph {
    list-style-type: disc;
    padding-left: 20px;
    margin: 20px 0;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.photo-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.profile-photo {
    max-width: 30%;
    height: auto;
    border-radius: 50%;
}

.image-container {
    margin: auto;
}

.logo-image {
    height: 80px;
    width: auto;
}

.welcome-text {
    color: #000;
    text-align: center;
    margin: 0;
    line-height: 100px;
    font-size: 24px;
}

/* Responsive Design for Mobile Devices */
@media (max-width: 600px) {
    .header {
        flex-direction: column;
    }

    .phone-number {
        color: #add8e6; /* Light blue color */
    }

    .header-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-button, .nav-button {
        margin: 5px 0;
        font-size: 16px;
        padding: 8px 16px;
    }

    .sub-header {
        height: 80px;
    }

    .welcome-text {
        line-height: 80px;
        font-size: 20px;
    }

    .bee-paragraph {
        width: 80%;
        font-size: 14px;
    }

    .logo-image {
        height: 80px;
    }
}

/* Media Query for Desktops */
@media (min-width: 768px) {
    .content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: 1200px;
        margin: auto;
    }

    .bee-paragraph {
        width: 40%;
        font-size: 18px;
    }

    .profile-photo {
        max-width: 60%;
    }

    .logo-image {
        height: 150px;
    }
}

/* Popup Nav CSS */
.popup-nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.popup-nav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.popup-nav a:hover {
    color: #f1f1f1;
}

.popup-nav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); /* Dim background */
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 40px;
    border-radius: 10px;
    width: 50%; /* Adjust width as per requirement */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form input, .contact-form textarea {
    width: calc(100% - 20px); /* Full width minus padding */
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-sizing: border-box; /* Include padding in width */
    font-family: Arial, sans-serif; /* Match the font family of the website */
    font-size: 16px; /* Match the font size of the website */
}

.contact-form textarea {
    height: 150px; /* Larger area for message */
}
.submit-button {
    width: 100%;
    padding: 10px 20px;
    background-color: #4CAF50; /* Example color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #45a049;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .modal-content {
        width: 80%; /* Wider on small screens */
    }
}

#thankYouMessage h3 {
    color: #4CAF50; /* Change this to your preferred color */
}
