/* style/resources-getting-started-guide.css */
.page-resources-getting-started-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
}

.page-resources-getting-started-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Color Contrast Handling */
.page-resources-getting-started-guide__dark-bg {
    background-color: #1a1a2e; /* Inherited from body, or similar dark tone */
    color: #ffffff;
}

.page-resources-getting-started-guide__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-resources-getting-started-guide__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #26A9E0;
}

.page-resources-getting-started-guide__section-title--white {
    color: #ffffff;
}

.page-resources-getting-started-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure header offset */
    min-height: 600px;
    overflow: hidden;
}

.page-resources-getting-started-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-resources-getting-started-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-resources-getting-started-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-resources-getting-started-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-resources-getting-started-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-getting-started-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-getting-started-guide__btn-primary,
.page-resources-getting-started-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.page-resources-getting-started-guide__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-resources-getting-started-guide__btn-primary:hover {
    background-color: #1e87b8;
    border-color: #1e87b8;
}

.page-resources-getting-started-guide__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-resources-getting-started-guide__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-resources-getting-started-guide__btn-secondary--white-text {
    color: #ffffff !important; /* Force white text for contrast on dark backgrounds */
    border-color: #ffffff !important;
    background-color: transparent !important;
}

.page-resources-getting-started-guide__btn-secondary--white-text:hover {
    background-color: #ffffff !important;
    color: #26A9E0 !important;
}

.page-resources-getting-started-guide__btn-primary--large {
    padding: 18px 35px;
    font-size: 1.1em;
}

.page-resources-getting-started-guide__introduction-section,
.page-resources-getting-started-guide__steps-section,
.page-resources-getting-started-guide__features-section,
.page-resources-getting-started-guide__tips-section,
.page-resources-getting-started-guide__faq-section,
.page-resources-getting-started-guide__cta-section {
    padding: 60px 0;
}

.page-resources-getting-started-guide__grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-resources-getting-started-guide__text-block p,
.page-resources-getting-started-guide__text-block ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-resources-getting-started-guide__text-block--white p,
.page-resources-getting-started-guide__text-block--white ul li {
    color: #f0f0f0;
}

.page-resources-getting-started-guide__image-block {
    text-align: center;
}

.page-resources-getting-started-guide__image-block--center {
    margin-top: 40px;
}

.page-resources-getting-started-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-getting-started-guide__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-getting-started-guide__step-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-getting-started-guide__step-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-resources-getting-started-guide__step-card p {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-resources-getting-started-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-getting-started-guide__feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-resources-getting-started-guide__feature-icon {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-resources-getting-started-guide__feature-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-resources-getting-started-guide__feature-card p {
    font-size: 1em;
    color: #555555;
}

.page-resources-getting-started-guide__tips-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.page-resources-getting-started-guide__tips-section ul li {
    margin-bottom: 10px;
    color: #f0f0f0;
}

.page-resources-getting-started-guide__faq-list {
    margin-top: 40px;
}

.page-resources-getting-started-guide__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    color: #333333;
}

.page-resources-getting-started-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-resources-getting-started-guide__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-getting-started-guide__faq-question h3 {
    margin: 0;
    color: #26A9E0;
}

.page-resources-getting-started-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-getting-started-guide__faq-item.active .page-resources-getting-started-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-getting-started-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #f0f0f0;
    color: #555555;
}

.page-resources-getting-started-guide__faq-item.active .page-resources-getting-started-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to contain content */
    padding: 15px 20px;
}

.page-resources-getting-started-guide__cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-getting-started-guide__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-getting-started-guide__hero-title {
        font-size: 2.8em;
    }
    .page-resources-getting-started-guide__hero-description {
        font-size: 1.1em;
    }
    .page-resources-getting-started-guide__section-title {
        font-size: 2em;
    }
    .page-resources-getting-started-guide__grid-2-col {
        grid-template-columns: 1fr;
    }
    .page-resources-getting-started-guide__image-block {
        order: -1; /* Image first on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-resources-getting-started-guide__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
    }
    .page-resources-getting-started-guide__hero-title {
        font-size: 2.2em;
    }
    .page-resources-getting-started-guide__hero-description {
        font-size: 1em;
    }
    .page-resources-getting-started-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-getting-started-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-getting-started-guide__btn-primary,
    .page-resources-getting-started-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Mobile image responsiveness */
    .page-resources-getting-started-guide img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-getting-started-guide__section,
    .page-resources-getting-started-guide__card,
    .page-resources-getting-started-guide__container,
    .page-resources-getting-started-guide__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
    .page-resources-getting-started-guide__steps-section,
    .page-resources-getting-started-guide__features-section,
    .page-resources-getting-started-guide__tips-section,
    .page-resources-getting-started-guide__faq-section,
    .page-resources-getting-started-guide__cta-section {
        padding: 40px 0;
    }
    .page-resources-getting-started-guide__feature-icon {
        max-width: 100px;
    }
    .page-resources-getting-started-guide__faq-question {
        font-size: 1.1em;
    }
    /* Mobile video responsiveness - included for robustness as per prompt, even if no video element is present */
    .page-resources-getting-started-guide video,
    .page-resources-getting-started-guide__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-resources-getting-started-guide__video-section,
    .page-resources-getting-started-guide__video-container,
    .page-resources-getting-started-guide__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .page-resources-getting-started-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-getting-started-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-getting-started-guide__btn-primary--large {
        font-size: 1em;
        padding: 15px 25px;
    }
}