.elementor-4442 .elementor-element.elementor-element-7d70f3c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-0ef2c4b *//* ===================================
   Global Styles & Reset
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #a67c52;
    --accent-color: #8ab4c8;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --font-primary: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    background-color: var(--background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* ===================================
   Header Styles
   =================================== */

.site-header {
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo a {
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.8;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--background-white) !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 60px 0 40px;
    color: var(--background-white);
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--background-white);
    text-decoration: underline;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.8;
}

.hero-section h1 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    color: var(--background-white);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    opacity: 0.95;
}

.post-meta .separator {
    opacity: 0.6;
}

.author {
    font-weight: 600;
}

/* ===================================
   Featured Image
   =================================== */

.featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Content Layout
   =================================== */

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    margin-bottom: 80px;
}

.post-content {
    max-width: 800px;
}

/* ===================================
   Typography
   =================================== */

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.post-content p {
    margin-bottom: 24px;
}

.post-content h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 50px 0 25px;
}

.post-content h3 {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 40px 0 20px;
}

.post-content h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.post-content ul,
.post-content ol {
    margin: 25px 0 25px 25px;
}

.post-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.post-content a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: var(--transition);
}

.post-content a:hover {
    color: var(--secondary-color);
    text-decoration-color: var(--secondary-color);
}

/* ===================================
   Content Images
   =================================== */

.content-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin: 40px 0;
}

/* ===================================
   Info Box
   =================================== */

.info-box {
    background: linear-gradient(135deg, #f0f7fb 0%, #e8f4f8 100%);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.info-box h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
}

.info-box p {
    margin-bottom: 0;
}

/* ===================================
   Comparison Table
   =================================== */

.comparison-table {
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-white);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--background-white);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: var(--background-light);
}

/* ===================================
   CTA Boxes
   =================================== */

.cta-box,
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--background-white);
    padding: 45px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
    box-shadow: var(--shadow-lg);
}

.cta-box h3,
.final-cta h3 {
    color: var(--background-white);
    font-size: 32px;
    margin: 0 0 15px;
}

.cta-box p,
.final-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.final-cta p {
    margin-bottom: 15px;
}

.phone-cta {
    margin-top: 20px;
    font-size: 16px;
}

.phone-cta a {
    color: var(--background-white);
    font-weight: 600;
    text-decoration: underline;
}

.phone-cta a:hover {
    opacity: 0.9;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--background-white);
}

.btn-primary:hover {
    background-color: #8f6841;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--background-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
}

/* ===================================
   Sidebar Styles
   =================================== */

.sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sidebar-widget {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 14px;
}

.sidebar-widget a {
    color: var(--text-medium);
    font-size: 16px;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
}

.sidebar-widget a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--background-white);
    text-align: center;
}

.cta-widget h3 {
    color: var(--background-white);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    color: var(--background-white);
    margin-bottom: 20px;
}

.cta-widget .btn-secondary {
    width: 100%;
    background-color: var(--background-white);
    color: var(--primary-color);
    border: none;
}

.cta-widget .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--background-white);
}

/* ===================================
   Footer Styles
   =================================== */

.site-footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--background-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.btn-footer {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: var(--background-white);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-footer:hover {
    background-color: #a67c52;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: var(--background-white);
}

/* ===================================
   Responsive Styles
   =================================== */

@media screen and (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .main-nav a {
        font-size: 13px;
    }
    
    .btn-nav {
        padding: 10px 20px;
    }
    
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .post-meta {
        flex-wrap: wrap;
        font-size: 14px;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .intro-text {
        font-size: 19px;
    }
    
    .post-content h2 {
        font-size: 28px;
        margin: 35px 0 20px;
    }
    
    .post-content h3 {
        font-size: 22px;
        margin: 30px 0 15px;
    }
    
    .cta-box,
    .final-cta {
        padding: 30px 20px;
    }
    
    .cta-box h3,
    .final-cta h3 {
        font-size: 24px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .logo-text {
        font-size: 22px;
    }
    
    .logo-subtitle {
        font-size: 11px;
    }
    
    .hero-section h1 {
        font-size: 26px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .post-content h2 {
        font-size: 24px;
    }
    
    .post-content h3 {
        font-size: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    .site-header,
    .sidebar,
    .cta-box,
    .final-cta,
    .site-footer {
        display: none;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .post-content h2 {
        page-break-after: avoid;
    }
}/* End custom CSS */