/* Global Styles */
:root {
    --primary: #a92210;
    --secondary: #FFD700;
    --accent: #FFFFFF;
    --text: #333333;
    --light-gray: #F5F5F5;
    --dark-gray: #777777;
}

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

html {
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text);
}

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

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.btn:hover {
    background: var(--secondary);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Header Styles */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.contact-info span {
    margin-right: 20px;
    display: inline-block;
}

.contact-info i, .social-icons a {
    margin-right: 5px;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    transition: color 0.3s ease;
}

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

header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

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

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

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a.btn.active {
    background: var(--primary);
    color: white;
}

nav ul li a.btn.active:after {
    display: none;
}

nav ul li a.active,
nav ul li a:hover {
    color: var(--primary);
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero, .page-hero {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero h1, .page-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p, .page-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us */
.why-us {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.why-us h2 {
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
}

/* Practice Areas */
.practice-areas {
    padding: 80px 0;
    text-align: center;
}

.practice-areas h2 {
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.area {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.area:hover i, .area:hover a {
    color: var(--secondary);
}

.area i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.area h3 {
    margin-bottom: 15px;
}

.area a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
}

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

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 auto;
    transition: opacity 0.5s ease;
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.testimonial.active {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.client img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info {
    text-align: left;
}

.client h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

@media (max-width: 768px) {
    .testimonial {
        padding: 30px 20px;
    }
    
    .client {
        flex-direction: column;
        text-align: center;
    }
    
    .client-info {
        text-align: center;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--secondary);
    color: var(--text);
}

.cta .btn:hover {
    background: white;
    color: var(--text);
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: white;
}

.footer-col p {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--text);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

.copyright p {
    margin-bottom: 15px;
    font-size: 0.8rem;
    line-height: 1.5;
}

.copyright p:first-child {
    font-size: 0.9rem;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.whatsapp {
    display: block;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Page Hero Styles */
.page-hero {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Attorney Profile */
.attorney-profile {
    padding: 80px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.profile-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.profile-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.profile-content h3 {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

.profile-content p {
    margin-bottom: 30px;
}

.education, .memberships {
    margin-bottom: 30px;
}

.education h4, .memberships h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.education ul, .memberships ul {
    list-style-position: inside;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
}

.signature img {
    height: 60px;
    margin-bottom: 10px;
}

/* Achievements */
.achievements {
    padding: 80px 0;
    text-align: center;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement {
    padding: 30px;
}

.achievement i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.achievement h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Media Section */
.media {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.media-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.media-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.media-logos img:hover {
    opacity: 1;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.member {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Service Details */
.service-details {
    padding: 80px 0;
}

.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    border-bottom: 3px solid var(--primary);
    color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-features .feature {
    text-align: center;
    padding: 30px 20px;
}

.service-features .feature i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.case-study {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    position: relative;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    text-align: center;
}

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

.option {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

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

.option.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price {
    font-size: 2rem;
    color: var(--primary);
    margin: 20px 0;
    font-weight: bold;
}

.option ul {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.option ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.option ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Blog Styles */
.blog-content {
    padding: 80px 0;
}

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

.blog-post {
    margin-bottom: 50px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.blog-post img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-meta {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.blog-post h2 {
    padding: 0 20px 20px;
    font-size: 1.5rem;
}

.blog-post h2 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post h2 a:hover {
    color: var(--primary);
}

.blog-post p {
    padding: 0 20px 20px;
}

.read-more {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Sidebar */
.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 10px;
}

.sidebar-widget ul li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: var(--primary);
}

.popular-post {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

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

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

.popular-post h4 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.subscribe-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form h2, .contact-info h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

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

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero h1, .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .profile-grid,
    .blog-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features,
    .areas-grid,
    .achievements-grid,
    .process-steps,
    .pricing-options,
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .service-tabs {
        flex-direction: column;
    }
    
    .mobile-menu {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        z-index: 999;
        padding-top: 80px;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 0 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero h1, .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero p, .page-hero p {
        font-size: 1rem;
    }
    
    .profile-content h2 {
        font-size: 1.8rem;
    }
    
    .philosophy-content p {
        font-size: 1.1rem;
    }
    
    .tab-btn {
        width: 100%;
        text-align: left;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-btn.active {
        border-left: 3px solid var(--primary);
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .hero, .page-hero {
        padding: 80px 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    .social-icons {
        margin-top: 10px;
    }
    
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .service-tabs {
        overflow-x: auto;
        white-space: nowrap;
        display: block;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        display: inline-block;
        white-space: nowrap;
        margin-right: 5px;
        margin-bottom: 0;
        width: auto;
    }
    
    .tab-content {
        margin-top: 20px;
    }
    
    .contact-form {
        margin-bottom: 40px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-item i {
        margin-bottom: 10px;
    }
    
    .btn, .btn-large {
        width: 100%;
        text-align: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .popular-post {
        flex-direction: column;
    }
    
    .popular-post img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1, .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .achievements-grid, .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
    
    .option.featured {
        transform: none;
    }
    
    .service-tabs {
        display: flex;
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
    }
    
    .info-item i {
        font-size: 1.5rem;
        color: var(--primary);
        margin-right: 15px;
        margin-top: 5px;
    }
    
    .info-content {
        flex: 1;
    }
    
    .info-content h3 {
        margin-bottom: 8px;
        font-size: 1.1rem;
    }
    
    .info-content p {
        margin: 0;
        line-height: 1.6;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.hidden {
    display: none;

}
/* Netlify CMS Styles */
.nc-root {
  --primary: #a92210;
  --primary-text: #fff;
}

.nc-github-button {
  background-color: #a92210;
  border-color: #a92210;
}

.nc-github-button:hover {
  background-color: #8a1c0d;
}

/* Blog Post Styles */
.blog-post-full {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.blog-post-full .post-content {
  margin-top: 2rem;
  line-height: 1.6;
}

.blog-post-full .post-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.blog-post-full .post-content h2,
.blog-post-full .post-content h3,
.blog-post-full .post-content h4 {
  margin-top: 1.5rem;
  color: #333;
}

.blog-post-full .post-content p {
  margin-bottom: 1rem;
}

.blog-post-full .post-content ul,
.blog-post-full .post-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
/* Blog Post Styles */
.blog-post-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.category {
    background-color: #a92210;
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
}

.featured-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.post-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.post-content h2,
.post-content h3 {
    color: #a92210;
    margin: 1.8rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.2rem;
}

.post-content ul,
.post-content ol {
    margin-left: 1.8rem;
    margin-bottom: 1.5rem;
}

.post-content blockquote {
    border-left: 4px solid #a92210;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

.author-box {
    background-color: #f9f9f9;
    border-left: 4px solid #a92210;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}
