/* style/community-user-guides.css */
.page-community-user-guides {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-community-user-guides .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-community-user-guides .hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #0A2342 50%, #F0A500 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-community-user-guides .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
}

.page-community-user-guides .hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.page-community-user-guides .section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-community-user-guides .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F0A500;
    border-radius: 2px;
}

.page-community-user-guides .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px;
    color: #555;
}

.page-community-user-guides .introduction-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-community-user-guides .introduction-section .content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-community-user-guides .introduction-section .text-content {
    flex: 1;
    font-size: 1.1em;
    color: #333;
}

.page-community-user-guides .introduction-section .text-content p {
    margin-bottom: 15px;
}

.page-community-user-guides .introduction-section .image-content {
    flex: 1;
    text-align: center;
}

.page-community-user-guides .introduction-section .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-community-user-guides .guide-categories-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.page-community-user-guides .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-community-user-guides .category-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-community-user-guides .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-community-user-guides .category-card .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-community-user-guides .category-card h3 {
    font-size: 1.6em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-community-user-guides .category-card p {
    color: #555;
    font-size: 1em;
}

.page-community-user-guides .featured-guides-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-community-user-guides .guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-community-user-guides .guide-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-community-user-guides .guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-community-user-guides .guide-card .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-community-user-guides .guide-card .card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-community-user-guides .guide-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #0A2342;
}

.page-community-user-guides .guide-card h3 a {
    text-decoration: none;
    color: #0A2342;
    transition: color 0.3s ease;
}

.page-community-user-guides .guide-card h3 a:hover {
    color: #F0A500;
}

.page-community-user-guides .guide-card p {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-community-user-guides .guide-card .read-more {
    display: inline-block;
    color: #F0A500;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-community-user-guides .guide-card .read-more:hover {
    color: #0A2342;
}

.page-community-user-guides .how-to-contribute-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.page-community-user-guides .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-community-user-guides .step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.page-community-user-guides .step-card .step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F0A500;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 5px solid #0A2342;
}

.page-community-user-guides .step-card h3 {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-community-user-guides .step-card p {
    color: #555;
    font-size: 1em;
}

.page-community-user-guides .step-card .link-text {
    color: #F0A500;
    text-decoration: none;
    font-weight: bold;
}

.page-community-user-guides .step-card .link-text:hover {
    text-decoration: underline;
}

.page-community-user-guides .cta-contribute {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #0A2342;
    border-radius: 10px;
    color: #fff;
}

.page-community-user-guides .cta-contribute p {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-community-user-guides .why-join-community-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-community-user-guides .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-community-user-guides .advantage-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: background-color 0.3s ease;
}

.page-community-user-guides .advantage-card:hover {
    background-color: #e6f0f5;
}

.page-community-user-guides .advantage-card .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.page-community-user-guides .advantage-card h3 {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-community-user-guides .advantage-card p {
    color: #555;
    font-size: 1em;
}

.page-community-user-guides .cta-section {
    background-color: #0A2342;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-community-user-guides .cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.page-community-user-guides .cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #f0f0f0;
}

/* Buttons */
.page-community-user-guides .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-community-user-guides .btn-primary {
    background-color: #F0A500;
    color: #0A2342;
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.4);
}

.page-community-user-guides .btn-primary:hover {
    background-color: #e69d00;
    color: #0A2342;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 165, 0, 0.5);
}

.page-community-user-guides .btn-secondary {
    background-color: transparent;
    color: #F0A500;
    border: 2px solid #F0A500;
    margin-left: 20px;
}

.page-community-user-guides .btn-secondary:hover {
    background-color: #F0A500;
    color: #0A2342;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.3);
}

.page-community-user-guides .btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-community-user-guides .hero-title {
        font-size: 2.8em;
    }
    .page-community-user-guides .hero-subtitle {
        font-size: 1.1em;
    }
    .page-community-user-guides .section-title {
        font-size: 2em;
    }
    .page-community-user-guides .introduction-section .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-community-user-guides .introduction-section .image-content {
        margin-top: 30px;
    }
    .page-community-user-guides .guides-grid, .page-community-user-guides .categories-grid, .page-community-user-guides .steps-grid, .page-community-user-guides .advantages-grid {
        grid-template-columns: 1fr;
    }
    .page-community-user-guides .btn-secondary {
        margin-left: 0;
        margin-top: 20px;
    }
    .page-community-user-guides .btn-large {
        margin: 10px 0;
    }
    .page-community-user-guides .cta-contribute p {
        font-size: 1.2em;
    }
    .page-community-user-guides .cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-community-user-guides .hero-section {
        padding: 80px 0;
    }
    .page-community-user-guides .hero-title {
        font-size: 2.2em;
    }
    .page-community-user-guides .hero-subtitle {
        font-size: 1em;
    }
    .page-community-user-guides .section-title {
        font-size: 1.8em;
    }
    .page-community-user-guides .section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-community-user-guides .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-community-user-guides .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-community-user-guides .cta-title {
        font-size: 1.8em;
    }
    .page-community-user-guides .cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-community-user-guides .hero-section {
        padding: 60px 0;
    }
    .page-community-user-guides .hero-title {
        font-size: 1.8em;
    }
    .page-community-user-guides .hero-subtitle {
        font-size: 0.9em;
    }
    .page-community-user-guides .section-title {
        font-size: 1.6em;
    }
    .page-community-user-guides .introduction-section .text-content, .page-community-user-guides .category-card p, .page-community-user-guides .guide-card p, .page-community-user-guides .step-card p, .page-community-user-guides .advantage-card p {
        font-size: 0.9em;
    }
    .page-community-user-guides .btn-primary, .page-community-user-guides .btn-secondary {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
    }
    .page-community-user-guides .btn-large {
        width: auto;
        margin: 10px auto;
    }
    .page-community-user-guides .cta-contribute {
        padding: 30px 20px;
    }
    .page-community-user-guides .cta-contribute p {
        font-size: 1em;
    }
    .page-community-user-guides .cta-title {
        font-size: 1.6em;
    }
    .page-community-user-guides .cta-description {
        font-size: 0.9em;
    }
}