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

.page-index-how-to-register-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-how-to-register-hero {
    background: linear-gradient(135deg, #0A2E36, #E74C3C);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-index-how-to-register-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-index-how-to-register-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-index-how-to-register-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-index-how-to-register-btn-primary {
    background-color: #F39C12; /* Gold Orange */
    color: #0A2E36;
}

.page-index-how-to-register-btn-primary:hover {
    background-color: #e08e0b;
    transform: translateY(-2px);
}

.page-index-how-to-register-btn-secondary {
    background-color: #0A2E36;
    color: #ffffff;
    border: 2px solid #F39C12;
}

.page-index-how-to-register-btn-secondary:hover {
    background-color: #1a4a53;
    transform: translateY(-2px);
}

.page-index-how-to-register-btn-step {
    background-color: #E74C3C;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 15px;
}

.page-index-how-to-register-btn-step:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.page-index-how-to-register-btn-download {
    background-color: #2ecc71;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 8px;
    margin-top: 20px;
}

.page-index-how-to-register-btn-download:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.page-index-how-to-register-btn-cta {
    background-color: #F39C12;
    color: #0A2E36;
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
    margin-top: 30px;
}

.page-index-how-to-register-btn-cta:hover {
    background-color: #e08e0b;
    transform: translateY(-2px);
}

.page-index-how-to-register-section {
    padding: 60px 0;
}

.page-index-how-to-register-section:nth-child(even) {
    background-color: #f1f1f1;
}

.page-index-how-to-register-section-title {
    font-size: 2.5em;
    color: #0A2E36;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-index-how-to-register-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E74C3C;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-how-to-register-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555;
}

.page-index-how-to-register-text-center {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #555;
}

.page-index-how-to-register-text-center a {
    color: #E74C3C;
    text-decoration: none;
    font-weight: bold;
}

.page-index-how-to-register-text-center a:hover {
    text-decoration: underline;
}

/* Why Choose Section */
.page-index-how-to-register-why-choose {
    background-color: #ffffff;
}

.page-index-how-to-register-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-index-how-to-register-feature-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-how-to-register-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-how-to-register-feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-how-to-register-feature-item h3 {
    font-size: 1.5em;
    color: #0A2E36;
    margin-bottom: 15px;
}

.page-index-how-to-register-feature-item p {
    color: #666;
    font-size: 1em;
}

/* Guide Section */
.page-index-how-to-register-guide {
    background-color: #f8f9fa;
}

.page-index-how-to-register-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-how-to-register-step:nth-child(even) {
    flex-direction: row-reverse;
}

.page-index-how-to-register-step:nth-child(even) .page-index-how-to-register-step-content {
    padding-left: 0;
    padding-right: 30px;
}

.page-index-how-to-register-step-number {
    font-size: 3em;
    font-weight: bold;
    color: #E74C3C;
    margin-right: 30px;
    flex-shrink: 0;
    line-height: 1;
    text-align: center;
    padding-top: 10px;
}

.page-index-how-to-register-step:nth-child(even) .page-index-how-to-register-step-number {
    margin-left: 30px;
    margin-right: 0;
}

.page-index-how-to-register-step-content {
    flex-grow: 1;
    padding-left: 30px;
}

.page-index-how-to-register-step-content h3 {
    font-size: 1.8em;
    color: #0A2E36;
    margin-bottom: 15px;
}

.page-index-how-to-register-step-content p {
    margin-bottom: 15px;
    color: #555;
}

.page-index-how-to-register-step-content ul,
.page-index-how-to-register-step-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
    color: #555;
}

.page-index-how-to-register-step-content ul li,
.page-index-how-to-register-step-content ol li {
    margin-bottom: 8px;
}

.page-index-how-to-register-step-content a {
    color: #E74C3C;
    text-decoration: none;
    font-weight: bold;
}

.page-index-how-to-register-step-content a:hover {
    text-decoration: underline;
}

.page-index-how-to-register-step-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}

/* FAQ Section */
.page-index-how-to-register-faq {
    background-color: #ffffff;
}

.page-index-how-to-register-faq-item {
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-index-how-to-register-faq-item h3 {
    font-size: 1.4em;
    color: #0A2E36;
    margin-bottom: 10px;
}

.page-index-how-to-register-faq-item p {
    color: #555;
}

.page-index-how-to-register-faq-item a {
    color: #E74C3C;
    text-decoration: none;
    font-weight: bold;
}

.page-index-how-to-register-faq-item a:hover {
    text-decoration: underline;
}

/* Tips Section */
.page-index-how-to-register-tips {
    background-color: #f8f9fa;
}

.page-index-how-to-register-tips ul {
    max-width: 900px;
    margin: 0 auto 40px;
    padding-left: 25px;
    list-style-type: disc;
    color: #555;
    font-size: 1.1em;
}

.page-index-how-to-register-tips ul li {
    margin-bottom: 15px;
}

.page-index-how-to-register-tips ul li strong {
    color: #0A2E36;
}

/* Conclusion Section */
.page-index-how-to-register-conclusion {
    text-align: center;
    background-color: #0A2E36;
    color: #ffffff;
    padding: 80px 0;
}

.page-index-how-to-register-conclusion .page-index-how-to-register-section-title {
    color: #ffffff;
}

.page-index-how-to-register-conclusion .page-index-how-to-register-section-title::after {
    background-color: #F39C12;
}

.page-index-how-to-register-conclusion .page-index-how-to-register-text {
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-how-to-register-title {
        font-size: 2.5em;
    }
    .page-index-how-to-register-subtitle {
        font-size: 1.1em;
    }
    .page-index-how-to-register-section-title {
        font-size: 2em;
    }
    .page-index-how-to-register-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-index-how-to-register-step:nth-child(even) {
        flex-direction: column;
    }
    .page-index-how-to-register-step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-index-how-to-register-step:nth-child(even) .page-index-how-to-register-step-number {
        margin-left: 0;
    }
    .page-index-how-to-register-step-content {
        padding-left: 0;
        padding-right: 0;
    }
    .page-index-how-to-register-step:nth-child(even) .page-index-how-to-register-step-content {
        padding-left: 0;
        padding-right: 0;
    }
    .page-index-how-to-register-step-image {
        max-width: 100%;
    }
    .page-index-how-to-register-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-how-to-register-hero {
        padding: 80px 0;
    }
    .page-index-how-to-register-title {
        font-size: 2em;
    }
    .page-index-how-to-register-section-title {
        font-size: 1.8em;
    }
    .page-index-how-to-register-text,
    .page-index-how-to-register-tips ul,
    .page-index-how-to-register-feature-item p,
    .page-index-how-to-register-faq-item p,
    .page-index-how-to-register-step-content p {
        font-size: 0.95em;
    }
    .page-index-how-to-register-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-how-to-register-btn-cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-index-how-to-register-hero {
        padding: 60px 0;
    }
    .page-index-how-to-register-title {
        font-size: 1.8em;
    }
    .page-index-how-to-register-subtitle {
        font-size: 0.9em;
    }
    .page-index-how-to-register-section-title {
        font-size: 1.6em;
    }
    .page-index-how-to-register-step-number {
        font-size: 2.5em;
    }
    .page-index-how-to-register-feature-item,
    .page-index-how-to-register-faq-item,
    .page-index-how-to-register-step {
        padding: 20px;
    }
}