/* style/resources-s666-getting-started-guide.css */

/* Base styles for the page content, considering body background #1a1a1a (dark) */
.page-resources-s666-getting-started-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Inherit from body or shared */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

/* Hero Section */
.page-resources-s666-getting-started-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #1a1a1a; /* Explicit dark background for hero */
    overflow: hidden;
}

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

.page-resources-s666-getting-started-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

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

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

.page-resources-s666-getting-started-guide__subtitle {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

/* CTA Buttons */
.page-resources-s666-getting-started-guide__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-s666-getting-started-guide__btn-primary,
.page-resources-s666-getting-started-guide__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    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; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    max-width: 100%; /* Ensure buttons don't exceed container width */
    text-align: center;
}

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

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

.page-resources-s666-getting-started-guide__btn-secondary {
    background-color: transparent;
    color: #26A9E0; /* Brand primary color */
    border: 2px solid #26A9E0;
}

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

/* Content Section - General */
.page-resources-s666-getting-started-guide__content-section {
    padding: 60px 0;
}

.page-resources-s666-getting-started-guide__light-bg {
    background-color: #ffffff; /* Light background for content sections */
    color: #333333; /* Dark text for light background */
}

.page-resources-s666-getting-started-guide__section-title {
    font-size: 2.2em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-s666-getting-started-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-resources-s666-getting-started-guide__sub-section-title {
    font-size: 1.8em;
    color: #333333;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-resources-s666-getting-started-guide__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-s666-getting-started-guide__numbered-list,
.page-resources-s666-getting-started-guide__bullet-list {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-resources-s666-getting-started-guide__numbered-list li,
.page-resources-s666-getting-started-guide__bullet-list li {
    margin-bottom: 10px;
}

.page-resources-s666-getting-started-guide__numbered-list li strong {
    color: #26A9E0;
}

.page-resources-s666-getting-started-guide__text-block a,
.page-resources-s666-getting-started-guide__numbered-list a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-resources-s666-getting-started-guide__text-block a:hover,
.page-resources-s666-getting-started-guide__numbered-list a:hover {
    color: #1f8ac7;
}

/* Features Grid */
.page-resources-s666-getting-started-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}