/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Scroll Navigation Bar */
.scroll-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-nav.visible {
    transform: translateY(0);
}

.scroll-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 20px;
}

.scroll-nav-logo-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.scroll-nav-logo-link:hover {
    opacity: 0.8;
}

.scroll-nav-logo {
    height: 60px;
    width: auto;
}

.scroll-nav-button {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    background-color: #5B9CD5;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.scroll-nav-button:hover {
    background-color: #4A8BC4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section with Carousel */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Carousel Container */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.carousel-slide {
    flex-shrink: 0;
    width: 60vw;
    height: 500px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-60vw * 3));
    }
}

/* Pause animation on hover */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    width: 100%;
}

.hero-logo {
    max-width: 100px;
    width: 100%;
    height: auto;
    margin-bottom: 0.25rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #5B9CD5;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-button:hover {
    background-color: #4A8BC4;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.hero-button:active {
    transform: translateY(0);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    min-height: 60vh;
}

/* Filter Section */
.filter-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Post Card */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.blog-card-image-container {
    position: relative;
    width: 100%;
    height: 200px;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.promotion-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #E73F97;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 10;
}

.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.75rem;
}

.blog-card-date {
    font-style: italic;
    font-weight: 500;
}

.blog-card-button {
    width: 100%;
    padding: 1rem;
    background-color: #5B9CD5;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.blog-card-button:hover {
    background-color: #4A8BC4;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background-color: white;
    color: #555;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.pagination button.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #000;
}

.modal-post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.modal-post-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.modal-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
    color: #666;
}

.modal-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    color: #666;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
    border-top: 1px solid #e91e63;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-info p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-address {
    color: #666;
}

.footer-phone,
.footer-email {
    color: #666;
}

.footer-phone a,
.footer-email a {
    color: #e91e63;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
    opacity: 0.8;
}

.footer-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 1.5rem 0;
}

.footer-copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.2rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #999;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Individual Post Page Styles */
.post-hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.post-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.back-button-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: rgba(91, 156, 213, 0.95);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.back-button-overlay:hover {
    background-color: rgba(74, 139, 196, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.post-navigation {
    margin-bottom: 2rem;
}

.post-end-promotion {
    background: #5B99CF;
    color: white;
    text-align: center;
    padding: 2.5rem 2rem;
    margin: 3rem 0 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.post-end-promotion-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.post-end-promotion-discount {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    color: white;
    letter-spacing: 2px;
}

.post-end-promotion-code {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

.post-end-promotion-code strong {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.post-end-promotion-validity {
    margin: 0.75rem 0;
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
}

.post-end-promotion-validity p {
    margin: 0.5rem 0;
}

.post-end-promotion-validity ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.post-end-promotion-validity li {
    margin: 0.25rem 0;
}

.post-end-promotion-text {
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.post-end-promotion-text strong {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.post-end-promotion-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: #5B99CF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.post-end-promotion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
}

.post-end-promotion-terms {
    margin: 0.5rem 0 0 0;
    font-size: 0.7rem;
    line-height: 1.4;
    opacity: 0.9;
    font-style: italic;
}

.post-bottom-navigation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
    text-align: center;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.back-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #5B9CD5;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #4A8BC4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.post-article {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.post-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    color: #666;
    font-size: 0.95rem;
}

.post-date {
    font-style: italic;
    font-weight: 500;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.post-content blockquote {
    border-left: 4px solid #5B9CD5;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

/* Sidebar Styles */
.post-sidebar {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.promotion-box {
    background: #5B99CF;
    color: white;
    text-align: center;
    padding: 2rem 1.5rem;
}

.promotion-box-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.promotion-box-discount {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.promotion-box-code {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

.promotion-box-code strong {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.promotion-box-validity {
    margin: 0.75rem 0;
    font-size: 0.85rem;
    font-weight: 400;
    text-align: left;
}

.promotion-box-validity p {
    margin: 0.5rem 0;
}

.promotion-box-validity ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.promotion-box-validity li {
    margin: 0.25rem 0;
}

.promotion-box-blackout {
    margin: 0.75rem 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

.promotion-box-button {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: white;
    color: #5B99CF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.promotion-box-terms {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.4;
    opacity: 0.9;
    font-style: italic;
}

.promotion-box-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.related-article-card {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.related-article-card:hover {
    background-color: #f8f9fa;
    transform: translateX(4px);
}

.related-article-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
}

.related-article-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.related-article-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-article-date {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

/* Mobile Promotion Banner (shown only on mobile) */
.mobile-promotion-container {
    display: none; /* Hidden by default on desktop */
}

.mobile-promotion-banner {
    background: #5B99CF;
    color: white;
    text-align: center;
    padding: 1.5rem 1.25rem;
    margin: 1.5rem 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.mobile-promotion-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    opacity: 0.95;
}

.mobile-promotion-discount {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.mobile-promotion-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: white;
    color: #5B99CF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.mobile-promotion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scroll-nav-logo {
        height: 32px;
    }

    .scroll-nav-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .scroll-nav-container {
        padding: 0.75rem 20px;
    }

    .hero {
        height: 400px;
    }

    .carousel-slide {
        width: 80vw;
        height: 400px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-80vw * 3));
        }
    }

    .hero-logo {
        max-width: 80px;
        margin-bottom: 0.25rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% 10px;
        padding: 1.5rem;
    }

    .modal-post-title {
        font-size: 1.5rem;
    }

    .search-input {
        width: 100%;
    }

    .footer-logo {
        max-width: 220px;
    }

    .footer-info p {
        font-size: 0.9rem;
    }

    .post-hero-image {
        height: 300px;
    }

    .post-article {
        padding: 1.5rem;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
    }

    .post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .post-sidebar {
        position: static;
    }

    .sidebar-section {
        padding: 1rem;
    }

    /* Show mobile promotion banner on mobile */
    .mobile-promotion-container {
        display: block;
    }

    /* Hide sidebar promotion box on mobile (it's replaced by mobile banner) */
    .promotion-box {
        display: none;
    }
}

/* Promotion Section Styles */
.promo-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    color: white;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.promo-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.promo-code {
    font-size: 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 8px;
    margin: 1.5rem auto;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.promo-code strong {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.promo-validity {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.promo-terms {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.promo-terms p {
    margin-bottom: 0.75rem;
}

.promo-terms p:last-child {
    margin-bottom: 0;
}

.promo-fine-print {
    font-size: 0.85rem;
    opacity: 0.9;
    font-style: italic;
}

.promo-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: #764ba2;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
}

/* Internal Links Section Styles */
.internal-links-section {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.internal-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.internal-links-list li {
    margin: 0;
}

.internal-links-list a {
    display: block;
    padding: 1rem 1.5rem;
    background-color: white;
    color: #5B9CD5;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.internal-links-list a:hover {
    background-color: #5B9CD5;
    color: white;
    border-color: #5B9CD5;
    transform: translateX(8px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Sidebar Links Styles */
.sidebar-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-link {
    color: #5B9CD5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.sidebar-link:hover {
    color: #4A8BC4;
    text-decoration: underline;
}
