/* Start custom CSS for html, class: .elementor-element-5e34dcd *//* Universal Box Sizing */
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}

/* CSS Variables for easier theming */
:root {
    --primary-color: #0056b3; /* Dark Blue for main headings, links, buttons */
    --secondary-color: #FFD700; /* Gold/Yellow for highlights like hero banner background, underlines */
    --text-color: #333; /* Main body text color */
    --background-color-light: #f9f9f9; /* Light background for the overall body */
    --background-color-white: #ffffff; /* White background for main content and sidebar blocks */
    --border-color-light: #eee; /* Light grey for borders, table lines */
    --shadow-light: rgba(0, 0, 0, 0.1); /* Standard shadow for main blocks */
    --shadow-lighter: rgba(0, 0, 0, 0.05); /* Lighter shadow for sidebar elements, tables */
    --info-bg: #e6f7ff; /* Light blue for "Note" boxes */
    --info-border: #007bff; /* Blue border for "Note" boxes */
    --warning-bg: #fff3cd; /* Light yellow for "Warning" boxes */
    --warning-border: #ffc107; /* Orange border for "Warning" boxes */
    --success-bg: #e0ffe0; /* Light green for "Travel Tip" / "Solution" boxes */
    --success-border: #28a745; /* Green border for "Travel Tip" / "Solution" boxes */
    --whatsapp-green: #25d366; /* Standard WhatsApp green */
    --whatsapp-green-hover: #1da851; /* Slightly darker green for WhatsApp button hover */
}

/* Base Body Styles */
body {
    font-family: Arial, sans-serif; /* Clean, common font */
    line-height: 1.6; /* Improved readability for text */
    color: var(--text-color);
    background-color: var(--background-color-light);
    margin: 0; /* Remove default browser margin */
    padding: 0; /* Remove default browser padding */
    word-break: break-word; /* Prevents long words/URLs from overflowing */
    overflow-wrap: break-break-word; /* Modern equivalent for word-break */
}

/* Hero Banner Styling (Top section of the page) */
.hero-banner {
    background-color: var(--secondary-color); /* Bright yellow background */
    color: var(--primary-color); /* Dark blue text for contrast */
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 20px; /* Space below the banner before main content */
    box-shadow: 0 2px 5px var(--shadow-light); /* Subtle shadow for depth */
}

.hero-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color); /* Ensure consistent heading color */
}

/* Explicitly remove the custom underline from the hero h1, as it's a banner title */
.hero-banner h1::after {
    content: none;
}

.hero-banner p {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.hero-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.hero-button:hover {
    background-color: #004499; /* A darker blue on hover */
}

/* Main Page Layout (Flexbox Container for content and sidebar) */
.page-layout {
    max-width: 1200px; /* Overall maximum width of your content + sidebar */
    margin: 20px auto; /* Centers the entire layout block on the page */
    padding: 0 20px; /* Horizontal padding for spacing from screen edges */
    display: flex; /* Enable flexbox for side-by-side columns */
    gap: 30px; /* Space between the blog content and the sidebar */
    align-items: flex-start; /* Align items to the top to prevent sidebar from stretching */
}

/* Main Blog Content Area */
.blog-content {
    flex: 3; /* Blog content takes 3 parts of the available flex space */
    min-width: 0; /* Important: Allows content to shrink correctly within flexbox */
    padding: 25px; /* Internal padding for the blog content */
    background-color: var(--background-color-white);
    border-radius: 8px;
    box-shadow: 0 0 10px var(--shadow-light); /* Subtle shadow for the main block */
}

/* Sidebar Area */
.sidebar {
    flex: 1; /* Sidebar takes 1 part of the available flex space */
    min-width: 280px; /* Minimum width to prevent sidebar content from squishing */
    max-width: 350px; /* Maximum width for the sidebar, preventing it from getting too wide */
    padding: 20px;
    background-color: var(--background-color-white);
    border-radius: 8px;
    box-shadow: 0 0 10px var(--shadow-lighter); /* Lighter shadow than main content */
    display: flex; /* To stack ad cards/widgets vertically */
    flex-direction: column;
    gap: 20px; /* Space between elements in the sidebar */
}

/* Sidebar Ad Card Styling */
.ad-card {
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background-color: #fcfcfc; /* Slightly off-white background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Small shadow for cards */
}

.ad-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.ad-card h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 1.2em;
    color: var(--primary-color);
    border-bottom: none; /* Ensure no border/underline on ad card h3 */
    padding-bottom: 0;
}

