/* style/resources-how-to-choose-best-platform.css */

/* Base Styles */
.page-resources-how-to-choose-best-platform {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #0a0a0a; /* Inherited from body or set explicitly if needed */
}

.page-resources-how-to-choose-best-platform__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-resources-how-to-choose-best-platform__hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #017439, #005a2e); /* Brand color gradient */
    color: #ffffff;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow: hidden;
}

.page-resources-how-to-choose-best-platform__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-resources-how-to-choose-best-platform__intro-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-resources-how-to-choose-best-platform__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-resources-how-to-choose-best-platform__btn-primary,
.page-resources-how-to-choose-best-platform__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;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-resources-how-to-choose-best-platform__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
}

.page-resources-how-to-choose-best-platform__btn-primary:hover {
    background-color: #e02a2a;
    border-color: #e02a2a;
}

.page-resources-how-to-choose-best-platform__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-resources-how-to-choose-best-platform__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
    border-color: #ffffff;
}

.page-resources-how-to-choose-best-platform__hero-image-wrapper {
    margin-top: 40px;
}

.page-resources-how-to-choose-best-platform__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

/* Content Area */
.page-resources-how-to-choose-best-platform__content-area {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-resources-how-to-choose-best-platform__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    line-height: 1.3;
}

.page-resources-how-to-choose-best-platform__section-title--white {
    color: #ffffff;
}

.page-resources-how-to-choose-best-platform__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-resources-how-to-choose-best-platform__paragraph--white {
    color: #ffffff;
}

/* Feature Grid */
.page-resources-how-to-choose-best-platform__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-choose-best-platform__card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: #ffffff;
}