/* ------------------------------
   BASIC RESET & BODY STYLES
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f8f8f8;
    color: #222;
    padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
    line-height: 1.3;
}

p, ul, li {
    margin-bottom: 15px;
}

/* ------------------------------
   HEADER & NAVIGATION
--------------------------------*/
.site-header {
    background: #003f5c;
    color: #fff;
    padding: 15px 0;
}

.header-inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area img {
    width: 180px;
    height: auto;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* Mobile Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* ------------------------------
   LAYOUT (65% / 35%)
--------------------------------*/
.layout {
    width: 90%;
    max-width: 1200px;
    margin: 25px auto;
    display: flex;
    gap: 25px;
}

.content {
    width: 95%;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

.right-column {
    width: 35%;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.site-footer {
    text-align: center;
    padding: 20px;
    background: #003f5c;
    color: #fff;
    margin-top: 40px;
}

/* ------------------------------
   RESPONSIVE DESIGN
--------------------------------*/
@media (max-width: 900px) {
    .layout {
        flex-direction: column;
    }

    .content,
    .right-column {
        width: 100%;
    }
}

@media (max-width: 700px) {
    /* Show hamburger */
    .nav-toggle {
        display: block;
    }

    /* Hide nav by default */
    .main-nav {
        display: none;
        width: 100%;
        background: #003f5c;
        padding: 15px 0;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Base desktop behavior — fill the 65% column */
.content img.responsive-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 4px;
    display: block;
    margin: 0 auto 15px auto;
}

/* Tablet adjustments */
@media (max-width: 900px) {
    .content img.responsive-img {
        width: 90%;
    }
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .content img.responsive-img {
        width: 100%;
        max-width: 350px; /* keeps images from being huge on phones */
        margin: 0 auto 15px auto;
    }
}




/* ------------------------------
   RIGHT SIDE STYLES BROUGHT FROM 
   WORPRESS SITE
--------------------------------*/
.imgshadow {
	-webkit-filter: drop-shadow(5px 5px 5px #222);
	filter: drop-shadow(5px 5px 5px #222);
}
.sidetestimonials {
	font-family:Times New Roman;
	font-size:14px;
	font-style:italic;	
	padding:10px 0 10px 0;
}
.redtext {color:#ff0033;}
.textshadow {
	-webkit-filter: drop-shadow(2px 2px 2px #222);
	filter: drop-shadow(2px 2px 2px #222);
}
.softtextshadow {
	-webkit-filter: drop-shadow(1px 1px 1px #222);
	filter: drop-shadow(1px 1px 1px #222);
}
.textcenter {text-align:center;}
.onehalfXtext {font-size:1.5em;}
.twoXtext {font-size:2em;}
.padbottom15px {padding-bottom:15px;}
.bold {font-weight:bold;}
.ABfamily {font-family:Impact, Haettenschweiler, 'Franklin Gothic Bold', 'Arial Black', sans-serifk;
}
hr.dashed { border: 0; border-bottom: 1px dashed #ccc; background: #999; }