/* Base Styles */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: padding 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #4a90e2;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(13, 20, 30, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    border: 1px solid rgba(0, 102, 204, 0.3);
    color: white;
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    margin-right: 20px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-logo h3 {
    margin-bottom: 5px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-links ul li a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Banner Slider Styles */
.service-banners {
    padding: 30px 0;
    background: var(--light-color);
}

.banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    max-height: 400px;
}

.banner-slide {
    display: none;
    animation: fade 1.5s ease;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

.banner-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.banner-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.banner-nav-dot.active {
    background: white;
}

/* Featured Services with Videos */
.featured-services {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.featured-service {
    background: rgba(13, 20, 30, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    border: 1px solid rgba(0, 102, 204, 0.3);
    transition: transform 0.3s ease;
    color: white;
}

.featured-service:hover {
    transform: translateY(-10px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
}

.featured-service-content {
    padding: 20px;
    color: white;
}

.featured-service-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--dark-color);
}

.featured-service-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/careers-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.careers-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.job-listings {
    padding: 80px 0;
    background: var(--light-color);
}

.job-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .job-card {
        flex-direction: row;
    }
}

.job-image {
    flex: 1;
    max-width: 300px;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-details {
    flex: 2;
    padding: 25px;
}

.job-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.job-type, .job-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray-color);
}

.job-description {
    margin-bottom: 20px;
}

.job-actions {
    display: flex;
    gap: 15px;
}

.job-expanded-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: none;
}

.job-expanded-details.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.job-expanded-details h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.job-expanded-details ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.job-expanded-details li {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns .btn {
        margin: 10px 0;
    }
}/* Blog Styles */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/services.png') center/cover;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

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

.blog-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Categories */
.blog-categories {
    padding: 30px 0;
    background-color: var(--light-color);
}

.categories-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-btn {
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #fff;
    color: var(--dark-color);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.category-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 60px 0;
}

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

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 20px;
}

.blog-meta {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.blog-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.blog-card p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-color);
}

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

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

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

.pagination-controls {
    display: flex;
    gap: 10px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: var(--dark-color);
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pagination-btn:hover, .pagination-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

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

.newsletter-content p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    background-color: var(--dark-color);
}

/* Blog Post Page Styles */

/* Blog Post Header */
.blog-post-header {
    padding: 60px 0 30px;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-title {
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.post-featured-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

/* Blog Post Content */
.blog-post-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.post-article {
    line-height: 1.8;
}

.post-intro {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.post-article h2 {
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.post-article p {
    margin-bottom: 20px;
    color: #444;
}

.post-article blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 5px solid var(--primary-color);
    background-color: #f9f9f9;
    font-style: italic;
}

.post-article blockquote p {
    margin-bottom: 10px;
}

.post-article blockquote cite {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: normal;
}

.post-list {
    margin: 20px 0 20px 20px;
}

.post-list li, .post-list-numbered li {
    margin-bottom: 10px;
}

.post-image {
    margin: 30px 0;
}

.post-image img {
    width: 100%;
    border-radius: 10px;
}

.image-caption {
    text-align: center;
    color: var(--gray-color);
    font-style: italic;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Author Bio */
.author-bio {
    margin-top: 60px;
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 10px;
}

.author-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.author-social a {
    color: var(--dark-color);
    margin-right: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.author-social a:hover {
    color: var(--primary-color);
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.related-post-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-card h4 {
    padding: 15px;
}

.related-post-card a {
    color: var(--dark-color);
    transition: all 0.3s ease;
}

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

/* Comments Section */
.comments-section {
    margin-top: 60px;
}

.comments-section h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.comment {
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.comment-reply {
    margin-left: 40px;
    border-left: 3px solid var(--primary-color);
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.comment-meta h4 {
    margin-bottom: 5px;
}

.comment-meta span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.comment-actions {
    margin-top: 15px;
    text-align: right;
}

.reply-btn {
    color: var(--primary-color);
    font-weight: 500;
}

.comment-form {
    margin-top: 40px;
}

.comment-form h3 {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

/* Sidebar */
.post-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    margin-bottom: 40px;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-form button {
    padding: 0 15px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.categories-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.categories-widget ul li:last-child {
    border-bottom: none;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.categories-widget a:hover {
    color: var(--primary-color);
}

.popular-post-item {
    display: flex;
    margin-bottom: 15px;
}

.popular-post-item:last-child {
    margin-bottom: 0;
}

.popular-post-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.popular-post-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.popular-post-info h4 a {
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.popular-post-info h4 a:hover {
    color: var(--primary-color);
}

.popular-post-info span {
    color: var(--gray-color);
    font-size: 0.8rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: #fff;
    border-radius: 30px;
    color: var(--dark-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.tag:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.sidebar-newsletter-form {
    margin-top: 15px;
}

.sidebar-newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
}

.sidebar-newsletter-form .btn {
    width: 100%;
}

/* Responsive Styles for Blog */
@media screen and (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-wrapper {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        margin-top: 60px;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .post-title {
        font-size: 2rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: 30px;
        margin-bottom: 15px;
    }
    
    .newsletter-form .btn {
        border-radius: 30px;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 20px;
    }
    
    .categories-wrapper {
        flex-direction: column;
    }
    
    .comment-reply {
        margin-left: 20px;
    }
}