/* ===== POST PAGE STYLES ===== */
.post-content {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

/* Social Sharing Buttons */
.social-sharing {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .social-sharing {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Adjust ShareThis buttons to match our theme */
.st-inline-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.st-btn {
    border-radius: var(--radius-sm) !important;
    transition: var(--transition) !important;
}

.st-btn:hover {
    transform: translateY(-2px) !important;
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
}

.post-header .category {
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: inline-block;
}

.post-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .post-meta {
    border-color: rgba(255, 255, 255, 0.1);
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.byline {
    display: block;
    font-weight: 600;
}

.post-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.author-link {
    color: var(--text-accent-dark);
    transition: var(--transition);
}

[data-theme="dark"] .author-link {
    color: var(--text-accent);
}

.author-link:hover {
    color: var(--primary);
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.featured-image {
    margin: 40px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 10px 15px;
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-secondary);
    background-color: var(--bg-secondary);
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-intro .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .post-intro .lead {
    border-color: rgba(255, 255, 255, 0.1);
}

.notice-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius-sm);
    margin: 30px 0;
    background-color: rgba(221, 255, 0, 0.1);
    border-left: 4px solid var(--primary);
}

.notice-box.important {
    background-color: rgba(244, 67, 54, 0.1);
    border-left-color: #F44336;
}

.notice-box.tip {
    background-color: rgba(33, 150, 243, 0.1);
    border-left-color: #2196F3;
}

.notice-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.notice-box.important .notice-icon {
    color: #F44336;
}

.notice-box.tip .notice-icon {
    color: #2196F3;
}

.notice-content h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.stat-box {
    text-align: center;
    padding: 30px;
    margin: 40px 0;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.checklist {
    margin: 30px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    margin-bottom: 8px;
    background-color: var(--bg-card);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.checklist-item:hover {
    transform: translateX(5px);
}

.checklist-item i {
    color: var(--primary);
}

.blockquote {
    padding: 30px;
    margin: 40px 0;
    background-color: var(--bg-card);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
}

.blockquote footer {
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-accent-dark);
}

[data-theme="dark"] .blockquote footer {
    color: var(--text-accent);
}

.styled-list {
    margin: 30px 0;
    padding-left: 20px;
}

.styled-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
}

.comparison-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    flex-wrap: wrap;
}

.comparison-before,
.comparison-after {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border-radius: var(--radius-sm);
}

.comparison-before {
    background-color: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #F44336;
}

.comparison-after {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
}

.comparison-arrow {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.comparison-box h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.comparison-box p {
    color: var(--text-secondary);
}

.steps-box {
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--black);
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.text-link {
    color: var(--text-accent-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

[data-theme="dark"] .text-link {
    color: var(--text-accent);
}

.text-link:hover {
    color: var(--primary);
}

.post-tags {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .post-tags {
    border-color: rgba(255, 255, 255, 0.1);
}

.post-tags h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.post-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(179, 195, 0, 0.1);
    color: var(--text-accent-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

[data-theme="dark"] .tag {
    color: var(--text-accent);
}

.tag:hover {
    background-color: var(--primary);
    color: var(--black);
}

.author-bio {
    display: flex;
    gap: 30px;
    margin: 60px 0;
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

.author-bio-content h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.author-social {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--black);
}

[data-theme="dark"] .author-social a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.author-social a:hover {
    background-color: var(--primary);
    color: var(--black);
}

.recommended-posts {
    margin-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .author-bio {
        flex-direction: column;
    }
    
    .featured-image {
        margin: 20px 0;
    }
}

@media (max-width: 576px) {
    .post-header h1 {
        font-size: 1.8rem;
    }
    
    .post-body {
        font-size: 1rem;
    }
    
    .post-intro .lead {
        font-size: 1.1rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .blockquote {
        padding: 20px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-content {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-text .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.milestone {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.milestone:hover {
    transform: translateY(-5px);
}

.milestone-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.milestone-content h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.approach-card {
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.team-intro {
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-card {
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin: 0 auto 20px;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.team-bio {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--black);
}

[data-theme="dark"] .team-social a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.team-social a:hover {
    background-color: var(--primary);
    color: var(--black);
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    padding: 25px;
    background-color: var(--bg-card);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.about-cta {
    padding: 60px;
    background: linear-gradient(135deg, rgba(221, 255, 0, 0.1), rgba(243, 245, 247, 0.3));
    border-radius: var(--radius);
    margin-top: 40px;
    text-align: center;
}

[data-theme="dark"] .about-cta {
    background: linear-gradient(135deg, rgba(221, 255, 0, 0.1), rgba(30, 30, 30, 0.3));
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-hero {
        flex-direction: column;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .about-cta {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text .lead {
        font-size: 1.1rem;
    }
    
    .about-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-form {
    max-width: 800px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray);
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-card);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(221, 255, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form {
        margin-top: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .contact-form .btn-primary {
        padding: 12px;
    }
}

/* ===== RESOURCES PAGE STYLES ===== */
.resources-content {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

.resources-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.resources-hero .hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.resources-hero .hero-text .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.resources-hero .hero-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.resources-hero .hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.resources-section {
    margin-bottom: 80px;
}

.resources-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.resources-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.resources-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

/* Category Tabs */
.category-tabs {
    margin-bottom: 40px;
}

.tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

[data-theme="dark"] .tabs-header {
    border-color: rgba(255, 255, 255, 0.1);
}

.tab-button {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
    font-family: var(--font-body);
}

.tab-button.active {
    background-color: var(--primary);
    color: var(--black);
}

.tab-button:hover:not(.active) {
    color: var(--text-primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.resource-type {
    margin-bottom: 50px;
}

.resource-type h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-badge, .download-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Community Grid */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.community-card {
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.community-card:hover {
    transform: translateY(-5px);
}

.community-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.community-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.community-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    padding: 25px;
    background-color: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Resources CTA */
.resources-cta {
    padding: 60px;
    background: linear-gradient(135deg, rgba(221, 255, 0, 0.1), rgba(243, 245, 247, 0.3));
    border-radius: var(--radius);
    margin-top: 40px;
    text-align: center;
}

[data-theme="dark"] .resources-cta {
    background: linear-gradient(135deg, rgba(221, 255, 0, 0.1), rgba(30, 30, 30, 0.3));
}

.resources-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.resources-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .resources-hero {
        flex-direction: column;
    }
    
    .resources-hero .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .resources-hero .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .resources-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .resources-section h2 {
        font-size: 1.8rem;
    }
    
    .resources-cta {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .resources-hero .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .resources-hero .hero-text .lead {
        font-size: 1.1rem;
    }
    
    .resources-section h2 {
        font-size: 1.6rem;
    }
    
    .tabs-header {
        justify-content: center;
    }
    
    .community-grid, .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */
.privacy-content {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

.privacy-content h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text-primary);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.privacy-section {
    max-width: 800px;
    margin: 0 auto 50px;
}

.privacy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--text-primary);
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-primary);
}

.privacy-section li strong {
    color: var(--text-accent-dark);
}

[data-theme="dark"] .privacy-section li strong {
    color: var(--text-accent);
}

.privacy-section address {
    font-style: normal;
    margin: 20px 0;
    line-height: 1.6;
}

.privacy-section a {
    color: var(--text-accent-dark);
    font-weight: 600;
    transition: var(--transition);
}

[data-theme="dark"] .privacy-section a {
    color: var(--text-accent);
}

.privacy-section a:hover {
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .privacy-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section p {
        font-size: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
}

/* ===== POST CONTENT TYPOGRAPHY ===== */
.post-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

/* Headers */
.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 1.5em 0 0.75em;
  color: var(--text-primary);
  line-height: 1.3;
}

.post-body h1 {
  font-size: 2rem;
  border-bottom: 2px solid rgba(221, 255, 0, 0.3);
  padding-bottom: 0.5rem;
}

.post-body h2 {
  font-size: 1.75rem;
  margin-top: 2em;
}

.post-body h3 {
  font-size: 1.5rem;
  color: var(--text-accent-dark);
}

[data-theme="dark"] .post-body h3 {
  color: var(--text-accent);
}

.post-body h4 {
  font-size: 1.25rem;
}

.post-body h5 {
  font-size: 1.1rem;
}

.post-body h6 {
  font-size: 1rem;
}

/* Links within post content - updated with #caea0d and no underline */
.post-body a {
  color: #00b34c; /* Your requested vibrant orange-red */
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

/* Text formatting */
.post-body strong,
.post-body b {
  font-weight: 700;
  color: var(--text-primary);
}

.post-body em,
.post-body i {
  font-style: italic;
}

.post-body u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Special formatting combinations */
.post-body strong em,
.post-body b i {
  font-weight: 700;
  font-style: italic;
}

/* Paragraph spacing */
.post-body p {
  margin-bottom: 1.5em;
}

/* Lists */
.post-body ul,
.post-body ol {
  margin: 1.5em 0;
  padding-left: 2em;
}

.post-body li {
  margin-bottom: 0.75em;
}

/* Blockquotes */
.post-body blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5em;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* Code and preformatted text */
.post-body code {
  font-family: monospace;
  background-color: rgba(221, 255, 0, 0.1);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
}

.post-body pre {
  background-color: var(--bg-card);
  padding: 1em;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 1.5em 0;
}

.post-body pre code {
  background-color: transparent;
  padding: 0;
}

