/* style/beginner-guide-common-terms.css */
.page-beginner-guide-common-terms {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light grey/off-white for general text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-beginner-guide-common-terms__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-beginner-guide-common-terms__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a3f4a 100%); /* Dark gradient for hero */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    border-bottom: 2px solid #FFD700;
}

.page-beginner-guide-common-terms__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-common-terms__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e5dfd3;
}

.page-beginner-guide-common-terms__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA button */
    color: #1A202C; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-common-terms__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-beginner-guide-common-terms__content {
    padding: 60px 0;
}

.page-beginner-guide-common-terms__intro-text,
.page-beginner-guide-common-terms__conclusion {
    font-size: 1.1em;
    margin-bottom: 40px;
    text-align: justify;
    color: #e5dfd3;
}

.page-beginner-guide-common-terms__section-heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section headings */
    margin-top: 50px;
    margin-bottom: 30px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    text-align: left;
}

.page-beginner-guide-common-terms__term-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-beginner-guide-common-terms__term-item {
    background-color: #2a303c; /* Slightly lighter dark for term items */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border-left: 5px solid #FFD700;
    transition: transform 0.3s ease;
}

.page-beginner-guide-common-terms__term-item:hover {
    transform: translateY(-5px);
}

.page-beginner-guide-common-terms__term-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for term titles */
    margin-top: 0;
    margin-bottom: 15px;
}

.page-beginner-guide-common-terms__term-item p {
    font-size: 1em;
    color: #cccccc; /* Lighter grey for term descriptions */
    text-align: justify;
}

.page-beginner-guide-common-terms__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-beginner-guide-common-terms__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border: 3px solid #FFD700;
}

.page-beginner-guide-common-terms__advice-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-beginner-guide-common-terms__advice-list li {
    background-color: #2a303c;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 4px solid #FFD700;
    border-radius: 8px;
    color: #e5dfd3;
    font-size: 1.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-common-terms__advice-list li strong {
    color: #FFD700;
}

.page-beginner-guide-common-terms__cta-banner {
    background-color: #1A202C;
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-beginner-guide-common-terms__cta-image {
    max-width: 100%;
    width: 400px; /* Adjust as needed */
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #FFD700;
}

.page-beginner-guide-common-terms__cta-heading {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-beginner-guide-common-terms__cta-description {
    font-size: 1.2em;
    color: #e5dfd3;
    margin-bottom: 30px;
    max-width: 800px;
}

.page-beginner-guide-common-terms__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-beginner-guide-common-terms__title {
        font-size: 2.5em;
    }

    .page-beginner-guide-common-terms__subtitle {
        font-size: 1.1em;
    }

    .page-beginner-guide-common-terms__section-heading {
        font-size: 1.8em;
    }

    .page-beginner-guide-common-terms__term-item {
        padding: 20px;
    }

    .page-beginner-guide-common-terms__term-title {
        font-size: 1.3em;
    }

    .page-beginner-guide-common-terms__cta-banner {
        padding: 30px;
    }

    .page-beginner-guide-common-terms__cta-heading {
        font-size: 2em;
    }

    .page-beginner-guide-common-terms__cta-button--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-common-terms__hero {
        padding: 60px 0;
    }

    .page-beginner-guide-common-terms__title {
        font-size: 2em;
    }

    .page-beginner-guide-common-terms__subtitle {
        font-size: 1em;
    }

    .page-beginner-guide-common-terms__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-beginner-guide-common-terms__content {
        padding: 40px 0;
    }

    .page-beginner-guide-common-terms__section-heading {
        font-size: 1.5em;
    }

    .page-beginner-guide-common-terms__term-list {
        grid-template-columns: 1fr;
    }

    .page-beginner-guide-common-terms__term-item {
        padding: 15px;
    }

    .page-beginner-guide-common-terms__term-title {
        font-size: 1.2em;
    }

    .page-beginner-guide-common-terms__cta-banner {
        padding: 20px;
    }

    .page-beginner-guide-common-terms__cta-heading {
        font-size: 1.5em;
    }

    .page-beginner-guide-common-terms__cta-description {
        font-size: 1em;
    }

    .page-beginner-guide-common-terms__cta-button--large {
        padding: 12px 20px;
        font-size: 1em;
    }
}