/* Base styles for the page */
.page-blog-beginner-guide-5699-no-hu-selection {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    background: #F4F7FB; /* Background */
    padding-bottom: 40px;
}

.page-blog-beginner-guide-5699-no-hu-selection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-beginner-guide-5699-no-hu-selection__section {
    padding: 60px 0;
}

.page-blog-beginner-guide-5699-no-hu-selection__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-beginner-guide-5699-no-hu-selection__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%); /* Main colors */
    border-radius: 2px;
}

.page-blog-beginner-guide-5699-no-hu-selection__content-area {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.page-blog-beginner-guide-5699-no-hu-selection p {
    margin-bottom: 15px;
    font-size: 17px;
    color: #1F2D3D; /* Text Main */
}

/* Hero Section */
.page-blog-beginner-guide-5699-no-hu-selection__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
    overflow: hidden;
}

.page-blog-beginner-guide-5699-no-hu-selection__hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-beginner-guide-5699-no-hu-selection__hero-text-block {
    flex: 1;
    min-width: 300px;
    color: #ffffff;
    text-align: left;
}

.page-blog-beginner-guide-5699-no-hu-selection__main-title {
    font-size: clamp(32px, 4vw, 48px); /* H1 font size clamp */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-blog-beginner-guide-5699-no-hu-selection__hero-description {
    font-size: 19px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-blog-beginner-guide-5699-no-hu-selection__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Ensure buttons wrap on mobile */
}

.page-blog-beginner-guide-5699-no-hu-selection__cta-buttons--center {
    justify-content: center;
    margin-top: 30px;
}

.page-blog-beginner-guide-5699-no-hu-selection__btn-primary,
.page-blog-beginner-guide-5699-no-hu-selection__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons adapt to container width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-blog-beginner-guide-5699-no-hu-selection__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-beginner-guide-5699-no-hu-selection__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-beginner-guide-5699-no-hu-selection__btn-secondary {
    background: #ffffff;
    color: #2F6BFF;
    border: 2px solid #2F6BFF; /* Border color from main color */
}

.page-blog-beginner-guide-5699-no-hu-selection__btn-secondary:hover {
    background: #f0f0f0;
    color: #1a4fbf;
    border-color: #1a4fbf;
}

.page-blog-beginner-guide-5699-no-hu-selection__hero-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-beginner-guide-5699-no-hu-selection__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
}

/* Content Images */
.page-blog-beginner-guide-5699-no-hu-selection__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-blog-beginner-guide-5699-no-hu-selection__content-image--center {
    margin-left: auto;
    margin-right: auto;
}

/* Dark Section */
.page-blog-beginner-guide-5699-no-hu-selection__dark-section {
    background: #2F6BFF; /* Main color as background */
    color: #ffffff;
}

.page-blog-beginner-guide-5699-no-hu-selection__dark-section .page-blog-beginner-guide-5699-no-hu-selection__section-title {
    color: #ffffff;
}

.page-blog-beginner-guide-5699-no-hu-selection__dark-section .page-blog-beginner-guide-5699-no-hu-selection__section-title::after {
    background: #ffffff;
}

.page-blog-beginner-guide-5699-no-hu-selection__dark-section p {
    color: #f0f0f0;
}

/* Feature Grid for Criteria Section */
.page-blog-beginner-guide-5699-no-hu-selection__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-blog-beginner-guide-5699-no-hu-selection__feature-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-blog-beginner-guide-5699-no-hu-selection__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-blog-beginner-guide-5699-no-hu-selection__feature-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

/* List styles */
.page-blog-beginner-guide-5699-no-hu-selection__list,
.page-blog-beginner-guide-5699-no-hu-selection__bullet-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
}

.page-blog-beginner-guide-5699-no-hu-selection__list-item,
.page-blog-beginner-guide-5699-no-hu-selection__bullet-list-item {
    background: #ffffff; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}