:root {
    --primary-color: #1e40af;
    --secondary-color: #f97316;
    --accent-color: #3b82f6;
    --accent-hover: #2563eb;
    --orange-light: #fb923c;
    --blue-dark: #1e3a8a;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: white !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-weight: 800;
    font-size: 22px;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    background-color: var(--bg-light);
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
}

.hero-excerpt {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
.latest-posts-section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 800;
}

.section-header p {
    font-size: 15px;
    color: var(--text-light);
}

/* Post Cards - 3 Columns */
.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.post-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
}

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

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

.post-no-image {
    height: 200px;
    background: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-no-image i {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.4);
}

.post-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.post-card-title a {
    color: var(--primary-color);
}

.post-card-title a:hover {
    color: var(--accent-color);
}

.post-card-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 13px;
    transition: gap 0.2s ease;
}

.read-more:hover {
    gap: 10px;
    color: var(--orange-light);
}

/* Search Box */
.search-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.search-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.search-input-group {
    position: relative;
}

.search-input-group input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-input-group button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-input-group button:hover {
    background: var(--accent-hover);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-color);
    color: var(--primary-color);
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-gray);
}

.recent-posts-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-posts-list h5 {
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
}

.recent-posts-list a {
    color: var(--text-dark);
    text-decoration: none;
}

.recent-posts-list a:hover h5 {
    color: var(--accent-color);
}

.recent-posts-list .post-date {
    font-size: 11px;
    color: var(--text-muted);
}

.recent-posts-list .post-date i {
    font-size: 10px;
}

/* Page Header */
.page-header {
    padding: 50px 0 30px;
    background: linear-gradient(135deg, #1e40af 0%, #f97316 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: white;
    font-weight: 800;
}

.page-header p {
    font-size: 15px;
    opacity: 0.9;
}

/* Blog Section */
.blog-section {
    padding: 40px 0;
}

/* Single Post */
.single-post {
    padding: 40px 0;
}

.post-header {
    text-align: center;
    margin-bottom: 30px;
}

.post-title {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

.post-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content blockquote {
    border-left: 4px solid var(--accent-color);
    background: var(--bg-light);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 6px;
    font-style: italic;
    color: var(--text-light);
}

.post-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.section-title {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
}

.related-post-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.related-post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-post-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Content Section */
.content-section {
    padding: 40px 0;
}

.content-wrapper {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.content-wrapper h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 800;
}

.content-wrapper h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* Forms */
.contact-form-wrapper {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-label {
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--text-dark);
    font-size: 14px;
}

/* Buttons */
.btn {
    padding: 11px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.btn-lg {
    padding: 13px 32px;
    font-size: 15px;
}

/* Pagination */
.pagination {
    margin-top: 35px;
}

.page-link {
    color: var(--accent-color);
    border: 2px solid var(--border-color);
    padding: 8px 14px;
    margin: 0 3px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.page-link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.page-item.active .page-link {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-title {
    font-size: 17px;
    margin-bottom: 18px;
    color: white;
    font-weight: 700;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
    
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .latest-posts-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .post-title {
        font-size: 24px;
    }
    
    .post-card-image, .post-no-image {
        height: 180px;
    }
}
    --secondary-color: #F7931E;
    --accent-color: #4299E1;
    --text-dark: #1A202C;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    padding: 1.2rem 0;
    background: white !important;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background-color: var(--bg-light);
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary-color);
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-excerpt {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Latest Posts Section */
.latest-posts-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Post Cards */
.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.post-card-image {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.post-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-card:hover .post-card-image::before {
    opacity: 1;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* No Image Placeholder */
.post-no-image {
    height: 260px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.post-no-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.post-no-image i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.post-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.post-card-title a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: var(--accent-color);
}

.post-card-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 15px;
}

.read-more:hover {
    gap: 12px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts-list li:last-child {
    border-bottom: none;
}

.recent-posts-list h5 {
    font-size: 16px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.recent-posts-list a:hover h5 {
    color: var(--accent-color);
}

.recent-posts-list .post-date {
    font-size: 13px;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: white;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
}

/* Single Post */
.single-post {
    padding: 60px 0;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-content {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
    color: #2d3748;
}

.post-content h2 {
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
}

.post-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 26px;
    color: var(--primary-color);
}

.post-content p {
    margin-bottom: 25px;
    line-height: 1.9;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.post-content ul, .post-content ol {
    margin-bottom: 25px;
    padding-left: 35px;
}

.post-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.post-content blockquote {
    border-left: 5px solid var(--accent-color);
    background: #f7fafc;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
    color: #4a5568;
}

.post-content code {
    background: #f7fafc;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 90%;
    color: #e53e3e;
}

.post-content pre {
    background: #2d3748;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 30px 0;
}

.post-content pre code {
    background: none;
    color: #fff;
    padding: 0;
}

.post-content a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 500;
}

.post-content a:hover {
    color: var(--secondary-color);
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.post-content table th,
.post-content table td {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
}

.post-content table th {
    background: var(--bg-light);
    font-weight: 600;
}

.post-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

/* Related Posts */
.related-posts {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 3px solid var(--border-color);
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.related-post-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-post-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.related-post-card a {
    color: var(--primary-color);
}

.related-post-card a:hover {
    color: var(--accent-color);
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.content-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.content-wrapper p {
    margin-bottom: 20px;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #3182CE;
    border-color: #3182CE;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
}

.btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

/* Pagination */
.pagination {
    margin-top: 40px;
}

.page-link {
    color: var(--accent-color);
    border: 2px solid var(--border-color);
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 8px;
    font-weight: 600;
}

.page-link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.page-item.active .page-link {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .post-title {
        font-size: 36px;
    }
    
    .sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-excerpt {
        font-size: 16px;
    }
    
    .latest-posts-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .post-content {
        font-size: 16px;
    }
}
