
        .page-guides {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .page-guides__hero-section {
            position: relative;
            padding: 80px 20px;
            padding-top: 10px; /* Minimal padding-top, body handles header offset */
            background-color: #ffffff;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .page-guides__hero-image-wrapper {
            width: 100%;
            max-width: 1200px;
            margin-bottom: 20px;
        }

        .page-guides__hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .page-guides__hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .page-guides__main-title {
            color: #2563eb;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .page-guides__description {
            font-size: 1.15em;
            color: #64748b;
            margin-bottom: 30px;
        }

        .page-guides__cta-button {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
            cursor: pointer;
            border: none;
        }

        .page-guides__cta-button:hover {
            background-color: #1e40af;
            transform: translateY(-2px);
        }

        .page-guides__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            border-bottom: 1px solid #e0e0e0;
            box-sizing: border-box;
        }

        .page-guides__section:last-of-type {
            border-bottom: none;
        }

        .page-guides__section-title {
            color: #2563eb;
            font-size: 2.2em;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
        }

        .page-guides__article-content {
            font-size: 1.05em;
            color: #333333;
            text-align: justify;
        }

        .page-guides__article-content h3 {
            color: #2563eb;
            font-size: 1.6em;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-guides__article-content h4 {
            color: #64748b;
            font-size: 1.3em;
            margin-top: 25px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-guides__article-content p {
            margin-bottom: 15px;
        }

        .page-guides__article-content ul {
            list-style: disc;
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .page-guides__article-content ol {
            list-style: decimal;
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .page-guides__article-content li {
            margin-bottom: 8px;
            box-sizing: border-box;
        }

        .page-guides__article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .page-guides__button-group {
            text-align: center;
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }

        .page-guides__button-group .page-guides__cta-button {
            margin: 0;
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-guides__link-button {
            display: inline-block;
            background-color: #f0f4f8;
            color: #2563eb;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s ease;
            border: 1px solid #2563eb;
            cursor: pointer;
        }

        .page-guides__link-button:hover {
            background-color: #e0e7ed;
            color: #1e40af;
        }

        .page-guides__faq-section {
            background-color: #f0f4f8;
        }

        .page-guides__faq-item {
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .page-guides__faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .page-guides__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            font-size: 1.15em;
            font-weight: 600;
            color: #2563eb;
            cursor: pointer;
            user-select: none;
            background-color: #f9f9f9;
            border-bottom: 1px solid #e0e0e0;
            transition: background-color 0.3s ease;
        }

        .page-guides__faq-question:hover {
            background-color: #eef2f7;
        }

        .page-guides__faq-question h3 {
            margin: 0;
            pointer-events: none; /* Prevent h3 from blocking click event */
            color: #2563eb;
            font-size: 1.15em;
        }

        .page-guides__faq-toggle {
            font-size: 1.5em;
            line-height: 1;
            pointer-events: none; /* Prevent toggle from blocking click event */
            color: #64748b;
            transition: transform 0.3s ease;
        }

        .page-guides__faq-item.active .page-guides__faq-toggle {
            transform: rotate(45deg);
            color: #1e40af;
        }

        .page-guides__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: #333333;
        }

        .page-guides__faq-item.active .page-guides__faq-answer {
            max-height: 2000px !important; /* Sufficiently large to show content */
            padding: 20px !important;
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-guides__hero-section {
                padding: 40px 15px;
                padding-top: 10px; /* body handles header offset */
            }

            .page-guides__main-title {
                font-size: 1.8em;
                margin-bottom: 15px;
            }

            .page-guides__description {
                font-size: 1em;
                margin-bottom: 20px;
            }

            .page-guides__cta-button {
                padding: 12px 20px;
                font-size: 1em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                margin-bottom: 10px;
            }

            .page-guides__button-group {
                flex-direction: column;
                gap: 10px;
                padding: 0 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
            }

            .page-guides__button-group .page-guides__cta-button {
                width: 100%;
            }

            .page-guides__section {
                padding: 30px 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-guides__section-title {
                font-size: 1.8em;
                margin-bottom: 30px;
            }

            .page-guides__article-content {
                font-size: 0.95em;
            }

            .page-guides__article-content h3 {
                font-size: 1.4em;
            }

            .page-guides__article-content h4 {
                font-size: 1.1em;
            }

            .page-guides__article-image {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }

            .page-guides__faq-question {
                font-size: 1em;
                padding: 15px;
            }

            .page-guides__faq-answer {
                padding: 15px !important;
            }

            .page-guides__article-content ul,
            .page-guides__article-content ol {
                margin-left: 15px;
            }

            .page-guides__article-content li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }

        @media (min-width: 769px) {
            .page-guides__main-title {
                font-size: clamp(2.5em, 4vw, 3.5em);
            }
        }

        /* Ensure all images are responsive */
        .page-guides img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Ensure all video containers are responsive */
        .page-guides__video-container {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }

        .page-guides__video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .page-guides__video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            max-width: 100% !important;
            height: auto !important;
            display: block !important;
        }
    