/* style/blog-taya365-security-and-trust-deep-dive.css */
:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg: #111111;
    --background-color-page: #0A0A0A; /* Page specific background if different from body */
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --dark-text-color: #333333; /* For elements with light backgrounds */
    --light-text-color: #FFF6D6; /* For elements with dark backgrounds */
    --header-offset: 120px; /* Default desktop offset, will be overridden by shared.css */
}

.page-blog-taya365-security-and-trust-deep-dive {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--light-text-color); /* Overall text color for dark background */
    background-color: var(--background-color-page); /* Page specific background */
}

/* Fixed Header Padding */
/* As per instruction: body handles padding-top. First section gets small top margin. */
.page-blog-taya365-security-and-trust-deep-dive__hero-section {
    padding-top: 10px; /* Small top padding for visual spacing, body handles main offset */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    background-color: var(--background-color-page);
}

.page-blog-taya365-security-and-trust-deep-dive__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-blog-taya365-security-and-trust-deep-dive__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background effect */
    display: block;
}

.page-blog-taya365-security-and-trust-deep-dive__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-taya365-security-and-trust-deep-dive__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Using clamp as suggested for H1 */
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-blog-taya365-security-and-trust-deep-dive__subtitle {
    font-size: 1.1em;
    color: var(--light-text-color);
    margin-bottom: 30px;
}

.page-blog-taya365-security-and-trust-deep-dive__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-taya365-security-and-trust-deep-dive__btn-primary,
.page-blog-taya365-security-and-trust-deep-dive__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* For button responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-blog-taya365-security-and-trust-deep-dive__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-taya365-security-and-trust-deep-dive__btn-primary:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
    transform: translateY(-2px);
}

.page-blog-taya365-security-and-trust-deep-dive__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.2);
}

.page-blog-taya365-security-and-trust-deep-dive__btn-secondary:hover {
    background-color: rgba(255, 211, 107, 0.1);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
    transform: translateY(-2px);
}

.page-blog-taya365-security-and-trust-deep-dive__content-wrapper {
    padding: 40px 0;
    background-color: var(--background-color-page);
}

.page-blog-taya365-security-and-trust-deep-dive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-taya365-security-and-trust-deep-dive__article-content {
    background-color: var(--card-bg); /* Use card background for article content */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-blog-taya365-security-and-trust-deep-dive__section-title {
    font-size: 2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.page-blog-taya365-security-and-trust-deep-dive__section-title:first-of-type {
    margin-top: 0;
}

.page-blog-taya365-security-and-trust-deep-dive__text-block {
    font-size: 1.05em;
    margin-bottom: 25px;
    color: var(--light-text-color);
}

.page-blog-taya365-security-and-trust-deep-dive__text-block a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-taya365-security-and-trust-deep-dive__text-block a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.page-blog-taya365-security-and-trust-deep-dive__image-block {
    margin: 30px 0;
    text-align: center;
}

.page-blog-taya365-security-and-trust-deep-dive__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    display: block; /* Ensure it behaves as a block element */
    margin: 0 auto; /* Center image */
}

/* FAQ Section */
.page-blog-taya365-security-and-trust-deep-dive__faq-section {
    padding: 60px 0;
    background-color: var(--background-color-page);
}

.page-blog-taya365-security-and-trust-deep-dive__faq-list {
    margin-top: 30px;
}

.page-blog-taya365-security-and-trust-deep-dive__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-taya365-security-and-trust-deep-dive__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 211, 107, 0.05); /* Slightly lighter background for question */
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.page-blog-taya365-security-and-trust-deep-dive__faq-question h3 {
    margin: 0;
    font-size: 1.15em;
    color: var(--primary-color);
    font-weight: bold;
}

.page-blog-taya365-security-and-trust-deep-dive__faq-toggle {
    font-size: 1.5em;
    color: var(--secondary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-blog-taya365-security-and-trust-deep-dive__faq-item.active .page-blog-taya365-security-and-trust-deep-dive__faq-toggle {
    transform: rotate(45deg); /* Plus sign rotates to a cross */
}

.page-blog-taya365-security-and-trust-deep-dive__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--light-text-color);
}

.page-blog-taya365-security-and-trust-deep-dive__faq-item.active .page-blog-taya365-security-and-trust-deep-dive__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-blog-taya365-security-and-trust-deep-dive__faq-answer p {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--light-text-color);
}
.page-blog-taya365-security-and-trust-deep-dive__faq-answer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}
.page-blog-taya365-security-and-trust-deep-dive__faq-answer a:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-taya365-security-and-trust-deep-dive__hero-content {
        padding: 15px;
    }
    .page-blog-taya365-security-and-trust-deep-dive__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }
    .page-blog-taya365-security-and-trust-deep-dive__subtitle {
        font-size: 1em;
    }
    .page-blog-taya365-security-and-trust-deep-dive__article-content {
        padding: 30px;
    }
    .page-blog-taya365-security-and-trust-deep-dive__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-blog-taya365-security-and-trust-deep-dive__hero-section {
        padding-top: var(--header-offset, 100px) !important; /* Mobile specific header offset */
        padding-bottom: 40px;
    }
    .page-blog-taya365-security-and-trust-deep-dive__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-blog-taya365-security-and-trust-deep-dive__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-blog-taya365-security-and-trust-deep-dive__btn-primary,
    .page-blog-taya365-security-and-trust-deep-dive__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95em;
    }
    .page-blog-taya365-security-and-trust-deep-dive__container {
        padding: 0 15px;
    }
    .page-blog-taya365-security-and-trust-deep-dive__article-content {
        padding: 20px;
    }
    .page-blog-taya365-security-and-trust-deep-dive__section-title {
        font-size: 1.5em;
        margin-top: 30px;
    }
    .page-blog-taya365-security-and-trust-deep-dive__text-block {
        font-size: 1em;
    }
    .page-blog-taya365-security-and-trust-deep-dive__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-taya365-security-and-trust-deep-dive__image-block,
    .page-blog-taya365-security-and-trust-deep-dive__cta-buttons--bottom {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-taya365-security-and-trust-deep-dive__faq-question {
        padding: 15px 20px;
    }
    .page-blog-taya365-security-and-trust-deep-dive__faq-question h3 {
        font-size: 1em;
    }
    .page-blog-taya365-security-and-trust-deep-dive__faq-answer {
        padding: 0 20px;
    }
    .page-blog-taya365-security-and-trust-deep-dive__faq-item.active .page-blog-taya365-security-and-trust-deep-dive__faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-blog-taya365-security-and-trust-deep-dive__main-title {
        font-size: clamp(1.3em, 7vw, 2em);
    }
    .page-blog-taya365-security-and-trust-deep-dive__section-title {
        font-size: 1.3em;
    }
}