:root {
    --primary-color: #0A2342;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f4f7f6;
    --background-dark: #0A2342;
    --accent-color-hover: #e0b900; /* Slightly darker gold for hover */
    --border-color: #e0e0e0;
}

.page-resources-kubet-account-security {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.page-resources-kubet-account-security .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-kubet-account-security .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), #1A3A5E);
    color: var(--text-light);
}

.page-resources-kubet-account-security .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-kubet-account-security .hero-image {
    width: 100%;
    max-width: 800px; /* Adjust max-width for hero image */
    margin-bottom: 30px;
}

.page-resources-kubet-account-security .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-kubet-account-security .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-kubet-account-security .hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-kubet-account-security .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-kubet-account-security .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-kubet-account-security .cta-button:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-kubet-account-security .secondary-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-kubet-account-security .secondary-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Content Section */
.page-resources-kubet-account-security .content-section {
    padding: 60px 0;
}

.page-resources-kubet-account-security .content-section article {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-kubet-account-security h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
}

.page-resources-kubet-account-security h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-resources-kubet-account-security p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-resources-kubet-account-security ul, .page-resources-kubet-account-security ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.page-resources-kubet-account-security ul li, .page-resources-kubet-account-security ol li {
    margin-bottom: 8px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-resources-kubet-account-security strong {
    color: var(--primary-color);
}

.page-resources-kubet-account-security a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-kubet-account-security a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-resources-kubet-account-security .content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-kubet-account-security .button-group {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* FAQ Section */
.page-resources-kubet-account-security .faq-section {
    margin-top: 40px;
}

.page-resources-kubet-account-security .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-resources-kubet-account-security .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-resources-kubet-account-security .faq-question:hover {
    background: var(--background-light);
}

.page-resources-kubet-account-security .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--primary-color);
}

.page-resources-kubet-account-security .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-resources-kubet-account-security .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.page-resources-kubet-account-security .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 20px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.page-resources-kubet-account-security .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.page-resources-kubet-account-security .faq-answer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-kubet-account-security .hero-content h1 {
        font-size: 2.8em;
    }
    .page-resources-kubet-account-security .hero-content p {
        font-size: 1.1em;
    }
    .page-resources-kubet-account-security h2 {
        font-size: 2em;
    }
    .page-resources-kubet-account-security h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-kubet-account-security .hero-section {
        padding: 40px 15px;
    }
    .page-resources-kubet-account-security .hero-content h1 {
        font-size: 2.2em;
    }
    .page-resources-kubet-account-security .hero-content p {
        font-size: 1em;
    }
    .page-resources-kubet-account-security .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-resources-kubet-account-security .content-section article {
        padding: 25px;
    }
    .page-resources-kubet-account-security h2 {
        font-size: 1.8em;
    }
    .page-resources-kubet-account-security h3 {
        font-size: 1.3em;
    }
    .page-resources-kubet-account-security p, .page-resources-kubet-account-security ul li, .page-resources-kubet-account-security ol li {
        font-size: 0.95em;
    }
    .page-resources-kubet-account-security .faq-question {
        padding: 15px;
    }
    .page-resources-kubet-account-security .faq-question h3 {
        font-size: 1.1em;
    }
    .page-resources-kubet-account-security .faq-toggle {
        font-size: 1.5em;
    }
    .page-resources-kubet-account-security .button-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-kubet-account-security .hero-content h1 {
        font-size: 1.8em;
    }
    .page-resources-kubet-account-security .cta-button {
        width: 100%;
        max-width: 280px;
    }
    .page-resources-kubet-account-security .content-section article {
        padding: 15px;
    }
    .page-resources-kubet-account-security h2 {
        font-size: 1.5em;
    }
    .page-resources-kubet-account-security h3 {
        font-size: 1.2em;
    }
    .page-resources-kubet-account-security .faq-question h3 {
        font-size: 1em;
    }
}