.archive-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #00A651 0%, #0075C9 100%);
    overflow: hidden;
}

.archive-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.archive-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.archive-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.archive-hero h1 {
    font-size: clamp(38px, 6vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.archive-description {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.blog-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #e9ecef;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #00A651, #0075C9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    z-index: 2;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #718096;
    margin-bottom: 16px;
}

.blog-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-title a {
    color: #1a2332;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #00A651;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 24px;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #00A651, #0075C9);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0,166,81,0.3);
}

.archive-content {
    padding: 30px 0;
    background: #F8FAFB;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.post-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.1);
}

.post-card-content {
    padding: 28px;
}

.post-card-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #718096;
}

.post-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-card-meta svg {
    width: 14px;
    height: 14px;
}

.post-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
}

.post-card-title a {
    color: #1a2332;
    transition: color .3s ease;
}

.post-card-title a:hover {
    color: #00A651;
}

.post-card-excerpt {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.post-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00A651;
    font-weight: 500;
    font-size: 15px;
    transition: all .3s ease;
}

.post-card-link:hover {
    gap: 12px;
    color: #0075C9;
}

.post-card-link svg {
    width: 16px;
    height: 16px;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pagination {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fff;
    color: #4a5568;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pagination a:hover {
    background: #00A651;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,166,81,0.2);
}

.pagination .current {
    background: linear-gradient(135deg, #00A651, #0075C9);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,166,81,0.3);
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-posts h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 16px;
}

.no-posts p {
    font-size: 18px;
    color: #4a5568;
}

.services-hero {
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.services-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 166 81 / 67%), rgb(0 117 201 / 58%));
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.services-hero p {
    font-size: 19px;
    opacity: 0.95;
    color: #fff;
}

.services-archive-content {
    padding: 30px 0;
    background: #F8FAFB;
}

.services-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-archive-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-archive-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-archive-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-body {
    padding: 35px;
}

.service-card-body h2 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card-body h2 a {
    color: #1a2332;
    transition: color 0.3s ease;
}

.service-card-body h2 a:hover {
    color: #00A651;
}

.service-card-excerpt {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 15px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    background: linear-gradient(135deg, #00a651de 0%, #0075c9de 100%);
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,166,81,0.3);
    color: #fff;
}

.archive-no-services-container {
    text-align: center;
    padding: 80px 0;
}

.archive-no-services-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #4A5568;
}

.archive-no-services-text {
    font-size: 18px;
    color: #718096;
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .archive-hero {
        height: 350px;
    }

    .blog-section {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-image-wrapper {
        height: 220px;
    }

    .archive-content {
        padding: 35px 0;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-hero {
        padding: 60px 0;
    }

    .services-archive-content {
        padding: 30px 0;
    }

    .services-archive-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}