/* Hero Section */
.leistungen-hero {
    height: 450px;
    margin-top: 0px;
    background-size:auto;
    background: url('/uploads/business-4312920_1920.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo{
    filter: brightness(100%) invert(1);
}


header.scrolled .logo img {
    height: 50px;
    filter: brightness(0) invert(0);
}

.menu > li > a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

nav{
    color: white !important;
}

.leistungen-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.leistungen-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 16px;
}

/* Featured Services Section */
.featured-services {
    padding: 80px 80px;
    background: #fff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.services-two {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
}

.service-card,
.service-card-large {
    position: relative;
    height: 300px;
    background: url('/uploads/pagetitle.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover,
.service-card-large:hover {
    transform: translateY(-5px);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.service-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.service-content h2 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 600;
    color: #ccc;
}

.service-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #fff;
    color: #333;
}

/* All Services Section */
.all-services {
    padding: 80px 80px;
    background: #f6f6f6;
}

.all-services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.flip-card {
    height: 220px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-icon {
    font-size: 38px;
    margin-bottom: 20px;
}

.flip-card h3 {
    font-size: 11px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    color: #000;
}

.flip-card-back p {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    margin-top: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 1024px) {
    .featured-services {
        padding: 60px 40px;
    }

    .all-services {
        padding: 60px 40px;
    }

    .all-services-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mobile-menu-toggle span{
    background: white;
}

/* Mobile */
@media (max-width: 768px) {
    .leistungen-hero {
        height: 250px;
        margin-top: 70px;
    }

    .blog-post-hero{
        height: 700px !important; 
    }


    


    .blog-post-title {
    font-family: 'Hind', sans-serif;
    font-size: 36px !important;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

    .leistungen-hero h1 {
        font-size: 40px;
        letter-spacing: 5px;
    }

    .featured-services {
        padding: 40px 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .services-two {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card-large {
        height: 280px;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h2 {
        font-size: 18px;
    }

    .all-services {
        padding: 40px 20px;
    }

    .all-services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .flip-card {
        height: 200px;
    }

    .flip-card-front,
    .flip-card-back {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .leistungen-hero h1 {
        font-size: 32px;
    }

    .all-services-container {
        grid-template-columns: 1fr;
    }
}



/* Team Section */
.team-section {
    padding: 150px 80px 80px;
    background: #fff;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h1 {
    font-size: 40px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 3px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 20px;
    border: 10px solid rgba(0, 0, 0, 0.05);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-info h3 {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.team-roles {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
}

.team-roles p {
    font-size: 10px;
    font-family: 'Mulish', sans-serif;
    color: #666;
    line-height: 1.6;
    margin: 3px 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .team-section {
        padding: 120px 40px 60px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .team-container h1 {
        margin-bottom: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .team-section {
        padding: 100px 20px 40px;
    }

    .team-container h1 {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 300px;
        margin: 0 auto;
    }

    .team-image {
        border-width: 8px;
    }
}

@media (max-width: 480px) {
    .team-container h1 {
        font-size: 28px;
    }
}

/* BLOG SECTION STYLES */

.blog-section {
    padding: 150px 80px 80px;
    background: #fff;
}

.blog-container {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-container h1 {
    font-size: 40px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 3px;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-post {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-post.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-post h2 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post h2 a:hover {
    color: #666;
}

.blog-post p {
    font-size: 22px;
    line-height: 1.8;
    color: #666;
        text-align: center;

}

.blog-pagination {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.current-page {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.page-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Tablet */
@media (max-width: 1024px) {
    .blog-section {
        padding: 120px 40px 60px;
    }

    .blog-container h1 {
        margin-bottom: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .blog-section {
        padding: 100px 20px 40px;
    }

    .blog-container h1 {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .blog-post {
        padding: 30px 0;
    }

    .blog-post h2 {
        font-size: 18px;
    }

    .blog-post p {
        font-size: 14px;
    }

    .blog-pagination {
        margin-top: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .blog-container h1 {
        font-size: 28px;
    }

    .blog-post h2 {
        font-size: 16px;
    }
}

/* NEWS/BLOG SECTION STYLES */

.news-section {
    padding: 150px 80px 80px;
    background: #fff;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 10px;
    text-transform: uppercase;
}

/* News Article Styling */
.news-article {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 50px;
    margin-bottom: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.news-article:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.news-article.featured {
    border-left: 5px solid #b8b8b8;
    background: #fafafa;
}

.news-article.latest {
    border-left: 3px solid #d4d4d4;
}

/* Badge Styling */
.news-badge-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.news-badge {
    display: inline-block;
    padding: 6px 14px;
    font-family: 'Hind', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
}

.news-badge.hot {
    background: #ff4444;
    color: #fff;
}

.news-badge.new {
    background: #000;
    color: #fff;
}

/* Date Styling */
.news-date {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Title Styling */
.news-title {
    font-family: 'Hind', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.news-article.featured .news-title {
    font-size: 32px;
}

.news-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #b8b8b8;
}

/* Excerpt Styling */
.news-excerpt {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.news-article.featured .news-excerpt {
    font-size: 17px;
}

/* Meta Information */
.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.news-author,
.news-category {
    font-family: 'Hind', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-author::before {
    content: "✍ ";
    margin-right: 5px;
}

.news-category {
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 3px;
    color: #000;
}

.news-read-more {
    margin-left: auto;
    font-family: 'Hind', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #000;
}

.news-read-more:hover {
    background: #000;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-section {
        padding: 120px 40px 60px;
    }

    .news-section-title {
        margin-bottom: 60px;
    }

    .news-article {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 100px 20px 40px;
    }

    .news-section-title {
        font-size: 32px;
        letter-spacing: 5px;
        margin-bottom: 40px;
    }

    .news-article {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .news-article.featured {
        border-left-width: 4px;
    }

    .news-badge {
        padding: 5px 12px;
        font-size: 9px;
    }

    .news-date {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .news-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .news-article.featured .news-title {
        font-size: 24px;
    }

    .news-excerpt {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .news-article.featured .news-excerpt {
        font-size: 16px;
    }

    .news-meta {
        padding-top: 20px;
        gap: 15px;
    }

    .news-author,
    .news-category {
        font-size: 11px;
    }

    .news-read-more {
        font-size: 12px;
        padding: 8px 16px;
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .news-section-title {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .news-article {
        padding: 25px 20px;
    }

    .news-title {
        font-size: 20px;
    }

    .news-article.featured .news-title {
        font-size: 22px;
    }

    .news-excerpt {
        font-size: 14px;
    }

    .news-badge-container {
        gap: 8px;
    }
}

/* ARTICLE PAGE STYLES - Medium-inspired */

.article-container {
    max-width: 740px;
    margin: 150px auto 80px;
    padding: 0 40px;
}

/* Article Header */
.article-header {
    margin-bottom: 60px;
}

.article-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.article-badge {
    display: inline-block;
    padding: 6px 14px;
    font-family: 'Hind', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
}

.article-badge.hot {
    background: #ff4444;
    color: #fff;
}

.article-badge.new {
    background: #000;
    color: #fff;
}

.article-title {
    font-family: 'Hind', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #666;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.article-date {
    font-weight: 600;
}

.article-author::before {
    content: "✍ ";
    margin-right: 5px;
}

.article-category {
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 3px;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-reading-time::before {
    content: "⏱ ";
    margin-right: 5px;
}

/* Article Content */
.article-content {
    font-family: 'Lora', Georgia, serif;
    font-size: 21px;
    line-height: 1.8;
    color: #292929;
    margin-bottom: 60px;
}

.article-lead {
    font-size: 24px;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 4px solid #000;
}

.article-content h2 {
    font-family: 'Hind', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin: 50px 0 25px 0;
    letter-spacing: -0.5px;
}

.article-content h3 {
    font-family: 'Hind', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    margin: 40px 0 20px 0;
}

.article-content p {
    margin-bottom: 32px;
}

.article-content strong {
    font-weight: 600;
    color: #000;
}

.article-content a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.article-content a:hover {
    text-decoration-color: rgba(0, 0, 0, 0.8);
}

/* Quote Styling */
.article-quote {
    font-family: 'Lora', Georgia, serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: #000;
    margin: 50px 0;
    padding: 30px 40px;
    border-left: 5px solid #b8b8b8;
    background: #fafafa;
    position: relative;
}

.article-quote::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 10px;
    color: #e0e0e0;
    font-family: Georgia, serif;
}

/* Highlight Box */
.article-highlight {
    background: #fffbea;
    border-left: 5px solid #ffc107;
    padding: 30px 35px;
    margin: 50px 0;
    border-radius: 0 3px 3px 0;
}

.article-highlight h3 {
    font-family: 'Hind', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}

.article-highlight p {
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}

/* Result Box */
.article-result {
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
    padding: 30px 35px;
    margin: 50px 0;
    border-radius: 0 3px 3px 0;
}

.article-result h3 {
    font-family: 'Hind', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}

.article-result p {
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}

/* Contact Box */
.article-contact {
    background: #f5f5f5;
    padding: 35px;
    margin: 50px 0;
    border-radius: 3px;
    text-align: center;
}

.article-contact p {
    font-size: 18px;
    margin-bottom: 15px;
}

.article-contact p:last-child {
    margin-bottom: 0;
}

/* Share Section */
.article-share {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 40px 0;
    margin-bottom: 40px;
}

.article-share h3 {
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-btn.linkedin {
    border-color: #0077b5;
    color: #0077b5;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    color: #fff;
}

.share-btn.twitter {
    border-color: #000;
    color: #000;
}

.share-btn.twitter:hover {
    background: #000;
    color: #fff;
}

.share-btn.facebook {
    border-color: #1877f2;
    color: #1877f2;
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.share-btn.whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.share-btn.copy-link {
    border-color: #666;
    color: #666;
}

.share-btn.copy-link:hover {
    background: #666;
    color: #fff;
}

.copy-success {
    text-align: center;
    margin-top: 15px;
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4caf50;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-success.show {
    opacity: 1;
}

/* Back to Blog */
.back-to-blog {
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #b8b8b8;
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-container {
        margin: 130px auto 60px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .article-container {
        margin: 110px auto 50px;
        padding: 0 20px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-meta {
        font-size: 13px;
        gap: 15px;
    }

    .article-content {
        font-size: 19px;
    }

    .article-lead {
        font-size: 21px;
        padding-left: 20px;
        border-left-width: 3px;
    }

    .article-content h2 {
        font-size: 28px;
        margin: 40px 0 20px 0;
    }

    .article-content h3 {
        font-size: 22px;
    }

    .article-quote {
        font-size: 21px;
        padding: 25px 30px;
        margin: 40px 0;
    }

    .article-quote::before {
        font-size: 60px;
    }

    .article-highlight,
    .article-result {
        padding: 25px 25px;
        margin: 40px 0;
    }

    .article-highlight p,
    .article-result p {
        font-size: 17px;
    }

    .article-contact {
        padding: 30px 25px;
    }

    .article-contact p {
        font-size: 16px;
    }

    .share-buttons {
        gap: 10px;
    }

    .share-btn {
        padding: 10px 18px;
        font-size: 13px;
        gap: 6px;
    }

    .share-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .article-container {
        padding: 0 15px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-badges {
        gap: 8px;
    }

    .article-badge {
        padding: 5px 12px;
        font-size: 9px;
    }

    .article-meta {
        font-size: 12px;
        gap: 12px;
    }

    .article-content {
        font-size: 18px;
    }

    .article-lead {
        font-size: 20px;
        padding-left: 15px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .article-quote {
        font-size: 19px;
        padding: 20px 20px;
    }

    .article-highlight,
    .article-result {
        padding: 20px 20px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* BLOG POST HERO SECTION */
.blog-post-hero {
    height: 600px;
    margin-top: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/uploads/business-4312920_1920.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.blog-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.blog-post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-post-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.post-badge {
    padding: 6px 14px;
    font-family: 'Hind', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
}

.post-badge.hot {
    background: #ff4444;
    color: #fff;
}

.post-badge.new {
    background: #000;
    color: #fff;
}

.blog-post-title {
    font-family: 'Hind', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #fff;
}

.post-date,
.post-author,
.post-category {
    color: #fff;
    font-weight: 600;
}

.post-category {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* BLOG POST CONTENT */
.blog-post-content {
    background: #fff;
    padding: 80px 20px;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
}

.post-lead {
    font-size: 22px;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
    margin-bottom: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-left: 4px solid #000;
}

.post-body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.post-body h2 {
    font-family: 'Hind', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 50px 0 25px 0;
}

.post-body p {
    margin-bottom: 25px;
}

.post-contact {
    background: #f5f5f5;
    padding: 30px;
    margin: 40px 0;
    border-radius: 3px;
    text-align: center;
}

.post-contact a {
    color: #000;
    text-decoration: underline;
}

.post-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 60px 0;
}

/* SHARE SECTION */
.post-share-section {
    margin: 60px 0;
}

.post-share-section h3 {
    font-family: 'Hind', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-button.linkedin {
    border-color: #0077b5;
    color: #0077b5;
}

.share-button.linkedin:hover {
    background: #0077b5;
    color: #fff;
}

.share-button.twitter {
    border-color: #000;
    color: #000;
}

.share-button.twitter:hover {
    background: #000;
    color: #fff;
}

.share-button.facebook {
    border-color: #1877f2;
    color: #1877f2;
}

.share-button.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.share-button.whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.share-button.whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.share-button.email {
    border-color: #666;
    color: #666;
}

.share-button.email:hover {
    background: #666;
    color: #fff;
}

.share-button.copy-link {
    border-color: #999;
    color: #999;
}

.share-button.copy-link:hover {
    background: #999;
    color: #fff;
}

.copy-notification {
    text-align: center;
    margin-top: 15px;
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4caf50;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-notification.show {
    opacity: 1;
}

/* CTA SECTION */
.post-footer-cta {
    text-align: center;
    padding: 60px 30px;
    background: #f9f9f9;
    border-radius: 5px;
    margin-top: 60px;
}

.post-footer-cta h3 {
    font-family: 'Hind', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.post-footer-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}