
    .page-tr-c-ti-p-thomo-67 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text on dark background for contrast */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small padding at the top, assuming body has header offset */
    }

    /* General Section Styling */
    .page-tr-c-ti-p-thomo-67__section-title {
        font-size: 2.5rem;
        color: #ffd700; /* Gold accent color */
        text-align: center;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .page-tr-c-ti-p-thomo-67__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 600px;
        background-color: #000;
        overflow: hidden;
        padding: 20px 0;
        text-align: center;
    }

    .page-tr-c-ti-p-thomo-67__hero-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .page-tr-c-ti-p-thomo-67__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4; /* Darken image for text readability */
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-tr-c-ti-p-thomo-67__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text */
        border-radius: 10px;
    }

    .page-tr-c-ti-p-thomo-67__hero-title {
        font-size: 3.5rem;
        color: #ffd700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-tr-c-ti-p-thomo-67__hero-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-tr-c-ti-p-thomo-67__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .page-tr-c-ti-p-thomo-67__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        font-size: 1.1rem;
        text-align: center;
        box-sizing: border-box; /* Ensure padding is included */
    }

    .page-tr-c-ti-p-thomo-67__button--primary {
        background-color: #ffd700; /* Gold */
        color: #1a1a1a;
        border: 2px solid #ffd700;
    }

    .page-tr-c-ti-p-thomo-67__button--primary:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
    }

    .page-tr-c-ti-p-thomo-67__button--secondary {
        background-color: transparent;
        color: #ffd700;
        border: 2px solid #ffd700;
    }

    .page-tr-c-ti-p-thomo-67__button--secondary:hover {
        background-color: rgba(255, 215, 0, 0.1);
        transform: translateY(-2px);
    }

    /* Features Section */
    .page-tr-c-ti-p-thomo-67__features-section {
        padding: 80px 20px;
        background-color: #222;
        text-align: center;
    }

    .page-tr-c-ti-p-thomo-67__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-tr-c-ti-p-thomo-67__feature-item {
        background-color: #333;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-tr-c-ti-p-thomo-67__feature-icon {
        width: 200px; /* Minimum 200px */
        height: auto;
        max-width: 100%;
        margin-bottom: 20px;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .page-tr-c-ti-p-thomo-67__feature-title {
        font-size: 1.8rem;
        color: #ffd700;
        margin-bottom: 15px;
    }

    .page-tr-c-ti-p-thomo-67__feature-description {
        font-size: 1rem;
        color: #ccc;
    }

    /* Guide Section */
    .page-tr-c-ti-p-thomo-67__guide-section {
        padding: 80px 20px;
        background-color: #1a1a1a;
        text-align: center;
    }

    .page-tr-c-ti-p-thomo-67__guide-steps {
        display: flex;
        flex-wrap: wrap; /* Allow wrapping for mobile */
        justify-content: center;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 50px auto;
    }

    .page-tr-c-ti-p-thomo-67__guide-step-item {
        background-color: #333;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        flex: 1;
        min-width: 280px;
        max-width: 350px; /* Limit width for larger screens */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-tr-c-ti-p-thomo-67__guide-step-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #ffd700;
        margin-bottom: 15px;
        width: 60px;
        height: 60px;
        border: 3px solid #ffd700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #1a1a1a;
    }

    .page-tr-c-ti-p-thomo-67__guide-step-title {
        font-size: 1.8rem;
        color: #ffd700;
        margin-bottom: 10px;
    }

    .page-tr-c-ti-p-thomo-67__guide-step-description {
        font-size: 1rem;
        color: #ccc;
    }

    .page-tr-c-ti-p-thomo-67__guide-cta {
        margin-top: 40px;
    }

    /* FAQ Section */
    .page-tr-c-ti-p-thomo-67__faq-section {
        padding: 80px 20px;
        background-color: #222;
        text-align: center;
    }

    .page-tr-c-ti-p-thomo-67__faq-list {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

    .page-tr-c-ti-p-thomo-67__faq-item {
        background-color: #333;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-tr-c-ti-p-thomo-67__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #444;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-tr-c-ti-p-thomo-67__faq-question:hover {
        background-color: #555;
    }

    .page-tr-c-ti-p-thomo-67__faq-title {
        font-size: 1.2rem;
        color: #ffd700;
        margin: 0;
        pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-tr-c-ti-p-thomo-67__faq-toggle {
        font-size: 1.5rem;
        font-weight: bold;
        color: #ffd700;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from intercepting click */
    }

    .page-tr-c-ti-p-thomo-67__faq-item.active .page-tr-c-ti-p-thomo-67__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-tr-c-ti-p-thomo-67__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
        color: #ccc;
        font-size: 1rem;
    }

    .page-tr-c-ti-p-thomo-67__faq-item.active .page-tr-c-ti-p-thomo-67__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to accommodate content */
        padding: 20px 20px !important; /* Padding when active */
        opacity: 1;
    }

    /* Bottom CTA Section */
    .page-tr-c-ti-p-thomo-67__cta-bottom-section {
        padding: 80px 20px;
        background-color: #1a1a1a;
        text-align: center;
    }

    .page-tr-c-ti-p-thomo-67__cta-description {
        font-size: 1.2rem;
        color: #e0e0e0;
        max-width: 800px;
        margin: 0 auto 40px auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-tr-c-ti-p-thomo-67__hero-title {
            font-size: 3rem;
        }
        .page-tr-c-ti-p-thomo-67__section-title {
            font-size: 2rem;
        }
        .page-tr-c-ti-p-thomo-67__features-grid,
        .page-tr-c-ti-p-thomo-67__guide-steps {
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .page-tr-c-ti-p-thomo-67__hero-section {
            min-height: 500px;
        }
        .page-tr-c-ti-p-thomo-67__hero-title {
            font-size: 2.2rem;
        }
        .page-tr-c-ti-p-thomo-67__hero-description {
            font-size: 1rem;
        }
        .page-tr-c-ti-p-thomo-67__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-tr-c-ti-p-thomo-67__button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
            font-size: 1rem;
        }

        .page-tr-c-ti-p-thomo-67__section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        /* Responsive list items */
        .page-tr-c-ti-p-thomo-67__features-grid,
        .page-tr-c-ti-p-thomo-67__guide-steps {
            grid-template-columns: 1fr; /* Single column for features */
            display: flex; /* Use flex for guide steps to maintain order */
            flex-direction: column;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 15px !important; /* Adjust padding for container */
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-tr-c-ti-p-thomo-67__feature-item,
        .page-tr-c-ti-p-thomo-67__guide-step-item {
            width: 100% !important;
            max-width: 100% !important;
            padding: 25px 20px !important; /* Adjust padding for items */
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-tr-c-ti-p-thomo-67__feature-title,
        .page-tr-c-ti-p-thomo-67__guide-step-title {
            font-size: 1.5rem;
        }

        .page-tr-c-ti-p-thomo-67__faq-title {
            font-size: 1.1rem;
        }
        .page-tr-c-ti-p-thomo-67__faq-answer {
            padding: 0 15px;
        }
        .page-tr-c-ti-p-thomo-67__faq-item.active .page-tr-c-ti-p-thomo-67__faq-answer {
            padding: 15px 15px !important;
        }
        
        .page-tr-c-ti-p-thomo-67__hero-image,
        .page-tr-c-ti-p-thomo-67__feature-icon {
            max-width: 100%;
            height: auto;
        }
        .page-tr-c-ti-p-thomo-67__hero-image-container,
        .page-tr-c-ti-p-thomo-67__feature-item,
        .page-tr-c-ti-p-thomo-67__guide-step-item {
            box-sizing: border-box;
            overflow: hidden;
        }
    }

    @media (max-width: 480px) {
        .page-tr-c-ti-p-thomo-67__hero-title {
            font-size: 1.8rem;
        }
        .page-tr-c-ti-p-thomo-67__section-title {
            font-size: 1.5rem;
        }
        .page-tr-c-ti-p-thomo-67__button {
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .page-tr-c-ti-p-thomo-67__hero-content {
            padding: 15px;
        }
        .page-tr-c-ti-p-thomo-67__faq-question {
            padding: 12px 15px;
        }
        .page-tr-c-ti-p-thomo-67__faq-title {
            font-size: 1rem;
        }
    }
  