/* Basic Reset */
body, h1, ul, li, a, p {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: #333;
    box-sizing: border-box;
    font-family: verdana, tahoma, arial;
}


/* Desktop Layout */
.wrapper {
    display: flex;
    justify-content: space-between;
        max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.column1 {
    width: 75%; /* 3/4 of the width */
}

.column2 {
    width: 25%; /* 1/4 of the width */
}





p {
    font-size: 1.1em;
}

/* Header Styling */
.header {
    background: #0044cc;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
}

.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1280px; /* Set header width to 1280px */
    margin: 0 auto;
    position: relative;
}

.logo h1 {
    color: #fff;
    font-size: 24px;
    flex: 1;
}

/* Navbar Styling */
.navbar {
    display: flex;
    align-items: center;
    flex: 1;
}

.menu {
    display: flex;
    gap: 15px;
}

.menu li {
    position: relative;
}

.menu a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s;
}

.menu a:hover {
    background: #003399;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    min-width: 150px;
}

.dropdown-menu li a {
    color: #333;
    padding: 10px 15px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.phone-number {
    color: #fff;
    font-weight: bold;
    display: block; /* Display phone number by default */
}

.cta-button {
    background: #ff6600;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
    text-align: center;
}

.cta-button:hover {
    background: #cc5200;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Main Container with Two Columns */
.main-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Area */
.content {
    max-width: 700px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Content Images Styling */
.content img {
    max-width: 700px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Widget Area */
.widget-area {
    flex: 1;
    background: #e9ecef;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.widget-area img {
    max-width: 100%;
}

.post-categories {
    font-size: 0.9em;
    color: #666;
}

.post-categories a {
    color: #0073e6;
    text-decoration: none;
}

.post-categories a:hover {
    text-decoration: underline;
}


img.banner  {
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Footer Styling */
.footer {
    background: #0044cc;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.footer-container p {
    color: #ffffff;
}

/* Post Wrapper Styling */
.postwrapper {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-top: 30px;
    margin-bottom: 50px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.google-maps {
        position: relative;
        padding-bottom: 75%; // This is the aspect ratio
        height: 0;
        overflow: hidden;
    }

.google-maps iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }


/* Hero Section */
/* Hero Section */
.hero {
    background-color: #f0f0f0; /* Background color for hero section */
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto; /* Center the hero container */
    width: 100%;
}

.hero-text {
    flex: 1;
    font-size: 1.5em;
    color: #333;
    padding-right: 20px; /* Add some spacing between text and CTA */
}

.hero-text p {
    font-size: 1.2em;
    line-height: 1.5;
}

.hero-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Style for CTA Button */
.hero-cta a {
    background-color: #ff6600;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background 0.3s;
}

.hero-cta a:hover {
    background-color: #cc5200;
}

/* Three Boxes Section */
.boxes {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    gap: 20px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.box {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.box-content h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.box-content p {
    font-size: 1.1em;
}

/* Frontpage Content Section */
.frontpage-content {
    padding: 40px 20px;
    background-color: #fff;
    /*font-size: 1.2em;*/
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.column2-content{
        padding: 40px 20px;
    background-color: #fff;
}

/* YouTube Section */
.youtube-section {
    padding: 40px 20px;
    background-color: #f0f0f0;
    text-align: center;
    max-width:1280px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-section iframe {
    max-width: 100%;
}

/* Last Posts Section */
.last-posts {
    padding: 40px 20px;
    background-color: #fff;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.last-posts h2 {
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 20px;
}

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

.post {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.post img {
    margin-bottom: 20px;
    width:100%;
}
/* Banner and Widget Section */
.banner-widget {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 20px;
}

.banner {
    flex: 1;
}

.widget-content {
    flex: 1;
}
.related, .sites {
    margin-top: 50px;
}
.related li {
    list-style: square;
    margin-left: 15px;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #cecece;
}
.sites li {
    list-style: square;
    margin-left: 15px;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #cecece;
}

.related-posts li {
    list-style: disc;
    margin-left: 15px;
    margin-bottom: 6px;
    padding-bottom: 6px;
}
.content hr {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        gap: 0;
        background: #0044cc;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
    }

    .menu-toggle:checked + .hamburger-menu + .menu {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
    }

    .header-right {
        flex-direction: column;
    }

    .phone-number {
        display: block;
        margin-top: 10px;
        text-align: center;
    }

    .cta-button {
        margin-top: 5px;
        display: block;
        text-align: center;
    }

    .main-container {
        flex-direction: column;
        padding: 0px; /* Remove padding on mobile */
    }

    .content img {
        max-width: 100%; /* Adjust image max-width to 100% on mobile */
    }

    .widget-area {
        order: -1;
    }
 .hero {
        padding: 20px 10px;
        flex-direction: column; /* Stack text and CTA vertically on mobile */
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-text {
        text-align: center;
        padding-right: 0; /* Remove padding on mobile */
        margin-bottom: 20px; /* Add space between text and CTA */
    }

    .hero-cta {
        justify-content: center; /* Center the CTA button on mobile */
    }

    .hero-cta a {
        width: 100%; /* Make CTA button full-width on mobile */
        text-align: center;
        max-width: 300px; /* Set a max width to prevent the button from being too large */
    }

    .boxes {
        flex-direction: column;
    }

   .post-container {
        flex-direction: column;
    }

    .post {
        margin-bottom: 20px; /* Add space between posts in mobile view */
    }

    .banner-widget {
        flex-direction: column;
    }
    .wrapper {
        flex-direction: column; /* Stack the columns vertically */
    }

    .column1,
    .column2 {
        width: 100%; /* Full width for both columns on mobile */
    }
}