/* style/resources-how-to-register-tt88-safely.css */

.page-resources-how-to-register-tt88-safely {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-resources-how-to-register-tt88-safely__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-how-to-register-tt88-safely__hero {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-resources-how-to-register-tt88-safely__back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-resources-how-to-register-tt88-safely__back-link:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-register-tt88-safely__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-register-tt88-safely__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
}

.page-resources-how-to-register-tt88-safely__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue for text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-register-tt88-safely__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-resources-how-to-register-tt88-safely__content-section {
    padding: 40px 0;
    background-color: #fff;
}

.page-resources-how-to-register-tt88-safely__article-body {
    font-size: 1.05em;
    color: #444;
}

.page-resources-how-to-register-tt88-safely__article-body h2 {
    font-size: 2em;
    color: #000080; /* Dark Blue */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-resources-how-to-register-tt88-safely__article-body h3 {
    font-size: 1.5em;
    color: #000080; /* Dark Blue */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-how-to-register-tt88-safely__article-body p {
    margin-bottom: 15px;
}

.page-resources-how-to-register-tt88-safely__list,
.page-resources-how-to-register-tt88-safely__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-resources-how-to-register-tt88-safely__ordered-list {
    list-style-type: decimal;
}

.page-resources-how-to-register-tt88-safely__list li,
.page-resources-how-to-register-tt88-safely__ordered-list li {
    margin-bottom: 8px;
}

.page-resources-how-to-register-tt88-safely__note {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    color: #856404;
    border-radius: 4px;
}

.page-resources-how-to-register-tt88-safely__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-resources-how-to-register-tt88-safely__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.page-resources-how-to-register-tt88-safely__image-caption {
    margin-top: 10px;
    font-style: italic;
    color: #777;
    font-size: 0.9em;
}

.page-resources-how-to-register-tt88-safely__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.page-resources-how-to-register-tt88-safely__secondary-button {
    display: inline-block;
    background-color: #000080; /* Dark Blue */
    color: #FFD700; /* Gold for text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-register-tt88-safely__secondary-button:hover {
    background-color: #000066; /* Slightly darker blue */
    transform: translateY(-2px);
}

.page-resources-how-to-register-tt88-safely__button-group--footer {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-how-to-register-tt88-safely__title {
        font-size: 2em;
    }

    .page-resources-how-to-register-tt88-safely__subtitle {
        font-size: 1em;
    }

    .page-resources-how-to-register-tt88-safely__hero {
        padding: 40px 0;
    }

    .page-resources-how-to-register-tt88-safely__back-link {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
        font-size: 0.9em;
    }

    .page-resources-how-to-register-tt88-safely__article-body h2 {
        font-size: 1.6em;
    }

    .page-resources-how-to-register-tt88-safely__article-body h3 {
        font-size: 1.3em;
    }

    .page-resources-how-to-register-tt88-safely__cta-button,
    .page-resources-how-to-register-tt88-safely__secondary-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-resources-how-to-register-tt88-safely__button-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-how-to-register-tt88-safely__title {
        font-size: 1.8em;
    }

    .page-resources-how-to-register-tt88-safely__subtitle {
        font-size: 0.9em;
    }

    .page-resources-how-to-register-tt88-safely__hero {
        padding: 30px 0;
    }

    .page-resources-how-to-register-tt88-safely__cta-button,
    .page-resources-how-to-register-tt88-safely__secondary-button {
        width: 90%;
        text-align: center;
    }
}