/* General Body and Font Styling */
body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            /* color: #333; */
            margin: 0;
            padding: 0;
            background-color: #262431;
       
        }

/* Blog Container - The main white content box */
.blog-container {
     max-width: 960px;
    width: 100%;
   margin: 20px auto;
            
    background-color: #ffffff; /* Pure white background for the content box */
    padding: 30px 40px; /* Default padding for larger screens */
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.blog-container  p, .blog-container ul{ color: #212529;}
/* Blog Post Headings */
.blog-container .blog-post h1 {
    color: #212529;
    font-size: 2.5em; /* Default font size for large screens */
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.blog-container .blog-post h2 {
    color: #5800b3; /* Your accent purple for subheadings */
    font-size: 1.9em;
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
    font-weight: 600;
}

/* Paragraphs and Lists */
.blog-container .blog-post p {
    margin-bottom: 18px;
    font-size: 1.05em; /* Default font size for large screens */
    line-height: 1.7;
}

.blog-container .blog-post ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.blog-container .blog-post ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.05em; /* Default font size for large screens */
}

.blog-container .blog-post ul li::before {
    content: '\2022';
    color: #5800b3; /* Your accent purple bullet */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.blog-container .post-meta {
    font-size: 0.9em;
    color: #6c757d;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

/* Horizontal Rule */
.blog-container hr {
    border: 0;
    border-top: 1px solid #dee2e6;
    margin: 45px 0;
}

.blog-container .blog-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.blog-container .image-caption {
    text-align: center;
    font-style: italic;
    font-size: 0.9em;
    color: #6c757d;
    margin-top: -15px;
    margin-bottom: 35px;
}

/* --- NEW APP DOWNLOAD SECTION STYLES --- */
.blog-container .app-download-section {
    text-align: center;
    margin-top: 40px;
}

.blog-container .app-download-section h2 {
    color: #5800b3;
    font-size: 1.9em; /* Matches other h2 */
    margin-top: 0; /* Remove top margin as section provides spacing */
    margin-bottom: 15px;
    border-bottom: none; /* No border here */
    padding-bottom: 0;
}

.blog-container .app-download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between the two app store links */
    margin-top: 25px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.blog-container .app-store-link {
    display: flex;
    align-items: center;
    background-color: #212529; /* Dark background for the buttons */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-container .app-store-link:hover {
    background-color: #000000; /* Darker on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.blog-container .app-store-link i {
    font-size: 1.8em; /* Large icon inside the button */
    margin-right: 10px;
    color: #ffffff; /* White icon */
}

/* Call to Action Section (now "Call for Support") */
.blog-container .call-to-action {
    background-color: #4a009c;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    border: 1px solid #6c00e6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-container .call-to-action h3 {
    color: #ffffff;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-container .call-to-action p {
    color: #e0e0e0;
}

.blog-container .contact-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-container .btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.blog-container .btn::before {
    margin-right: 8px;
}

/* Specific Button Colors */
.blog-container .call-btn {
    background-color: #ffffff;
    color: #5800b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.blog-container .call-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.blog-container .whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-container .whatsapp-btn:hover {
    background-color: #1ea751;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* --- MOBILE VIEW SPECIFIC ADJUSTMENTS --- */

@media (max-width: 768px) {
    body {
        padding: 20px;
    }
   .blog-container {
        padding: 25px;
    }

    /* Font size adjustments */
    .blog-container .blog-post h1 { font-size: 2em; }
    .blog-container .blog-post h2 { font-size: 1.6em; }
    .blog-container .blog-post p, .blog-post ul li { font-size: 1em; }
    .blog-container .blog-icon { font-size: 4em; }

    /* CTA and App Download adjustments */
    .blog-container .call-to-action { padding: 25px; }
    .blog-container .call-to-action h3 { font-size: 1.6em; }
    .blog-container .app-download-section h2 { font-size: 1.6em; }

    /* Button stacking */
    .blog-container .contact-buttons, .app-download-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        margin-left: 0;
        margin-right: 0;
    }
    .blog-container .btn, .app-store-link { /* Apply full width to both types of buttons */
        width: 100%;
        margin: 0;
        padding: 10px 20px;
        font-size: 1em;
        box-sizing: border-box;
    }
    .blog-container .app-store-link i { font-size: 1.6em; } /* Adjust icon size within app buttons */
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    .blog-container {
        padding: 20px;
    }

    /* Font size adjustments for very small screens */
    .blog-container  .blog-post h1 { font-size: 1.8em; }
    .blog-container  .blog-post h2 { font-size: 1.4em; }
    .blog-container  .blog-post p, .blog-post ul li { font-size: 0.95em; }
    .blog-container  .blog-icon { font-size: 3.5em; }

    /* CTA and App Download adjustments */
    .blog-container  .call-to-action { padding: 20px; }
    .blog-container  .call-to-action h3 { font-size: 1.4em; }
    .blog-container  .app-download-section h2 { font-size: 1.4em; }

    .blog-container  .btn, .app-store-link {
        padding: 8px 15px; /* Slightly smaller padding for buttons */
        font-size: 0.95em; /* Smaller font for buttons */
    }
    .blog-container  .app-store-link i { font-size: 1.4em; } /* Adjust icon size within app buttons */
}