/* Explicitly remove the custom underline from ad card h3 */
.ad-card h3::after {
    content: none;
}

.ad-card .arrow-icon {
    font-weight: bold;
    color: #666; /* Slightly muted arrow color */
}

.ad-card p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.ad-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.ad-button:hover {
    background-color: #004499; /* Darker blue on hover */
}

/* Generic Sidebar Widget Styling */
.sidebar-widget {
    background-color: var(--background-color-white);
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03); /* Very light shadow */
}

.sidebar-widget h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color-light); /* Separator line */
    padding-bottom: 10px;
}
/* Remove custom underline from sidebar widget h3 */
.sidebar-widget h3::after {
    content: none;
}

.sidebar-widget ul {
    list-style-type: none; /* Remove default bullets */
    margin: 0;
    padding: 0;
}
.sidebar-widget ul li {
    margin-bottom: 8px;
}
.sidebar-widget ul li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}
.sidebar-widget ul li a:hover {
    color: #004499;
    text-decoration: underline;
}


/* Headings within Blog Content Area */
.blog-content h1,
.blog-content h2,
.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative; /* Essential for positioning ::after pseudo-elements */
    border-bottom: none; /* Remove any default browser borders */
}

/* Custom Underline for H2 within blog content */
.blog-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* Spans the full width of the h2 element */
    height: 3px;
    background-color: var(--secondary-color); /* Yellow color for the underline */
}

/* Specific styling for H1 within the blog content (if present) */
.blog-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left; /* Align left for blog content headings */
}

/* Specific styling for H2 within the blog content */
.blog-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    border-bottom: 2px solid var(--border-color-light); /* Soft grey line for H2 */
    padding-bottom: 10px; /* Space above the soft grey line */
}

/* Specific styling for H3 within the blog content */
.blog-content h3 {
    margin-top: 20px;
    font-size: 1.4em;
    color: var(--primary-color);
}
/* Remove custom underline from H3 within blog content */
.blog-content h3::after {
    content: none;
}

p {
    margin-bottom: 10px;
}

/* General List Styling */
ul, ol {
    margin-left: 20px;
    margin-bottom: 10px;
}
ul {
    list-style-type: disc;
}
ol {
    list-style-type: decimal;
}

/* Image Wrapper for Blog Content (to center and apply styles) */
.blog-image {
    margin: 30px auto; /* Center the image and provide vertical spacing */
    max-width: 100%; /* Ensure it doesn't overflow its container */
    text-align: center; /* Center the image and caption */
    /* Optional: add a border or shadow around the image if desired */
    /* border: 1px solid var(--border-color-light); */
    /* border-radius: 8px; */
    /* padding: 10px; */
    /* box-shadow: 0 4px 8px var(--shadow-lighter); */
}

.blog-image img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below images */
    margin: 0 auto; /* Center the image within the figure */
    border-radius: 5px;
}

.blog-image figcaption {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
    text-align: center;
}


/* Table Responsiveness */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    display: block; /* Makes the table a block element to enable horizontal scrolling */
    overflow-x: auto; /* Enables horizontal scrolling if content overflows */
    -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
    box-shadow: 0 2px 5px var(--shadow-lighter); /* Light shadow for tables */
    border-radius: 5px;
}
th, td {
    border: 1px solid var(--border-color-light);
    padding: 10px; /* Slightly more padding for readability */
    text-align: left;
    vertical-align: top;
    white-space: normal; /* Allows text to wrap within cells by default */
    min-width: 120px; /* Ensure cells have a minimum readable width before scrolling */
}
th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #555;
}

/* Special Content Boxes (Notes, Warnings, Tips, Solutions) */
.note, .warning, .travel-tip, .solution {
    padding: 15px; /* More padding for distinct boxes */
    margin: 20px 0; /* More margin to separate from content */
    border-radius: 8px; /* Softer corners */
    border-left: 5px solid; /* Base for left border color */
}
.note {
    background-color: var(--info-bg);
    border-color: var(--info-border);
}
.warning {
    background-color: var(--warning-bg);
    border-color: var(--warning-border);
}
.travel-tip {
    background-color: var(--success-bg);
    border-color: var(--success-border);
}
.solution {
    background-color: #e9ffe9; /* A slightly different light green */
    border-color: #4CAF50; /* A darker green */
}

