/* style/register.css */

/* General Styles for page-register scope */
.page-register {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for main text for high contrast */
    background-color: #f8f9fa; /* Light background */
}

.page-register__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-register__section {
    padding: 60px 0;
    background-color: #ffffff; /* White background for sections */
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-register__section:nth-child(even) {
    background-color: #f0f4f7; /* Light blue-gray for alternating sections */
}

.page-register__section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary color for main titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-register__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Auxiliary color for underline */
    border-radius: 2px;
}

.page-register__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #495057; /* Slightly lighter dark gray for paragraphs */
}

.page-register__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-register__list li {
    margin-bottom: 10px;
    color: #495057;
}

.page-register__list--check {
    list-style: none;
    padding-left: 0;
}

.page-register__list--check li {
    position: relative;
    padding-left: 30px;
}

.page-register__list--check li::before {
    content: '\2713'; /* Checkmark unicode */
    color: #28a745; /* Green for checkmark */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Hero Section */
.page-register__hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.page-register__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0f2f7; /* Light blue for subtitle */
}

/* Buttons */
.page-register__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    cursor: pointer;
}

.page-register__btn--primary {
    background-color: #ffc107; /* Auxiliary color for primary action */
    color: #333333; /* Dark text for auxiliary background */
    border: 2px solid #ffc107;
}

.page-register__btn--primary:hover {
    background-color: #e0a800; /* Darker auxiliary on hover */
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-register__btn--secondary {
    background-color: #007bff; /* Primary color for secondary action */
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-register__btn--secondary:hover {
    background-color: #0056b3; /* Darker primary on hover */
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-register__btn--hero {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-register__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

/* Why Choose Section */
.page-register__why-choose {
    background-color: #f8f9fa;
}

.page-register__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-register__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-register__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
}

.page-register__feature-title {
    font-size: 1.6em;
    color: #007bff; /* Primary color for feature titles */
    margin-bottom: 15px;
}

.page-register__feature-description {
    font-size: 1em;
    color: #555555;
}

/* Steps Section */
.page-register__steps {
    background-color: #ffffff;
}

.page-register__step-item {
    background-color: #f0f8ff; /* Light blue background for step items */
    border-left: 5px solid #007bff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-register__step-title {
    font-size: 2em;
    color: #007bff; /* Primary color for step titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-register__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Tips Section */
.page-register__tips {
    background-color: #f8f9fa;
}

.page-register__image-full-width {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* After Register Section */
.page-register__after-register {
    background-color: #ffffff;
}

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

.page-register__card {
    background-color: #fff3cd; /* Light auxiliary background */
    border: 1px solid #ffc107;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-register__card-title {
    font-size: 1.8em;
    color: #007bff; /* Primary color for card titles */
    margin-bottom: 15px;
}

.page-register__card-text {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-register__faq {
    background-color: #f0f4f7;
}

.page-register__faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-register__faq-question {
    font-size: 1.3em;
    color: #007bff; /* Primary color for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-register__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffc107;
}

.page-register__faq-item.active .page-register__faq-question::after {
    content: '-';
}

.page-register__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-top: 10px;
    border-top: 1px solid #eeeeee;
    display: none; /* Hidden by default, shown by JS */
}

.page-register__faq-item.active .page-register__faq-answer {
    display: block;
}

/* Conclusion Section */
.page-register__conclusion {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
    color: #ffffff;
    text-align: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.page-register__conclusion .page-register__section-title {
    color: #ffffff;
}

.page-register__conclusion .page-register__section-title::after {
    background-color: #ffc107;
}

.page-register__conclusion .page-register__text {
    color: #e0f2f7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

    .page-register__hero-subtitle {
        font-size: 1.2em;
    }

    .page-register__section-title {
        font-size: 2em;
    }

    .page-register__feature-item {
        padding: 20px;
    }

    .page-register__feature-title {
        font-size: 1.4em;
    }

    .page-register__step-title {
        font-size: 1.6em;
    }

    .page-register__card-title {
        font-size: 1.5em;
    }

    .page-register__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-register__btn--hero, .page-register__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 2em;
    }

    .page-register__hero-subtitle {
        font-size: 1em;
    }

    .page-register__section {
        padding: 40px 0;
    }

    .page-register__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-register__text {
        font-size: 0.95em;
    }

    .page-register__features-grid, .page-register__card-grid {
        grid-template-columns: 1fr;
    }

    .page-register__feature-item, .page-register__card {
        padding: 25px;
    }

    .page-register__btn--hero, .page-register__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .page-register__faq-question {
        font-size: 1.1em;
    }
    
    .page-register__faq-answer {
        font-size: 0.95em;
    }
}