/* style/resources-tdtc-login-faq.css */

/* Base styles for the page content */
.page-resources-tdtc-login-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: transparent; /* Body background from shared.css */
}

.page-resources-tdtc-login-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-tdtc-login-faq__hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #26A9E0 0%, #1a1a2e 100%); /* Blend brand color with body bg */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-tdtc-login-faq__main-title {
    font-size: 3.2em;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-tdtc-login-faq__intro-text {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-tdtc-login-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-resources-tdtc-login-faq__btn-primary,
.page-resources-tdtc-login-faq__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box; /* For mobile responsiveness */
    white-space: normal; /* For mobile responsiveness */
    word-wrap: break-word; /* For mobile responsiveness */
}

.page-resources-tdtc-login-faq__btn-primary {
    background: #EA7C07; /* Login color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-resources-tdtc-login-faq__btn-primary:hover {
    background: #d46c05;
    border-color: #d46c05;
    transform: translateY(-2px);
}

.page-resources-tdtc-login-faq__btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-resources-tdtc-login-faq__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-resources-tdtc-login-faq__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}