/**
 * PDF Tools Hub - Pages Styles
 * 
 * Styles for:
 * - Privacy Policy Page
 * - About Us Page
 * - Contact Page
 * - Blog/Guides Page
 * - Resources Page
 * 
 * @package PDF_Tools_Hub
 * @version 1.0.0
 */

/* ===== SHARED PAGE STYLES ===== */
.page-content {
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 80px);
}

.page-hero {
    text-align: center;
    padding: 3rem 0 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .page-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Icons */
.trust-shield,
.about-avatar,
.contact-icon-main,
.blog-icon-main,
.resources-icon-main {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

/* ===== PRIVACY PAGE ===== */
.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.privacy-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.privacy-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.privacy-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.privacy-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.privacy-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Privacy Promise */
.privacy-promise {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.promise-badge {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.privacy-promise h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.promise-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.promise-text p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.promise-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.promise-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-light);
}

.promise-list li i.red {
    color: #ef4444;
}

.promise-commitment {
    font-size: 1.1rem;
    color: var(--white) !important;
    text-align: center;
    margin-top: 1.5rem !important;
}

/* Privacy Details */
.privacy-details {
    margin-bottom: 4rem;
}

.privacy-details>h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.privacy-details>h2 i {
    color: var(--primary);
}

.privacy-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.privacy-section p {
    color: var(--gray-light);
    line-height: 1.7;
}

.privacy-section ul {
    color: var(--gray-light);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
}

/* Tool Privacy List */
.tool-privacy-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
}

.tool-badge.offline {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Privacy Table */
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.privacy-table th,
.privacy-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-table th {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.privacy-table td {
    color: var(--gray-light);
}

.privacy-table .no i {
    color: #ef4444;
}

.privacy-table .maybe i {
    color: #f59e0b;
}

.privacy-table .local i {
    color: #3b82f6;
}

/* Privacy Contact & Footer */
.privacy-contact {
    text-align: center;
    padding: 3rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.privacy-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.privacy-contact p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.privacy-footer {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.privacy-footer p {
    margin-bottom: 0.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    margin-bottom: 4rem;
}

.story-content>h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.story-content>h2 i {
    color: var(--primary);
}

.story-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.story-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.story-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.story-text p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.frustration-list,
.idea-list {
    list-style: none;
    padding: 0;
}

.frustration-list li,
.idea-list li {
    padding: 0.5rem 0;
    color: var(--gray-light);
}

.idea-list li .green {
    color: #10b981;
}

/* Difference Section */
.about-difference {
    margin-bottom: 4rem;
}

.about-difference>h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.about-difference>h2 i {
    color: #f59e0b;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.difference-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.difference-compare {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.compare-them,
.compare-us {
    flex: 1;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.compare-them {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.compare-us {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.compare-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.compare-them p {
    color: #f87171;
}

.compare-us p {
    color: #34d399;
}

.compare-vs {
    color: var(--gray);
    font-weight: bold;
    font-size: 0.85rem;
}

/* Values Section */
.about-values {
    margin-bottom: 4rem;
}

.about-values>h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.about-values>h2 i {
    color: #ef4444;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: white;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.value-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* About Stats */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 3rem 2rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.about-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stats .stat-label {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Open Source */
.about-opensource {
    text-align: center;
    padding: 2rem;
    margin-bottom: 3rem;
}

.opensource-icon {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.about-opensource h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.about-opensource p {
    color: var(--gray-light);
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    margin-bottom: 3rem;
}

.about-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.5rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Contact */
.about-contact {
    text-align: center;
}

.about-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.about-contact p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-form-section h2 i {
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.form-group label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.form-group .optional {
    color: var(--gray);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray);
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 0.5rem;
}

.form-privacy-note i {
    color: #10b981;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 2rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #10b981;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.form-success p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.send-another-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: var(--gray-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.send-another-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Contact Info Section */
.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-card h3 i {
    color: var(--primary);
}

.contact-info-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-info-card p.small {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.contact-info-card ul {
    color: var(--gray-light);
    font-size: 0.85rem;
    margin: 0.5rem 0 0 1.25rem;
}

.contact-info-card ul li {
    margin-bottom: 0.3rem;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Social Card */
.social-card .social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.social-link.twitter:hover {
    color: #1DA1F2;
}

.social-link.github:hover {
    color: white;
}

.social-link.discord:hover {
    color: #5865F2;
}

/* Quick Help Section */
.quick-help-section {
    margin-bottom: 4rem;
}

.quick-help-section>h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.quick-help-section>h2 i {
    color: var(--primary);
}

.quick-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.quick-help-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.quick-help-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.quick-help-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.quick-help-item p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.quick-help-item a {
    color: var(--primary);
}

/* ===== BLOG PAGE ===== */
.featured-guide {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 2rem;
}

.featured-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.featured-image {
    width: 150px;
    height: 150px;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}

.featured-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.featured-text p {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.featured-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.read-more-btn:hover {
    transform: translateX(5px);
}

/* Guide Categories */
.guide-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.category-btn,
.resource-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    color: var(--gray-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.resource-cat-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.category-btn.active,
.resource-cat-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.guide-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.guide-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.guide-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.guide-category {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.guide-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.guide-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.guide-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.guide-meta span {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.guide-tool {
    background: rgba(99, 102, 241, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    color: var(--primary) !important;
}

.guide-tag {
    background: rgba(16, 185, 129, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    color: #10b981 !important;
}

/* Blog Newsletter */
.blog-newsletter {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.newsletter-content i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.newsletter-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.newsletter-content p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    padding: 0.85rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

/* Blog CTA */
.blog-cta {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
}

.blog-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* ===== RESOURCES PAGE ===== */
.resource-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.resource-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.resource-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.resource-preview {
    width: 100%;
    height: 100px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.resource-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.75rem;
    width: fit-content;
}

.resource-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.resource-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.resource-formats {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.resource-formats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--gray);
}

.download-resource-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.download-resource-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

/* Resources How To */
.resources-howto {
    margin-bottom: 4rem;
}

.resources-howto>h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.resources-howto>h2 i {
    color: var(--primary);
}

.howto-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.howto-step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.howto-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.howto-step p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* Resources Request */
.resources-request {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    margin-bottom: 3rem;
}

.request-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #f59e0b;
}

.resources-request h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.resources-request p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.request-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 2rem;
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.request-btn:hover {
    background: rgba(245, 158, 11, 0.25);
}

/* Resources CTA */
.resources-cta {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
}

.resources-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

.resources-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .featured-content {
        flex-direction: column;
        text-align: center;
    }

    .featured-meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero .page-title {
        font-size: 2rem;
    }

    .page-hero .page-subtitle {
        font-size: 1rem;
    }

    .story-block {
        flex-direction: column;
        text-align: center;
    }

    .story-icon {
        margin: 0 auto;
    }

    .about-stats {
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .howto-steps {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 1rem 0 3rem;
    }

    .privacy-promise {
        padding: 2rem 1.5rem;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .difference-compare {
        flex-direction: column;
    }

    .compare-vs {
        transform: rotate(90deg);
    }
}

/* ===== LIGHT MODE ===== */
body.light-mode .page-content,
[data-theme="light"] .page-content {
    color: #0f172a;
}

body.light-mode .privacy-card,
body.light-mode .value-card,
body.light-mode .contact-info-card,
body.light-mode .guide-card,
body.light-mode .resource-card,
body.light-mode .quick-help-item,
body.light-mode .privacy-section,
body.light-mode .difference-card,
[data-theme="light"] .privacy-card,
[data-theme="light"] .value-card,
[data-theme="light"] .contact-info-card,
[data-theme="light"] .guide-card,
[data-theme="light"] .resource-card,
[data-theme="light"] .quick-help-item,
[data-theme="light"] .privacy-section,
[data-theme="light"] .difference-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .privacy-card h3,
body.light-mode .value-card h3,
body.light-mode .guide-card h3,
body.light-mode .resource-card h3,
body.light-mode .story-text h3,
body.light-mode .privacy-section h3,
[data-theme="light"] .privacy-card h3,
[data-theme="light"] .value-card h3,
[data-theme="light"] .guide-card h3,
[data-theme="light"] .resource-card h3,
[data-theme="light"] .story-text h3,
[data-theme="light"] .privacy-section h3 {
    color: #0f172a;
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea,
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
    color: #0f172a;
}