.back-button {
    position: fixed;
    top: 100px;
    left: 2rem;
    background: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 100;
}

.back-button:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.back-button::before {
    content: '←';
    font-size: 1.2rem;
}

.article-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 2rem;
}

.article-header {
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

.article-details {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

.article-category {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-excerpt {
    font-size: 1.3rem;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--text);
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text);
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .back-button {
        top: auto;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .back-button:hover {
        transform: translateX(calc(-50% - 5px));
    }

    .article-container {
        padding: 1rem;
        margin-top: 100px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-excerpt {
        font-size: 1.1rem;
    }

    .article-image {
        height: 250px;
    }

    .footer-content {
        text-align: center;
    }
    .footer-brand{
        display: inline-flex;
        justify-content: center;
        text-align: center;
    }

    .footer-brand.img{
        padding-left: 20%;
    }
    .footer-links {
        align-items: center;
    }

    .burger-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px; /* Adjust based on your navbar height */
        left: 0;
        right: 0;
        background: rgba(253, 250, 247, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        height: calc(100vh - 70px);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Animate burger menu when active */
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .business-card img {
        max-width: 300px;
    }
}