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

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

.page-beginner-guide-navigating-platform .hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #2a4a75 100%); /* Slightly lighter gradient for visual depth */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-navigating-platform .hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-navigating-platform .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-beginner-guide-navigating-platform .cta-buttons {
    margin-top: 30px;
}

.page-beginner-guide-navigating-platform .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 10px;
    white-space: nowrap;
}

.page-beginner-guide-navigating-platform .btn-primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-beginner-guide-navigating-platform .btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-beginner-guide-navigating-platform .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-beginner-guide-navigating-platform .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-beginner-guide-navigating-platform .btn-tertiary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #0A2342;
}

.page-beginner-guide-navigating-platform .btn-tertiary:hover {
    background-color: #1a3a60;
    border-color: #1a3a60;
    transform: translateY(-2px);
}

.page-beginner-guide-navigating-platform .btn-large {
    padding: 15px 35px;
    font-size: 1.3em;
}

.page-beginner-guide-navigating-platform section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-beginner-guide-navigating-platform section:last-of-type {
    border-bottom: none;
}

.page-beginner-guide-navigating-platform h2 {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-beginner-guide-navigating-platform h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-beginner-guide-navigating-platform h3 {
    font-size: 1.8em;
    color: #0A2342;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-beginner-guide-navigating-platform .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-beginner-guide-navigating-platform .content-wrapper .text-content {
    flex: 1;
}

.page-beginner-guide-navigating-platform .content-wrapper .image-content {
    flex: 1;
    text-align: center;
}

.page-beginner-guide-navigating-platform .responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-navigating-platform .grid-2-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-beginner-guide-navigating-platform .card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-beginner-guide-navigating-platform .card .btn {
    margin-top: 20px;
    align-self: flex-start;
}

.page-beginner-guide-navigating-platform .full-width-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    text-align: center;
}

.page-beginner-guide-navigating-platform .full-width-card img {
    margin-top: 20px;
}

.page-beginner-guide-navigating-platform .faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-beginner-guide-navigating-platform .faq-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #0A2342;
    border-left: none;
    padding-left: 0;
}

.page-beginner-guide-navigating-platform .support-channels {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-bottom: 30px;
}

.page-beginner-guide-navigating-platform .support-channels li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-beginner-guide-navigating-platform .support-channels li strong {
    color: #0A2342;
}

.page-beginner-guide-navigating-platform .conclusion-section {
    background-color: #0A2342;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-beginner-guide-navigating-platform .conclusion-section h2 {
    color: #FFD700;
}

.page-beginner-guide-navigating-platform .conclusion-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-beginner-guide-navigating-platform .hero-section h1 {
        font-size: 2.5em;
    }

    .page-beginner-guide-navigating-platform h2 {
        font-size: 2em;
    }

    .page-beginner-guide-navigating-platform h3 {
        font-size: 1.6em;
    }

    .page-beginner-guide-navigating-platform .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-beginner-guide-navigating-platform .content-wrapper.reverse-on-mobile {
        flex-direction: column-reverse;
    }

    .page-beginner-guide-navigating-platform .content-wrapper .text-content, 
    .page-beginner-guide-navigating-platform .content-wrapper .image-content {
        flex: none;
        width: 100%;
    }

    .page-beginner-guide-navigating-platform .cta-buttons .btn {
        margin: 10px 5px;
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-navigating-platform .hero-section {
        padding: 60px 0;
    }

    .page-beginner-guide-navigating-platform .hero-section h1 {
        font-size: 2em;
    }

    .page-beginner-guide-navigating-platform .hero-section p {
        font-size: 1em;
    }

    .page-beginner-guide-navigating-platform section {
        padding: 40px 0;
    }

    .page-beginner-guide-navigating-platform h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-beginner-guide-navigating-platform h3 {
        font-size: 1.4em;
    }

    .page-beginner-guide-navigating-platform .card {
        padding: 20px;
    }

    .page-beginner-guide-navigating-platform .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-navigating-platform .hero-section h1 {
        font-size: 1.8em;
    }

    .page-beginner-guide-navigating-platform .btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .page-beginner-guide-navigating-platform .btn-large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}