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

.page-index-registration-guide-summary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-registration-guide-summary-hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for better contrast */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-registration-guide-summary-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107; /* Highlight with auxiliary color */
}

.page-index-registration-guide-summary-hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-registration-guide-summary-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-index-registration-guide-summary-btn-primary {
    background-color: #ffc107;
    color: #007bff; /* Darker text for contrast */
    border: 2px solid #ffc107;
}

.page-index-registration-guide-summary-btn-primary:hover {
    background-color: #e0a800;
    color: #0056b3;
    transform: translateY(-3px);
}

.page-index-registration-guide-summary-btn-secondary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-index-registration-guide-summary-btn-secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
}

.page-index-registration-guide-summary-btn-ghost {
    background-color: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.page-index-registration-guide-summary-btn-ghost:hover {
    background-color: #ffc107;
    color: #007bff;
    transform: translateY(-3px);
}

.page-index-registration-guide-summary-btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-index-registration-guide-summary-section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-registration-guide-summary-intro, 
.page-index-registration-guide-summary-steps, 
.page-index-registration-guide-summary-tips, 
.page-index-registration-guide-summary-app-download, 
.page-index-registration-guide-summary-faq, 
.page-index-registration-guide-summary-conclusion {
    padding: 60px 0;
}

.page-index-registration-guide-summary-intro {
    background-color: #ffffff;
}

.page-index-registration-guide-summary-intro p {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-index-registration-guide-summary-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-index-registration-guide-summary-feature-item {
    background-color: #f0f8ff; /* Light blue background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-index-registration-guide-summary-feature-item:hover {
    transform: translateY(-10px);
}

.page-index-registration-guide-summary-feature-item h3 {
    color: #007bff;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-index-registration-guide-summary-feature-item p {
    font-size: 1em;
    color: #666;
}

.page-index-registration-guide-summary-feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.page-index-registration-guide-summary-steps {
    background-color: #f0f8ff;
}

.page-index-registration-guide-summary-steps > p {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-index-registration-guide-summary-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-index-registration-guide-summary-step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.page-index-registration-guide-summary-step-number {
    font-size: 3em;
    font-weight: bold;
    color: #ffc107;
    min-width: 80px;
    text-align: center;
    margin-right: 30px;
    line-height: 1;
    padding-top: 5px;
}

.page-index-registration-guide-summary-step-item:nth-child(even) .page-index-registration-guide-summary-step-number {
    margin-left: 30px;
    margin-right: 0;
}

.page-index-registration-guide-summary-step-content {
    flex: 1;
}

.page-index-registration-guide-summary-step-content h3 {
    color: #007bff;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-index-registration-guide-summary-step-content p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 15px;
}

.page-index-registration-guide-summary-step-content ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-index-registration-guide-summary-step-content ul li {
    margin-bottom: 10px;
    color: #444;
}

.page-index-registration-guide-summary-step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-registration-guide-summary-cta-section {
    text-align: center;
    background-color: #e6f2ff; /* Lighter blue */
    padding: 50px;
    border-radius: 10px;
    margin-top: 60px;
}

.page-index-registration-guide-summary-cta-section h3 {
    color: #007bff;
    font-size: 2em;
    margin-bottom: 20px;
}

.page-index-registration-guide-summary-cta-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.page-index-registration-guide-summary-tips {
    background-color: #ffffff;
}

.page-index-registration-guide-summary-tips > p {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-index-registration-guide-summary-tips ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-index-registration-guide-summary-tips ul li {
    background-color: #f9f9f9;
    border-left: 5px solid #ffc107;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #444;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-registration-guide-summary-tips ul li strong {
    color: #007bff;
}

.page-index-registration-guide-summary-info-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-index-registration-guide-summary-app-download {
    background-color: #e6f2ff;
    text-align: center;
}

.page-index-registration-guide-summary-app-download > p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-index-registration-guide-summary-download-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-index-registration-guide-summary-download-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-registration-guide-summary-download-item:hover {
    transform: translateY(-10px);
}

.page-index-registration-guide-summary-download-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-index-registration-guide-summary-download-item h3 {
    color: #007bff;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-index-registration-guide-summary-download-item p {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
}

.page-index-registration-guide-summary-download-note {
    font-size: 1.1em;
    color: #0056b3;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-index-registration-guide-summary-qr-image {
    max-width: 200px;
    height: auto;
    margin-top: 30px;
    border: 5px solid #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-index-registration-guide-summary-faq {
    background-color: #ffffff;
}

.page-index-registration-guide-summary-faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-index-registration-guide-summary-faq-item h3 {
    color: #007bff;
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-registration-guide-summary-faq-item p {
    color: #555;
    font-size: 1.05em;
    margin-top: 15px;
    display: none; /* Hidden by default, JS will toggle */
}

.page-index-registration-guide-summary-faq-item.active p {
    display: block;
}

.page-index-registration-guide-summary-faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #ffc107;
    transition: transform 0.3s ease;
}

.page-index-registration-guide-summary-faq-item.active h3::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-registration-guide-summary-conclusion {
    background-color: #007bff;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-index-registration-guide-summary-conclusion h2 {
    color: #ffc107;
}

.page-index-registration-guide-summary-conclusion p {
    font-size: 1.15em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.page-index-registration-guide-summary-final-cta {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-registration-guide-summary-hero-title {
        font-size: 2.5em;
    }
    .page-index-registration-guide-summary-hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-registration-guide-summary-section-title {
        font-size: 2em;
    }
    .page-index-registration-guide-summary-step-item {
        flex-direction: column;
        align-items: center;
    }
    .page-index-registration-guide-summary-step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-index-registration-guide-summary-step-item:nth-child(even) {
        flex-direction: column;
    }
    .page-index-registration-guide-summary-step-item:nth-child(even) .page-index-registration-guide-summary-step-number {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-index-registration-guide-summary-hero {
        padding: 80px 0;
    }
    .page-index-registration-guide-summary-hero-title {
        font-size: 2em;
    }
    .page-index-registration-guide-summary-hero-subtitle {
        font-size: 1em;
    }
    .page-index-registration-guide-summary-section-title {
        font-size: 1.8em;
    }
    .page-index-registration-guide-summary-feature-grid {
        grid-template-columns: 1fr;
    }
    .page-index-registration-guide-summary-download-options {
        flex-direction: column;
        align-items: center;
    }
    .page-index-registration-guide-summary-download-item {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .page-index-registration-guide-summary-hero {
        padding: 60px 0;
    }
    .page-index-registration-guide-summary-hero-title {
        font-size: 1.8em;
    }
    .page-index-registration-guide-summary-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-registration-guide-summary-section-title {
        font-size: 1.5em;
    }
    .page-index-registration-guide-summary-step-number {
        font-size: 2.5em;
    }
    .page-index-registration-guide-summary-step-content h3 {
        font-size: 1.5em;
    }
    .page-index-registration-guide-summary-faq-item h3 {
        font-size: 1.2em;
    }
}