/* WhatsApp Call to Action (used multiple times) */
.whatsapp-cta {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 20px 25px; /* More padding */
    text-align: center;
    border-radius: 8px; /* Softer corners */
    margin-top: 30px;
    margin-bottom: 30px; /* Add margin below as well */
    font-size: 1.1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* More prominent shadow for a CTA */
}
.whatsapp-cta a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: text-decoration 0.2s ease;
}
.whatsapp-cta a:hover {
    text-decoration: underline;
}
.whatsapp-cta p {
    margin-bottom: 10px; /* Space between text lines within CTA */
}
.whatsapp-cta .summary-list {
    list-style-type: none;
    padding: 0;
    margin-top: 15px; /* More space above list */
    display: inline-block; /* Allows centering the list block itself within the CTA */
    text-align: left; /* Keep list items left-aligned within the block */
}
.whatsapp-cta .summary-list li {
    margin-bottom: 5px;
}
.whatsapp-cta .summary-list li:before {
    content: "✔️";
    margin-right: 8px;
    color: white; /* White checkmark for contrast */
}

/* Styles for CTA boxes within the blog content */
.cta-box {
    background-color: var(--background-color-light); /* Light background for inner CTAs */
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0; /* Vertical spacing between CTA boxes */
    text-align: center;
    box-shadow: 0 2px 5px var(--shadow-lighter);
}

.cta-box p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--text-color);
}

.cta-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto 15px auto; /* Center the list within the box */
    max-width: 80%; /* Constrain list width for better appearance */
    text-align: left;
}

.cta-box ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.cta-box ul li:before {
    content: '✅'; /* Checkmark for checklist items */
    position: absolute;
    left: 0;
    color: var(--success-border);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px; /* Space between text and button */
}

.cta-button:hover {
    background-color: #004499;
    transform: translateY(-2px); /* Slight lift effect */
}

.whatsapp-button {
    background-color: var(--whatsapp-green);
}

.whatsapp-button:hover {
    background-color: var(--whatsapp-green-hover);
}


/* Quotes */
.quote {
    font-style: italic;
    border-left: 4px solid #ccc; /* Thicker border */
    padding-left: 20px; /* More padding */
    margin: 25px 0; /* More margin to stand out */
    color: #555; /* Slightly greyed text for quotes */
}

/* FAQ List Custom Styling */
.faq-list {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}
.faq-list li {
    margin-bottom: 15px; /* More space between FAQ items */
    padding-left: 30px; /* More indent for the custom icon */
    position: relative;
    line-height: 1.4;
}
.faq-list li:not(.answer):not(.no-answer) {
    font-weight: bold; /* Make questions bold */
    color: var(--primary-color); /* Make questions primary color */
}
.faq-list li:before {
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--primary-color);
    content: "Q:";
    font-size: 1.1em; /* Slightly larger "Q:" */
}
.faq-list li.answer {
    font-weight: normal; /* Reset font weight for answers */
    color: var(--text-color); /* Reset color for answers */
}
.faq-list li.answer:before {
    content: "✅";
    color: var(--success-border); /* Use success green for checkmark */
}
.faq-list li.no-answer:before {
    content: "🛑";
    color: var(--warning-border); /* Use warning red for stop sign */
}

/* --- Responsive Design Media Queries --- */

/* Tablets and larger phones (e.g., up to 992px wide) */
@media (max-width: 992px) {
    .page-layout {
        gap: 20px; /* Reduce gap between main content and sidebar */
        padding: 0 15px; /* Slightly more padding at edges for smaller screens */
    }
    .blog-content {
        padding: 20px;
    }
    .sidebar {
        padding: 15px;
        min-width: 200px; /* Allow sidebar to be slightly narrower */
        max-width: 300px; /* Adjust max width for sidebar */
    }
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.6em;
        margin-top: 2rem;
    }
    h3 {
        font-size: 1.3em;
        margin-top: 1.5rem;
    }
    table {
        font-size: 0.95em;
    }
    th, td {
        padding: 8px;
        min-width: 90px; /* Further reduce min-width for table cells */
    }
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    .hero-banner p {
        font-size: 1.1rem;
    }
    .hero-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .cta-box ul {
        max-width: 90%; /* Adjust list width for smaller screens */
    }
}


