/* style/beginner-guide-common-terms.css */
.page-beginner-guide-common-terms {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-beginner-guide-common-terms .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-beginner-guide-common-terms .hero-section {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-common-terms .hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-beginner-guide-common-terms .hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-beginner-guide-common-terms .cta-button {
    display: inline-block;
    background-color: #ff8400; /* Contrasting color for emphasis */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-beginner-guide-common-terms .cta-button:hover {
    background-color: #d758ba; /* Auxiliary contrasting color for hover */
    transform: translateY(-2px);
}

/* Introduction and Category Sections */
.page-beginner-guide-common-terms .introduction-section,
.page-beginner-guide-common-terms .terms-category-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-common-terms .section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-beginner-guide-common-terms .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #28a745;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-beginner-guide-common-terms .introduction-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

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

.page-beginner-guide-common-terms .term-item {
    background-color: #f0f8ff; /* Light blue background */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-common-terms .term-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-common-terms .term-heading {
    font-size: 1.5em;
    color: #0056b3; /* Darker blue for contrast */
    margin-bottom: 15px;
    border-bottom: 2px solid #28a745; /* Auxiliary color for emphasis */
    padding-bottom: 10px;
}

.page-beginner-guide-common-terms .term-item p {
    font-size: 1em;
    color: #444;
}

.page-beginner-guide-common-terms .content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 20px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-beginner-guide-common-terms .cta-section {
    background: linear-gradient(to right, #007bff, #28a745);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-common-terms .cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-beginner-guide-common-terms .cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-beginner-guide-common-terms .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-beginner-guide-common-terms .cta-button.primary-button {
    background-color: #ff8400;
    color: #ffffff;
    border: 2px solid #ff8400;
}

.page-beginner-guide-common-terms .cta-button.primary-button:hover {
    background-color: #e67300;
    border-color: #e67300;
}

.page-beginner-guide-common-terms .cta-button.secondary-button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-beginner-guide-common-terms .cta-button.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-common-terms .hero-title {
        font-size: 2.2em;
    }
    .page-beginner-guide-common-terms .section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-common-terms .terms-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-beginner-guide-common-terms .cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-common-terms .hero-section,
    .page-beginner-guide-common-terms .introduction-section,
    .page-beginner-guide-common-terms .terms-category-section,
    .page-beginner-guide-common-terms .cta-section {
        padding: 40px 0;
    }
    .page-beginner-guide-common-terms .hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-common-terms .hero-subtitle {
        font-size: 1em;
    }
    .page-beginner-guide-common-terms .section-title {
        font-size: 1.6em;
    }
    .page-beginner-guide-common-terms .term-heading {
        font-size: 1.3em;
    }
    .page-beginner-guide-common-terms .cta-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-common-terms .cta-description {
        font-size: 1em;
    }
    .page-beginner-guide-common-terms .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-beginner-guide-common-terms .cta-button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-common-terms .hero-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-common-terms .hero-subtitle {
        font-size: 0.9em;
    }
    .page-beginner-guide-common-terms .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide-common-terms .section-title {
        font-size: 1.4em;
    }
    .page-beginner-guide-common-terms .term-heading {
        font-size: 1.2em;
    }
}