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

/* General Page Styling */
.page-beginner-guide-registration-process {
    font-family: 'Arial', sans-serif;
    color: #1A202C; /* Dark text on light background */
    line-height: 1.6;
    background-color: #F8F8F8; /* Light background for general content */
}

/* Container for responsive layout */
.page-beginner-guide-registration-process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
.page-beginner-guide-registration-process .section-spacing {
    padding: 60px 0;
}

/* Hero Section */
.page-beginner-guide-registration-process .hero-section {
    background: linear-gradient(135deg, #1A202C, #333d4f); /* Dark gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-beginner-guide-registration-process .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold title for emphasis */
    font-weight: bold;
}

.page-beginner-guide-registration-process .hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-beginner-guide-registration-process .hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700;
    color: #1A202C;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-beginner-guide-registration-process .hero-cta:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-beginner-guide-registration-process .hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.page-beginner-guide-registration-process .section-title {
    font-size: 2.5em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-beginner-guide-registration-process .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

/* Introduction Section */
.page-beginner-guide-registration-process .introduction-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-beginner-guide-registration-process .benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-beginner-guide-registration-process .benefits-list li {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-left: 5px solid #FFD700;
    font-size: 1.05em;
}

.page-beginner-guide-registration-process .benefits-list li:hover {
    transform: translateY(-5px);
}

.page-beginner-guide-registration-process .benefits-list strong {
    color: #FFD700;
    font-size: 1.1em;
    display: block;
    margin-bottom: 10px;
}

/* Registration Guide Section */
.page-beginner-guide-registration-process .guide-step {
    background-color: #FFFFFF;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-beginner-guide-registration-process .step-title {
    font-size: 2em;
    color: #1A202C;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    width: fit-content;
    text-align: center;
}

.page-beginner-guide-registration-process .guide-step p {
    font-size: 1.1em;
    margin-bottom: 15px;
    max-width: 800px;
    text-align: justify;
}

.page-beginner-guide-registration-process .step-image {
    max-width: 80%;
    height: auto;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-registration-process .form-fields-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 700px;
    text-align: left;
}

.page-beginner-guide-registration-process .form-fields-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-beginner-guide-registration-process .form-fields-list li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.page-beginner-guide-registration-process .step-note {
    font-style: italic;
    color: #555;
    margin-top: 10px;
}

.page-beginner-guide-registration-process .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1A202C;
    color: #FFD700;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.page-beginner-guide-registration-process .btn-secondary:hover {
    background-color: #333d4f;
    transform: translateY(-2px);
}

/* Tips Section */
.page-beginner-guide-registration-process .bg-dark-accent {
    background-color: #1A202C;
    color: #FFFFFF;
}

.page-beginner-guide-registration-process .text-gold {
    color: #FFD700;
}

.page-beginner-guide-registration-process .tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-registration-process .tips-list li {
    background-color: #333d4f;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
    font-size: 1.1em;
}

.page-beginner-guide-registration-process .tips-image {
    max-width: 300px;
    height: auto;
    margin-top: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Troubleshooting Section (FAQ) */
.page-beginner-guide-registration-process .faq-item {
    background-color: #FFFFFF;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #1A202C;
}

.page-beginner-guide-registration-process .faq-question {
    font-size: 1.5em;
    color: #1A202C;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-beginner-guide-registration-process .faq-answer {
    font-size: 1.05em;
    color: #333;
    text-align: justify;
}

/* Special Offers Section */
.page-beginner-guide-registration-process .bg-gold-gradient {
    background: linear-gradient(135deg, #FFD700, #e6c200); /* Gold gradient */
    color: #1A202C;
    text-align: center;
}

.page-beginner-guide-registration-process .special-offers-section .section-title {
    color: #1A202C; /* Dark title on gold background */
}

.page-beginner-guide-registration-process .special-offers-section .section-title::after {
    background-color: #1A202C; /* Dark line under title */
}

.page-beginner-guide-registration-process .section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-beginner-guide-registration-process .offers-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.page-beginner-guide-registration-process .offers-list li {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    color: #1A202C;
    border-bottom: 4px solid #1A202C;
    font-size: 1.05em;
}

.page-beginner-guide-registration-process .offers-image {
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration-process .offers-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1A202C;
    color: #FFD700;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-beginner-guide-registration-process .offers-cta:hover {
    background-color: #333d4f;
    transform: translateY(-3px);
}

/* Conclusion Section */
.page-beginner-guide-registration-process .conclusion-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-beginner-guide-registration-process .final-cta {
    display: inline-block;
    padding: 18px 35px;
    background-color: #FFD700;
    color: #1A202C;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.3em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration-process .final-cta:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-beginner-guide-registration-process .hero-title {
        font-size: 2.5em;
    }

    .page-beginner-guide-registration-process .hero-description {
        font-size: 1em;
    }

    .page-beginner-guide-registration-process .section-title {
        font-size: 2em;
    }

    .page-beginner-guide-registration-process .benefits-list,
    .page-beginner-guide-registration-process .offers-list {
        grid-template-columns: 1fr;
    }

    .page-beginner-guide-registration-process .guide-step p,
    .page-beginner-guide-registration-process .tips-list li,
    .page-beginner-guide-registration-process .faq-answer,
    .page-beginner-guide-registration-process .conclusion-section p {
        font-size: 1em;
    }

    .page-beginner-guide-registration-process .step-image {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-registration-process .hero-title {
        font-size: 2em;
    }

    .page-beginner-guide-registration-process .hero-description {
        font-size: 0.95em;
    }

    .page-beginner-guide-registration-process .hero-cta,
    .page-beginner-guide-registration-process .offers-cta,
    .page-beginner-guide-registration-process .final-cta {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-beginner-guide-registration-process .section-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-registration-process .step-title {
        font-size: 1.5em;
    }

    .page-beginner-guide-registration-process .faq-question {
        font-size: 1.3em;
    }
}