/* Smaller tablets and large phones (e.g., up to 768px wide) - Stack columns */
@media (max-width: 768px) {
    .page-layout {
        flex-direction: column; /* Stack main content and sidebar vertically */
        padding: 0 15px; /* Adjust horizontal padding */
        gap: 20px; /* Space between stacked sections */
    }
    .blog-content, .sidebar {
        flex: none; /* Remove flex sizing when stacked */
        width: 100%; /* Take full width when stacked */
        max-width: none; /* Remove max-width constraint */
        min-width: unset; /* Remove min-width constraint */
    }
    .blog-content {
        padding: 15px;
    }
    .sidebar {
        padding: 15px;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.6em;
        margin-top: 2rem;
    }
    h3 {
        font-size: 1.2em;
        margin-top: 1.5rem;
    }
    .hero-banner h1 {
        font-size: 2rem;
    }
    .hero-banner p {
        font-size: 1rem;
    }
    .cta-box ul {
        max-width: 100%; /* Allow list to take full width of CTA box */
    }
}

/* Small phones (e.g., up to 480px wide) */
@media (max-width: 480px) {
    body {
        font-size: 0.9rem; /* Further reduce base font size */
    }
    .page-layout {
        padding: 0 10px; /* Further reduce padding */
    }
    .blog-content {
        padding: 10px;
    }
    .sidebar {
        padding: 10px;
    }
    h1 {
        font-size: 1.8em;
        margin-bottom: 1.5rem;
    }
    h2 {
        font-size: 1.4em;
        margin-top: 1.5rem;
    }
    h3 {
        font-size: 1.1em;
        margin-top: 1rem;
    }
    ul, ol {
        margin-left: 15px; /* Reduce indent for lists */
    }
    .whatsapp-cta {
        padding: 15px; /* Reduced padding for smaller screens */
        font-size: 1em;
    }
    .whatsapp-cta .summary-list {
        width: 100%;
        text-align: left; /* Keep list items left aligned */
        padding-left: 0;
        display: block; /* Make it a block element to take full width */
    }
    .whatsapp-cta .summary-list li {
        margin-bottom: 5px;
        display: block; /* Each item takes its own line */
    }
    .faq-list li {
        padding-left: 25px; /* Adjust indent for FAQs */
    }
    .faq-list li:before {
        font-size: 1em; /* Smaller "Q:" */
    }

    /* Stack table rows for very small screens */
    table thead {
        display: none; /* Hide table headers on very small screens */
    }
    table, tbody, tr, td {
        display: block; /* Make table elements act as blocks */
        width: 100%; /* Each cell takes full width */
        white-space: normal; /* Allow text to wrap inside cells */
    }
    table tr {
        margin-bottom: 10px;
        border: 1px solid var(--border-color-light);
        border-radius: 4px;
        background-color: var(--background-color-white);
        padding-bottom: 5px;
    }
    table td {
        text-align: right;
        padding-left: 50%; /* Space for the "header" label */
        position: relative;
        border: none;
        word-break: break-word;
    }
    table td::before {
        content: attr(data-label); /* Use data-label for pseudo-header */
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 10px;
        font-weight: bold;
        text-align: left;
        color: #555;
    }
}

/* Optional: Print styles for better readability when printed */
@media print {
    body {
        max-width: none;
        margin: 0;
        padding: 0;
        box-shadow: none;
        background-color: white;
        color: black;
    }
    .hero-banner, .sidebar, .whatsapp-cta, .cta-box { /* Hide CTAs for print */
        display: none;
    }
    .page-layout {
        flex-direction: column; /* Ensure main content prints linearly */
        max-width: none;
        padding: 0;
        margin: 0;
    }
    .blog-content {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background-color: white;
    }
    h1, h2, h3 {
        color: black;
        border-bottom: 1px solid #ccc;
    }
    h1::after, h2::after, .blog-content h2::after {
        background-color: #ccc; /* Grey out yellow underline for print */
        height: 1px; /* Thinner line for print */
    }
    .note, .warning, .travel-tip, .solution {
        border: 1px solid #ddd;
        background-color: #f0f0f0;
        page-break-inside: avoid; /* Keep boxes from breaking across pages */
    }
    a {
        text-decoration: underline;
        color: #000;
    }
    a[href]:after {
        content: " (" attr(href) ")"; /* Show link URLs in print */
        font-size: 80%;
    }
    table {
        display: table; /* Revert to normal table display */
        overflow-x: visible;
        white-space: normal;
        font-size: 1em;
    }
    table thead {
        display: table-header-group; /* Show headers */
    }
    table td::before {
        content: none; /* Hide pseudo-headers */
    }
    table tr {
        border: 1px solid #ddd;
        background-color: white;
    }
}/* End custom CSS */