/* General Styling */
.page-blog-uuu8-platform-guide {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom */
}

.page-blog-uuu8-platform-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-uuu8-platform-guide__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #F3C54D; /* Gold color for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-blog-uuu8-platform-guide__section-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* Hero Section */
.page-blog-uuu8-platform-guide__hero-section {
    position: relative;
    background-color: #140C0C; /* Dark background for hero */
    display: flex;
    flex-direction: column; /* Default to column for mobile first */
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
}

.page-blog-uuu8-platform-guide__hero-image {
    width: 100%;
    max-width: 1200px; /* Max width for desktop display */
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-blog-uuu8-platform-guide__hero-content {
    text-align: center;
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-uuu8-platform-guide__main-title {
    font-size: clamp(1.8em, 4vw, 2.8em); /* Responsive font size for H1 */
    color: #F3C54D; /* Gold for H1 */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-uuu8-platform-guide__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-blog-uuu8-platform-guide__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-blog-uuu8-platform-guide__cta-button:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

/* Introduction Section */
.page-blog-uuu8-platform-guide__introduction-section {
    padding: 60px 0;
    background-color: #2A1212; /* Card BG color */
    margin-top: 40px;
    border-radius: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

/* Steps Section */
.page-blog-uuu8-platform-guide__steps-section {
    padding: 60px 0;
}

.page-blog-uuu8-platform-guide__step-card {
    background-color: #2A1212; /* Card BG color */
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 30px;
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E; /* Border color */
}

.page-blog-uuu8-platform-guide__step-image {
    width: 100%;
    max-width: 600px; /* Adjust max-width as needed */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-blog-uuu8-platform-guide__step-content {
    flex: 1;
    text-align: center;
}

.page-blog-uuu8-platform-guide__step-title {
    font-size: 1.8em;
    color: #F3C54D; /* Gold color for step titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-uuu8-platform-guide__step-text {
    font-size: 1em;
    margin-bottom: 20px;
    color: #FFF1E8;
}

.page-blog-uuu8-platform-guide__step-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.page-blog-uuu8-platform-guide__step-button:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

/* FAQ Section */
.page-blog-uuu8-platform-guide__faq-section {
    padding: 60px 0;
    background-color: #140C0C;
}

.page-blog-uuu8-platform-guide__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-blog-uuu8-platform-guide__faq-item {
    background-color: #2A1212; /* Card BG color */
    border: 1px solid #6A1E1E; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-uuu8-platform-guide__faq-question {
    font-size: 1.2em;
    color: #F3C54D; /* Gold color for questions */
    padding: 15px 20px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    background-color: #2A1212;
}

.page-blog-uuu8-platform-guide__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-blog-uuu8-platform-guide__faq-question.is-active::after {
    content: '-';
    transform: rotate(0deg); /* No rotation needed for - */
}

.page-blog-uuu8-platform-guide__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #FFF1E8;
    background-color: #140C0C; /* Darker background for answer */
}

.page-blog-uuu8-platform-guide__faq-answer.is-open {
    max-height: 500px; /* Arbitrary large value to allow content to show */
    padding: 15px 20px;
}

.page-blog-uuu8-platform-guide__faq-answer p {
    margin-bottom: 10px;
}

.page-blog-uuu8-platform-guide__faq-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.page-blog-uuu8-platform-guide__faq-button:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

/* Responsive Design */
@media (min-width: 769px) {
    .page-blog-uuu8-platform-guide__hero-section {
        flex-direction: column; /* Keep column for desktop too, but image is above content */
    }

    .page-blog-uuu8-platform-guide__hero-image {
        margin-bottom: 30px; /* Space between image and text */
    }

    .page-blog-uuu8-platform-guide__step-card {
        flex-direction: row; /* Desktop layout for step cards */
        text-align: left;
    }

    .page-blog-uuu8-platform-guide__step-card:nth-child(even) {
        flex-direction: row-reverse; /* Alternate image/text for better visual flow */
    }

    .page-blog-uuu8-platform-guide__step-image {
        margin-right: 30px;
        margin-bottom: 0;
        flex-shrink: 0; /* Prevent image from shrinking too much */
        width: 40%; /* Adjust image width */
        max-width: 400px;
    }

    .page-blog-uuu8-platform-guide__step-card:nth-child(even) .page-blog-uuu8-platform-guide__step-image {
        margin-left: 30px;
        margin-right: 0;
    }

    .page-blog-uuu8-platform-guide__step-content {
        text-align: left;
    }
}

/* Mobile Specific Adjustments (max-width: 768px) */
@media (max-width: 768px) {
    .page-blog-uuu8-platform-guide__section-title {
        font-size: 2em;
    }

    .page-blog-uuu8-platform-guide__main-title {
        font-size: clamp(1.6em, 6vw, 2.5em);
    }

    .page-blog-uuu8-platform-guide__description {
        font-size: 1em;
    }

    .page-blog-uuu8-platform-guide__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-blog-uuu8-platform-guide__introduction-section {
        margin-left: 10px;
        margin-right: 10px;
    }

    .page-blog-uuu8-platform-guide__step-card {
        padding: 20px;
    }

    .page-blog-uuu8-platform-guide__step-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }

    /* Important: prevent image overflow on mobile */
    .page-blog-uuu8-platform-guide img {
        max-width: 100%;
        height: auto;
        display: block; /* Ensure block level for max-width to work */
    }
}

/* Further Mobile Adjustments (max-width: 549px) */
@media (max-width: 549px) {
    .page-blog-uuu8-platform-guide__section-title {
        font-size: 1.8em;
    }

    .page-blog-uuu8-platform-guide__main-title {
        font-size: clamp(1.4em, 7vw, 2em);
    }

    .page-blog-uuu8-platform-guide__hero-content {
        padding: 20px 10px;
    }

    .page-blog-uuu8-platform-guide__cta-button {
        font-size: 1em;
        padding: 12px 20px;
    }

    .page-blog-uuu8-platform-guide__step-title {
        font-size: 1.5em;
    }

    .page-blog-uuu8-platform-guide__step-button {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .page-blog-uuu8-platform-guide__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
    }

    .page-blog-uuu8-platform-guide__faq-answer {
        padding: 10px 15px;
    }

    .page-blog-uuu8-platform-guide__container {
        padding: 0 10px;
    }
}