/* Blog & About Page Styles */

/* Common Page Header Styles */
.page-header {
    background: linear-gradient(90deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    opacity: 0.9;
}

/* About Page Styles */
.about-section {
    padding: 70px 0;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4158D0;
    position: relative;
}

.about-content h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4158D0 0%, #C850C0 100%);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

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

.about-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #4158D0 0%, #C850C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 16px;
    color: #555;
}

.about-history, .about-team {
    margin-bottom: 60px;
}

.about-history h2, .about-team h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4158D0;
    position: relative;
    display: inline-block;
}

.about-history h2::after, .about-team h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4158D0 0%, #C850C0 100%);
}

.team-values {
    margin-top: 40px;
}

.team-values h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 36px;
    margin-bottom: 15px;
    color: #4158D0;
}

.value-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(90deg, #4158D0 0%, #C850C0 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 70px;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #4158D0;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Styles */
.blog-section {
    padding: 70px 0;
}

.blog-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.blog-main {
    flex: 2;
    min-width: 300px;
}

.blog-sidebar {
    flex: 1;
    min-width: 300px;
}

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

.category-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    position: relative;
    height: 200px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 36px;
}

.placeholder-text {
    text-transform: uppercase;
}

.blog-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.blog-category a {
    display: inline-block;
    background-color: #4158D0;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h2 a:hover {
    color: #4158D0;
}

.blog-meta {
    margin-bottom: 15px;
    font-size: 14px;
    color: #777;
}

.blog-date, .blog-author {
    margin-right: 15px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-excerpt {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #4158D0;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #C850C0;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-item {
    margin: 0 5px;
    padding: 8px 15px;
    background-color: white;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.pagination-item.active {
    background-color: #4158D0;
    color: white;
    border-color: #4158D0;
}

.pagination-item:hover:not(.active) {
    background-color: #f9f9f9;
    border-color: #ddd;
}

.pagination-item.prev, .pagination-item.next {
    font-weight: bold;
}

/* Blog Sidebar Widgets */
.sidebar-widget {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #333;
}

.sidebar-widget h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4158D0 0%, #C850C0 100%);
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 16px;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #777;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-form button:hover {
    color: #4158D0;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
    padding: 0;
}

.categories-widget li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.categories-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.categories-widget a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.categories-widget a:hover {
    color: #4158D0;
}

.categories-widget a span {
    color: #999;
    font-size: 14px;
}

/* Popular Posts Widget */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
    flex-shrink: 0;
}

.image-placeholder.mini {
    width: 80px;
    height: 80px;
    font-size: 18px;
}

.popular-content {
    flex: 1;
}

.popular-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-content h4 a:hover {
    color: #4158D0;
}

.post-date {
    font-size: 13px;
    color: #999;
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    background-color: #f5f5f5;
    color: #555;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: #4158D0;
    color: white;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #4158D0 0%, #C850C0 100%);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
}

.cta-widget h3::after {
    background: white;
    left: 50%;
    transform: translateX(-50%);
}

.cta-widget p {
    margin-bottom: 20px;
}

.sidebar-cta-button {
    display: inline-block;
    background-color: white;
    color: #4158D0;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Newsletter Section */
.newsletter-section {
    padding: 0 0 70px;
}

.newsletter-box {
    background: linear-gradient(135deg, #4158D0 0%, #C850C0 100%);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    color: white;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form input {
    flex: 3;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    flex: 1;
    min-width: 100px;
    background-color: white;
    color: #4158D0;
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Category Listing Page */
.categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: #333;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: #4158D0;
}

.category-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.post-count {
    color: #777;
    font-size: 14px;
}

/* Category Navigation */
.category-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.back-to-blog {
    color: #4158D0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: #C850C0;
}

.back-to-blog i {
    margin-right: 5px;
}

.category-filter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-filter span {
    color: #777;
}

.category-filter select {
    padding: 8px 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 0;
}

.no-results i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.no-results p {
    color: #777;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.back-btn {
    display: inline-block;
    background-color: #4158D0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background-color: #334aa3;
}

/* Related Categories Section */
.related-categories {
    padding: 40px 0;
    background-color: #f9f9f9;
    margin-bottom: 70px;
}

.related-categories h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category-tag {
    display: inline-block;
    background-color: white;
    color: #4158D0;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.category-tag:hover {
    background-color: #4158D0;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Post Styles */
.blog-post-header {
    text-align: center;
}

.blog-post-header .post-category {
    margin-bottom: 20px;
}

.blog-post-header .post-category a {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}

.blog-post-header h1 {
    font-size: 42px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.blog-post-header .post-meta {
    font-size: 16px;
    margin-top: 20px;
}

.blog-post-header .post-meta span {
    margin: 0 10px;
}

.blog-post-section {
    padding: 70px 0;
}

.blog-post-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.blog-post-main {
    flex: 2;
    min-width: 300px;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

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

.post-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #333;
}

.post-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #333;
}

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

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

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

.post-content a {
    color: #4158D0;
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

.post-tags {
    margin: 40px 0;
}

.post-tag {
    display: inline-block;
    background-color: #f5f5f5;
    color: #555;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background-color: #4158D0;
    color: white;
}

.post-author-box {
    margin: 50px 0;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    border: 1px solid #f0f0f0;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.author-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #555;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #4158D0;
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.back-to-blog {
    color: #4158D0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: #C850C0;
}

.back-to-blog i {
    margin-right: 5px;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-share span {
    color: #777;
}

.share-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s ease;
}

.share-icon.facebook {
    background-color: #3b5998;
}

.share-icon.twitter {
    background-color: #1da1f2;
}

.share-icon.linkedin {
    background-color: #0077b5;
}

.share-icon.whatsapp {
    background-color: #25d366;
}

.share-icon:hover {
    transform: translateY(-3px);
}

.related-posts {
    margin: 60px 0;
}

.related-posts h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.related-posts h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4158D0 0%, #C850C0 100%);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-post {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-image .image-placeholder {
    height: 100%;
}

.related-post-content {
    padding: 15px;
}

.related-post-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-post-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h3 a:hover {
    color: #4158D0;
}

.related-post-meta {
    font-size: 12px;
    color: #777;
}

.post-comments {
    margin-top: 60px;
}

.post-comments h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.post-comments h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4158D0 0%, #C850C0 100%);
}

.comments-list {
    margin-bottom: 40px;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h4 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.comment-date {
    font-size: 14px;
    color: #999;
}

.comment-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.comment-actions a {
    color: #4158D0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.comment-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
}

.form-group textarea {
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

.submit-comment {
    background: linear-gradient(90deg, #4158D0 0%, #C850C0 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-comment:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-layout {
        flex-direction: column;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-content {
        order: 2;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
    }
    
    .about-content h2::after,
    .about-history h2::after,
    .about-team h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content h2,
    .about-history h2,
    .about-team h2 {
        text-align: center;
        display: block;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .blog-post-header h1 {
        font-size: 32px;
    }
    
    .post-content {
        font-size: 16px;
    }
    
    .post-content h2 {
        font-size: 24px;
    }
    
    .post-content h3 {
        font-size: 20px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .post-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .category-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-filter {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-filter select {
        width: 100%;
    }
}