/* General Reset and Box-Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f4f4f9;
    background-color: #181818; /* Dark background for night mode */
    padding: 0;
    margin: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header Styling */
.header {
    background-color: #222;
    color: #f4f4f9;
    padding: 10px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ad Banner Wrapper */
.ad-banner-wrapper {
    width: 100%;  /* Full width of the container */
    max-width: 900px;  /* Match the form container width */
    padding: 20px 0;  /* Add equal padding on top and bottom */
    margin: 20px auto;  /* Center the wrapper and add vertical margin */
    box-sizing: border-box;  /* Include padding in the element's total size */
    text-align: center;  /* Horizontally center the content inside */
    height: 100px;  /* Fixed height for the banner container */
    background-color: #333;  /* Background color for the ad banner */
    color: #fff;  /* Text color */
}

/* Placeholder Text inside Ad Banner */
.ad-banner-wrapper p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    line-height: 100px;  /* Vertically center the text inside the div */
}

/* Container for main content */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 70px; /* Added top padding to ensure content starts below the fixed header */
}

/* File Upload Form */
.form-column {
    background-color: #282828;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #f4f4f9;
    margin-bottom: 20px;
}

.form-column h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-column .tagline {
    font-size: 18px;
    color: #888;
    margin-bottom: 30px;
}

.upload-label {
    font-size: 16px;
    color: #f4f4f9;
    display: block;
    margin-bottom: 10px;
}

input[type="file"] {
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #444;
    margin-bottom: 20px;
    width: 100%;
    cursor: pointer;
    background-color: #333;
    color: #f4f4f9;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    background-color: #444;
    border-color: #555;
}

button.submit-btn {
    padding: 15px 30px;
    background-color: #FF0000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

button.submit-btn:hover {
    background-color: #EA0606;
}

.supported-files {
    margin-top: 20px;
    text-align: center;
}

.supported-files img {
    height: 50px;
}

/* Result Section */
.result-container {
    margin-top: 40px;
    text-align: center;
    color: #f4f4f9;
}

h3 {
    font-size: 22px;
}

p {
    font-size: 18px;
    color: #888;
}

a.btn {
    padding: 15px 30px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    transition: background-color 0.3s;
}

a.btn:hover {
    background-color: #218838;
}

.download-icon {
    height: 30px;
    margin-right: 10px;
}

/* Footer Section */
.footer {
    background-color: #222;
    padding: 20px;
    color: #f4f4f9;
    text-align: center;
}

.footer a {
    color: #f4f4f9;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
        padding-top: 70px;
    }

    .form-column {
        padding: 20px;
    }

    .form-column h1 {
        font-size: 28px;
    }

    .form-column .tagline {
        font-size: 16px;
    }

    .upload-label {
        font-size: 14px;
    }

    input[type="file"] {
        padding: 12px;
        font-size: 14px;
    }

    button.submit-btn {
        padding: 12px 24px;
        font-size: 16px;
    }

    .result-container a.btn {
        width: 100%;
    }

    /* Ad Banner Responsiveness */
    .ad-banner-wrapper {
        padding: 5px 0;  /* Less padding on mobile */
        height: auto;
        max-width: 100%;
    }

    .ad-banner-wrapper p {
        font-size: 16px;  /* Adjust font size on mobile */
        line-height: auto;  /* Adjust line height for better spacing */
    }

    .ad-banner-wrapper img {
        width: 100%;  /* Full width of the container */
    }
}
/* General text styling */
.article-content {
    color: #b0b0b0; /* Soft gray for main text */
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Headings - use white for headings and bullets */
.section-heading,
.sub-heading,
.highlight-text {
    color: #ffffff; /* White color for main headings and key text */
}

/* Styling for lists */
.file-formats-list,
.use-cases-list,
.features-list,
.steps-list {
    margin-left: 20px;
}

.file-formats-list li,
.use-cases-list li,
.features-list li,
.steps-list li {
    margin-bottom: 10px;
}

/* Highlighted text (white text before the colon in lists) */
.highlight-text {
    color: #ffffff; /* White for key points like "Image Files:", "Software Testing:", etc. */
}

/* Style for bolded items */
strong {
    color: #ffffff; /* White for bold items */
}
