/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #0A1F3A;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    color: #fff;
}

/* Blog Listing Page Styles */
.blog-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #0A1F3A;
    min-height: 100vh;
}

/* Blog Header Styles */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.blog-description {
    font-size: 1.2rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--body-font);
}

/* Blog Grid Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Blog Card Styles */
.blog-card {
    background: #18243a;
    border: 1px solid #D4AF37;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: transform 0.3s ease;
    color: #fff;
}

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

.blog-card h2 {
    color: #FFD700;
    font-weight: 800;
    font-size: 1.6rem;
    font-family: var(--heading-font);
    margin-bottom: 1rem;
}

.blog-card h2 a {
    color: inherit;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #fff;
}

.blog-meta {
    color: #fff;
    font-size: 1.08rem;
    margin-bottom: 1rem;
    font-family: var(--body-font);
    font-weight: 600;
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-excerpt {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 1.13rem;
}

.read-more {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.08rem;
}

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

/* Existing Blog Post Styles */
.blog-post .blog-header {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-post .blog-header h1 {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--heading-font);
}

.blog-post .blog-meta {
    color: #D4AF37;
    font-size: 0.9rem;
    font-family: var(--body-font);
}

.blog-post .blog-meta span {
    margin: 0 1rem;
}

.blog-content {
    line-height: 1.8;
    color: #fff;
    font-family: var(--body-font);
}

.lead {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: var(--body-font);
}

.blog-content h2 {
    color: #D4AF37;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    font-family: var(--heading-font);
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: #fff;
}

.blog-content ul, 
.blog-content ol {
    margin: 1rem 0 2rem 2rem;
    color: #fff;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.faq {
    background: rgba(45, 45, 45, 0.3);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq h3 {
    color: #D4AF37;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.3rem;
    font-family: var(--heading-font);
}

.faq p {
    margin-bottom: 1rem;
    color: #fff;
}

/* Blog CTA Section */
.blog-cta {
    background: rgba(45, 45, 45, 0.3);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #D4AF37;
    font-family: var(--heading-font);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-option {
    text-align: center;
}

.contact-option h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.option-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background-color: #D4AF37;
    color: #0A1F3A;
    border: 2px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    font-family: var(--body-font);
}

.option-button:hover {
    background-color: #b38f2e;
    border-color: #b38f2e;
    transform: translateY(-2px);
}

.contact-icon {
    width: 20px;
    height: 20px;
}

.contact-note {
    margin-top: 1.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--body-font);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-post {
        margin: 1rem;
        padding: 1rem;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-container {
        padding: 1rem;
    }

    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }

    .option-button {
        width: 100%;
    }
} 