/* style/index-quick-registration.css */
.page-index-quick-registration {
    font-family: 'Arial', sans-serif;
    color: #F5F5F5; /* Light text for dark background */
    background-color: #0A192F; /* Main dark blue background */
    line-height: 1.6;
    padding-bottom: 50px;
}

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

.page-index-quick-registration__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #2c3e50 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    border-bottom: 5px solid #FFD700;
}

.page-index-quick-registration__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-quick-registration__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F5F5F5;
}

.page-index-quick-registration__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text */
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration__hero-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-index-quick-registration__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}

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

.page-index-quick-registration__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #F5F5F5;
}

.page-index-quick-registration__why-mcw-section {
    padding: 60px 0;
    background-color: #0A192F;
}

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

.page-index-quick-registration__feature-item {
    background-color: #1a2a40; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index-quick-registration__feature-item:hover {
    transform: translateY(-10px);
}

.page-index-quick-registration__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-index-quick-registration__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-quick-registration__feature-description {
    font-size: 1em;
    color: #CCCCCC;
}

.page-index-quick-registration__registration-steps-section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-index-quick-registration__steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-index-quick-registration__step-item {
    background-color: #1a2a40;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid #FFD700;
}

.page-index-quick-registration__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    font-size: 2.2em;
    font-weight: bold;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #0A192F;
}

.page-index-quick-registration__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-index-quick-registration__step-description {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.page-index-quick-registration__step-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-index-quick-registration__step-button:hover {
    background-color: #e6c200;
}

.page-index-quick-registration__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration__cta-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 60px;
    color: #F5F5F5;
}

.page-index-quick-registration__main-cta-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background-color: #FFD700;
    color: #0A192F;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.8em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-index-quick-registration__main-cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

.page-index-quick-registration__promotions-section {
    background-color: #0A192F;
    padding: 80px 0;
    border-top: 1px solid #FFD700;
}

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

.page-index-quick-registration__promotion-card {
    background-color: #1a2a40;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px dashed #FFD700;
}

.page-index-quick-registration__promotion-card:hover {
    transform: translateY(-10px);
}

.page-index-quick-registration__promotion-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-index-quick-registration__promotion-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-quick-registration__promotion-description {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 25px;
}

.page-index-quick-registration__promotion-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-quick-registration__promotion-button:hover {
    background-color: #e6c200;
}

.page-index-quick-registration__app-download-section {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #FFD700;
}

.page-index-quick-registration__app-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px auto 60px auto;
    flex-wrap: wrap;
}

.page-index-quick-registration__app-benefit-item {
    text-align: center;
    color: #F5F5F5;
    font-size: 1.1em;
    max-width: 200px;
}

.page-index-quick-registration__app-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-index-quick-registration__download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.page-index-quick-registration__download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FFD700;
    color: #0A192F;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-quick-registration__download-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-quick-registration__download-button::before {
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.page-index-quick-registration__download-android::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230A192F"><path d="M7 2v20h10V2H7zm2 2h6v1H9V4zm0 2v1h6V6H9zm0 2v1h6V8H9zm-2 3v1h10v-1H7zm0 2v1h10v-1H7zm0 2v1h10v-1H7zm0 2v1h10v-1H7zm0 2v1h10v-1H7z"/><path d="M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 4h10v1H7V4zm0 2h10v1H7V6zm0 2h10v1H7V8zm0 3h10v1H7v-1zm0 2h10v1H7v-1zm0 2h10v1H7v-1zm0 2h10v1H7v-1zm0 2h10v1H7v-1z"/></svg>');
}

.page-index-quick-registration__download-ios::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230A192F"><path d="M12 2c-3.31 0-6 2.69-6 6 0 2.22 1.21 4.16 3 5.2V16H9c-1.1 0-2 .9-2 2s.9 2 2 2h6c1.1 0 2-.9 2-2s-.9-2-2-2h-2v-2.8c1.79-1.04 3-2.98 3-5.2 0-3.31-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"/></svg>');
}

.page-index-quick-registration__app-screenshot {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFD700;
}

.page-index-quick-registration__tips-section {
    background-color: #0A192F;
    padding: 80px 0;
    border-top: 1px solid #FFD700;
}

.page-index-quick-registration__tips-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
}

.page-index-quick-registration__tips-list li {
    background-color: #1a2a40;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 12px;
    font-size: 1.1em;
    color: #CCCCCC;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #FFD700;
}

.page-index-quick-registration__tips-list li strong {
    color: #FFD700;
}

.page-index-quick-registration__tips-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-index-quick-registration__faq-section {
    background-color: #0A192F;
    padding: 80px 0;
    border-top: 1px solid #FFD700;
}

.page-index-quick-registration__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-index-quick-registration__faq-item {
    background-color: #1a2a40;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-index-quick-registration__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-index-quick-registration__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-index-quick-registration__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-quick-registration__faq-answer {
    font-size: 1.1em;
    color: #CCCCCC;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-index-quick-registration__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
}

.page-index-quick-registration__conclusion-section {
    background-color: #0A192F;
    padding: 80px 0 100px 0;
    text-align: center;
    border-top: 1px solid #FFD700;
}

.page-index-quick-registration__conclusion-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-index-quick-registration__conclusion-button:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

.page-index-quick-registration__text-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-quick-registration__text-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-quick-registration__hero-title {
        font-size: 3em;
    }
    .page-index-quick-registration__section-title {
        font-size: 2.2em;
    }
    .page-index-quick-registration__main-cta-button {
        font-size: 1.5em;
        padding: 15px 40px;
    }
    .page-index-quick-registration__download-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

@media (max-width: 768px) {
    .page-index-quick-registration__hero-section {
        padding: 80px 0;
    }
    .page-index-quick-registration__hero-title {
        font-size: 2.5em;
    }
    .page-index-quick-registration__hero-description {
        font-size: 1.1em;
    }
    .page-index-quick-registration__hero-button {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    .page-index-quick-registration__section-title {
        font-size: 2em;
    }
    .page-index-quick-registration__features-grid,
    .page-index-quick-registration__steps-list,
    .page-index-quick-registration__promotions-grid {
        grid-template-columns: 1fr;
    }
    .page-index-quick-registration__step-item {
        padding-top: 50px; /* Adjust for number */
    }
    .page-index-quick-registration__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        top: -25px;
    }
    .page-index-quick-registration__app-benefits {
        flex-direction: column;
        gap: 20px;
    }
    .page-index-quick-registration__download-buttons {
        flex-direction: column;
        gap: 20px;
    }
    .page-index-quick-registration__download-button {
        width: 80%;
        margin: 0 auto;
    }
    .page-index-quick-registration__conclusion-button {
        font-size: 1.5em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-index-quick-registration__hero-title {
        font-size: 2em;
    }
    .page-index-quick-registration__hero-description {
        font-size: 1em;
    }
    .page-index-quick-registration__section-title {
        font-size: 1.8em;
    }
    .page-index-quick-registration__feature-title,
    .page-index-quick-registration__step-title,
    .page-index-quick-registration__promotion-title,
    .page-index-quick-registration__faq-question {
        font-size: 1.4em;
    }
    .page-index-quick-registration__main-cta-button,
    .page-index-quick-registration__conclusion-button {
        font-size: 1.2em;
        padding: 12px 25px;
    }
}