body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    line-height: 1.6;
}

h1 {
    color: #2A9D8F;
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    color: #264653;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.contact-section {
    margin-bottom: 30px;
}

.contact-info {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.contact-info li strong {
    color: #2A9D8F;
}

.contact-info a {
    color: #2A9D8F;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #264653;
}

.btn-post {
    display: inline-block;
    background-color: #E76F51;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
    display: block;
    width: 180px;
    margin: 20px auto;
}

.btn-post:hover {
    background-color: #C15140;
}

footer {
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

.header {
    background-color: #2A9D8F;
    padding: 0px 0;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site_title {
    font-size: 22px;
    font-weight: normal;
    font-family: 'Georgia', serif;
}

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    transition: background-color 0.3s;
}

.nav ul li a:hover {
    background-color: #fff;
    color: grey;
    /* Highlight color for active and hovered links */
    border-bottom: 2px solid #007bff;
    /* Underline effect */
    padding-bottom: 5px;
    border-radius: 4px;
}

.nav ul li a.active {
    background-color: #fff;
    color: #007bff;
    /* Highlight color for active and hovered links */
    border-bottom: 2px solid #007bff;
    /* Underline effect */
    padding-bottom: 5px;
    border-radius: 4px;
}

.image-container {
    width: 7%;
    /* Ensure container takes full width if needed */
    display: flex;
    /* Use flexbox to center the image if needed */
    justify-content: center;
    align-items: center;
}

.advert-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Remove default inline behavior */
}

@media screen and (max-width: 768px) {

    .nav {
        text-align: center;
    }

    .nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: block;


    }

    .nav ul li {
        padding: 2px;
    }

    .nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        transition: background-color 0.3s;
        display: block;
        /* if you remove this it doesnt cover whole width */
    }

    .nav ul li a:hover {
        background-color: #45a049;
        border-radius: 4px;

    }

    .nav ul li a.active {
        background-color: #fff;
        border-radius: 4px;
        color: #2A9D8F;
    }

    .container {
        display: block;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .left_side_div {
        display: none;
    }

    .right_side_div {
        display: none;
    }

    .left_centre_right_middle_container_div {
        display: flex;
        justify-content: space-between;
        margin-left: 0%;
        margin-right: 0%;

    }

    .header-container {
        display: block;
        align-items: center;
        margin: 0 auto;
        padding: 0 20px;
    }

.image-container {
            width: 20%;
            /* Ensure container takes full width if needed */
            display: flex;
            /* Use flexbox to center the image if needed */
            justify-content: center;
            align-items: center;
            margin: 0;
            padding: 0;
    }
}