* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Blog Post Container */
.blog-post {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Post Title */
.post-title {
    color: #00a8ff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 3rem;
}

.content-section {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    margin: 3.5rem 0;
    min-height: 300px;
}

/* If there’s an image, keep the flex layout — if not, make it block */
.content-section:not(:has(.image-wrapper)) {
    display: block;
}

/* Reverse direction for even sections that do have images */
.content-section:has(.image-wrapper):nth-child(even) {
    flex-direction: row-reverse;
}

/* Content Sections */
.content-section {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    margin: 3.5rem 0;
    min-height: 300px;
}

/* Images */
.content-section .image-wrapper {
    width: 45%;
    display: flex;
    align-items: center;
}

.content-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Content Wrapper */
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Content Spacing */
.content-wrapper > * {
    margin-bottom: 2rem;
}

.content-wrapper > *:last-child {
    margin-bottom: 0;
}

/* Headings */
.content-section h2 {
    color: #00a8ff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* Text Content */
.text-content {
    font-size: 1.1rem;
    line-height: 2;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.text-content p {
    margin-bottom: 1.8rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* Steps Container */
.steps-container {
    margin: 2rem 0;
}

/* Checkbox Items */
.checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding-right: 1rem;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    margin-top: 5px;
    border: 2px solid #00a8ff;
    cursor: not-allowed;
}

.checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-item span {
    font-size: 1.1rem;
    color: #ffffff;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-section {
        flex-direction: column !important;
        min-height: auto;
        gap: 2rem;
    }

    .content-section .image-wrapper {
        width: 100%;
        height: auto;
    }

    .content-section img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .content-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }

    .content-section .image-wrapper {
        height: auto;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .text-content {
        font-size: 1rem;
    }
    .sub-banner-section-outer {
        padding-top: 80px;
      }
}

@media (max-width: 480px) {
    .blog-post {
        width: 95%;
        padding: 1rem;
    }

    .content-section .image-wrapper {
        height: auto;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .text-content {
        font-size: 0.9rem;
    }
}
