/* style/beginner-guide-first-steps.css */
.page-beginner-guide-first-steps {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.page-beginner-guide-first-steps .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-beginner-guide-first-steps .hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 60%, #FFD700 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-beginner-guide-first-steps .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-beginner-guide-first-steps .hero-section .container {
    position: relative;
    z-index: 2;
}

.page-beginner-guide-first-steps .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-beginner-guide-first-steps .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-beginner-guide-first-steps .hero-image {
    max-width: 70%;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease-in-out;
}

.page-beginner-guide-first-steps .hero-image:hover {
    transform: scale(1.03);
}

.page-beginner-guide-first-steps .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.3s ease;
    cursor: pointer;
    border: none;
}

.page-beginner-guide-first-steps .btn-primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-beginner-guide-first-steps .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-beginner-guide-first-steps .btn-secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-beginner-guide-first-steps .btn-secondary:hover {
    background-color: #1a3a7c;
    transform: translateY(-3px);
}

.page-beginner-guide-first-steps .btn-accent {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-beginner-guide-first-steps .btn-accent:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-beginner-guide-first-steps .section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-beginner-guide-first-steps .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-beginner-guide-first-steps .intro-section, 
.page-beginner-guide-first-steps .guide-section, 
.page-beginner-guide-first-steps .app-download-section, 
.page-beginner-guide-first-steps .products-section, 
.page-beginner-guide-first-steps .promotions-section, 
.page-beginner-guide-first-steps .tips-section, 
.page-beginner-guide-first-steps .support-section, 
.page-beginner-guide-first-steps .faq-section {
    padding: 60px 0;
}

.page-beginner-guide-first-steps .bg-light {
    background-color: #f0f4f8;
}

.page-beginner-guide-first-steps .bg-dark-blue {
    background-color: #0A2463;
}

.page-beginner-guide-first-steps .text-white {
    color: #fff;
}

.page-beginner-guide-first-steps .text-white .section-title {
    color: #FFD700;
}

.page-beginner-guide-first-steps p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-beginner-guide-first-steps .text-white p {
    color: #ddd;
}

.page-beginner-guide-first-steps .content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-beginner-guide-first-steps .steps-section .step-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #0A2463;
}

.page-beginner-guide-first-steps .steps-section .step-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-beginner-guide-first-steps .steps-section .step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.page-beginner-guide-first-steps ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-beginner-guide-first-steps ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-beginner-guide-first-steps .note {
    font-style: italic;
    color: #d9534f;
    background-color: #fef8f8;
    border-left: 4px solid #d9534f;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.page-beginner-guide-first-steps .cta-block {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #0A2463;
    border-radius: 10px;
    color: #fff;
}

.page-beginner-guide-first-steps .cta-block p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #FFD700;
}

.page-beginner-guide-first-steps .app-download-section .download-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-beginner-guide-first-steps .app-download-section .download-item {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
    max-width: 45%;
}

.page-beginner-guide-first-steps .app-download-section .qr-code {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
    border: 5px solid #0A2463;
    border-radius: 5px;
}

.page-beginner-guide-first-steps .app-download-section .download-item p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
}

.page-beginner-guide-first-steps .products-section .product-category {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border-right: 5px solid #FFD700;
}

.page-beginner-guide-first-steps .products-section .category-title {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 20px;
}

.page-beginner-guide-first-steps .products-section .product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.page-beginner-guide-first-steps .promotions-section .promo-list {
    list-style-type: none;
    padding: 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-beginner-guide-first-steps .promotions-section .promo-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-size: 1.1em;
    color: #333;
    border-left: 5px solid #FFD700;
    display: inline-block;
    width: calc(50% - 20px);
    margin: 10px;
    text-align: left;
}

@media (max-width: 768px) {
    .page-beginner-guide-first-steps .promotions-section .promo-list li {
        width: 100%;
        margin: 10px 0;
    }
}

.page-beginner-guide-first-steps .tips-section ul {
    list-style-type: decimal;
    margin-left: 25px;
}

.page-beginner-guide-first-steps .tips-section ul li {
    font-size: 1.1em;
    margin-bottom: 12px;
    color: #444;
}

.page-beginner-guide-first-steps .faq-section .faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    padding: 25px;
    border-left: 5px solid #0A2463;
}

.page-beginner-guide-first-steps .faq-section .faq-question {
    font-size: 1.5em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-beginner-guide-first-steps .faq-section .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    font-weight: bold;
}

.page-beginner-guide-first-steps .faq-section .faq-question.active::after {
    content: '-';
}

.page-beginner-guide-first-steps .faq-section .faq-answer {
    font-size: 1.05em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 10px;
}

.page-beginner-guide-first-steps .faq-section .faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    margin-top: 15px;
}

.page-beginner-guide-first-steps .conclusion-section {
    text-align: center;
    padding: 80px 0;
}

.page-beginner-guide-first-steps .conclusion-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .page-beginner-guide-first-steps .hero-title {
        font-size: 3em;
    }
    .page-beginner-guide-first-steps .hero-subtitle {
        font-size: 1.3em;
    }
    .page-beginner-guide-first-steps .section-title {
        font-size: 2em;
    }
    .page-beginner-guide-first-steps .app-download-section .download-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-first-steps .hero-title {
        font-size: 2.5em;
    }
    .page-beginner-guide-first-steps .hero-subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide-first-steps .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide-first-steps .section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-first-steps .step-title, .page-beginner-guide-first-steps .category-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-first-steps .app-download-section .download-options {
        flex-direction: column;
        align-items: center;
    }
    .page-beginner-guide-first-steps .app-download-section .download-item {
        width: 90%;
    }
    .page-beginner-guide-first-steps .promotions-section .promo-list li {
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-first-steps .hero-title {
        font-size: 2em;
    }
    .page-beginner-guide-first-steps .hero-subtitle {
        font-size: 0.9em;
    }
    .page-beginner-guide-first-steps .hero-section {
        padding: 50px 0;
    }
    .page-beginner-guide-first-steps .section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-first-steps .step-title, .page-beginner-guide-first-steps .category-title {
        font-size: 1.3em;
    }
    .page-beginner-guide-first-steps .cta-block p {
        font-size: 1.1em;
    }
}