/* style/beginner-guide-registration-process.css */

/* Base styles for the page content */
.page-beginner-guide-registration-process {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-beginner-guide-registration-process__hero-section {
    background: linear-gradient(135deg, #007BFF, #0056b3); /* Primary color gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-registration-process__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 215, 0, 0.1); /* Subtle secondary color overlay */
    transform: rotate(45deg);
    z-index: 0;
}

.page-beginner-guide-registration-process__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Secondary color for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-registration-process__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* Buttons */
.page-beginner-guide-registration-process__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration-process__btn--primary {
    background-color: #FFD700; /* Secondary color */
    color: #0056b3; /* Darker primary for contrast */
    border: 2px solid #FFD700;
}

.page-beginner-guide-registration-process__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-registration-process__btn--secondary {
    background-color: #007BFF; /* Primary color */
    color: #ffffff;
    border: 2px solid #007BFF;
    margin-top: 20px;
}

.page-beginner-guide-registration-process__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-registration-process__btn--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* Section common styles */
.page-beginner-guide-registration-process__content-section,
.page-beginner-guide-registration-process__step-by-step-section,
.page-beginner-guide-registration-process__tips-section,
.page-beginner-guide-registration-process__faq-section,
.page-beginner-guide-registration-process__cta-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-registration-process__content-section:nth-child(even),
.page-beginner-guide-registration-process__tips-section:nth-child(even) {
    background-color: #f0f4f7;
}

.page-beginner-guide-registration-process__section-title {
    font-size: 2.5em;
    color: #007BFF; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-beginner-guide-registration-process__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Secondary color */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-beginner-guide-registration-process__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-beginner-guide-registration-process__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-beginner-guide-registration-process__list li {
    background-color: #e9f5ff; /* Lighter primary background */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #007BFF; /* Primary color highlight */
    border-radius: 5px;
    font-size: 1.05em;
    color: #333;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-registration-process__list-highlight {
    color: #0056b3; /* Darker primary for contrast */
}

.page-beginner-guide-registration-process__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-registration-process__image--wide {
    max-width: 90%;
}

/* Step-by-step section */
.page-beginner-guide-registration-process__step-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-beginner-guide-registration-process__step-title {
    font-size: 1.8em;
    color: #007BFF; /* Primary color */
    margin-bottom: 20px;
}

.page-beginner-guide-registration-process__step-number {
    background-color: #FFD700; /* Secondary color */
    color: #0056b3; /* Darker primary for contrast */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2em;
    font-weight: bold;
    margin-right: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration-process__step-card .page-beginner-guide-registration-process__paragraph {
    text-align: left;
}

.page-beginner-guide-registration-process__text-highlight {
    color: #d4af37; /* A shade of gold for highlighting */
    font-weight: bold;
}

/* FAQ Section */
.page-beginner-guide-registration-process__faq-item {
    background-color: #f0f4f7;
    border-left: 5px solid #FFD700; /* Secondary color highlight */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.page-beginner-guide-registration-process__faq-question {
    font-size: 1.3em;
    color: #0056b3; /* Darker primary for contrast */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.page-beginner-guide-registration-process__faq-question::before {
    content: '+';
    font-size: 1.5em;
    margin-right: 10px;
    color: #FFD700;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-beginner-guide-registration-process__faq-question.active::before {
    content: '-';
    transform: rotate(180deg);
}

.page-beginner-guide-registration-process__faq-answer {
    font-size: 1.05em;
    color: #666;
    padding-left: 30px;
    display: none; /* Hidden by default, toggled by JS */
}

.page-beginner-guide-registration-process__faq-answer.show {
    display: block;
}

/* CTA Section */
.page-beginner-guide-registration-process__cta-section {
    text-align: center;
    background: linear-gradient(135deg, #007BFF, #4da3ff); /* Primary color gradient */
    color: #ffffff;
    padding: 80px 0;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration-process__cta-section .page-beginner-guide-registration-process__section-title {
    color: #FFD700; /* Secondary color */
}

.page-beginner-guide-registration-process__cta-section .page-beginner-guide-registration-process__paragraph {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-registration-process__hero-title {
        font-size: 2.8em;
    }
    .page-beginner-guide-registration-process__hero-subtitle {
        font-size: 1.3em;
    }
    .page-beginner-guide-registration-process__section-title {
        font-size: 2em;
    }
    .page-beginner-guide-registration-process__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide-registration-process__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-beginner-guide-registration-process__step-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-registration-process__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-registration-process__hero-section {
        padding: 80px 0;
    }
    .page-beginner-guide-registration-process__hero-title {
        font-size: 2.2em;
    }
    .page-beginner-guide-registration-process__hero-subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide-registration-process__section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-registration-process__content-section,
    .page-beginner-guide-registration-process__step-by-step-section,
    .page-beginner-guide-registration-process__tips-section,
    .page-beginner-guide-registration-process__faq-section,
    .page-beginner-guide-registration-process__cta-section {
        padding: 40px 0;
    }
    .page-beginner-guide-registration-process__step-card {
        padding: 20px;
    }
    .page-beginner-guide-registration-process__step-number {
        width: 35px;
        height: 35px;
        font-size: 1em;
        margin-right: 10px;
    }
    .page-beginner-guide-registration-process__faq-question {
        font-size: 1.1em;
    }
    .page-beginner-guide-registration-process__faq-answer {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-registration-process__hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-registration-process__hero-subtitle {
        font-size: 1em;
    }
    .page-beginner-guide-registration-process__btn {
        width: 100%;
        margin-bottom: 15px;
        padding: 10px 0;
    }
    .page-beginner-guide-registration-process__btn--primary,
    .page-beginner-guide-registration-process__btn--secondary {
        display: block;
    }
    .page-beginner-guide-registration-process__section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-registration-process__paragraph,
    .page-beginner-guide-registration-process__list li,
    .page-beginner-guide-registration-process__faq-answer {
        font-size: 0.95em;
    }
    .page-beginner-guide-registration-process__step-title {
        font-size: 1.3em;
    }
    .page-beginner-guide-registration-process__faq-question {
        font-size: 1em;
    }
}