* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: #292F36;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    padding: 20px 0;
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background-color: #CDA274;
    border-radius: 0 0 0 50%;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    margin-left: 10px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #CDA274;
}

.hero {
    position: relative;
    height: 300px;
    background-image: url('/img/Blog\ Main\ Image.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    color: #292F36;
    margin-top: 200px;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.section-title {
    font-size: 32px;
    margin: 50px 0 30px;
    text-align: center;
}

.latest-post {
    margin: 40px 0;
}

.latest-post-card {
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post-image {
    flex: 0 0 45%;
    overflow: hidden;
}

.post-content {
    flex: 1;
    padding: 30px;
}

.post-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #292F36;
}

.post-excerpt {
    color: #4D5053;
    margin-bottom: 20px;
}

.post-date {
    display: flex;
    align-items: center;
    color: #4D5053;
    font-size: 14px;
}

.post-arrow {
    width: 40px;
    height: 40px;
    background-color: #F4F0EC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background-color: #F4F0EC;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-date {
    font-size: 14px;
    color: #4D5053;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F4F0EC;
    font-weight: 500;
    transition: background-color 0.3s;
}

.page-link.active, .page-link:hover {
    background-color: #CDA274;
    color: #fff;
}

footer {
    background-color: #fff;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-text {
    color: #4D5053;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4F0EC;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #CDA274;
    color: #fff;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #CDA274;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
    color: #4D5053;
    font-size: 14px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .latest-post-card {
        flex-direction: column;
    }
    
    .post-image {
        flex: 0 0 200px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
}