.blog-main {
    padding: 36px 0;
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.back-link {
    color: #301B60;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 24px;
    display: inline-block;
}

.back-link:hover {
    text-decoration: underline;
}

.blog-thumbnail {
    margin-bottom: 32px;
}

.blog-thumbnail img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-title {
    color: #301B60;
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    margin-bottom: 24px;
    text-align: center;
}

.blog-date {
    text-align: center;
    margin-bottom: 32px;
}

.blog-date p {
    color: #301B60;
    font-weight: 500;
    font-size: 18px;
}

.blog-content {
    color: #301B60;
}

.blog-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.blog-content ul {
    list-style: circle;
    font-size: 18px;
    padding-left: 38px;
    padding-right: 38px;
}


.blog-content .intro-text {
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.intro-text {
    text-align: center;
}

.blog-content h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.25;
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-content h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    margin-top: 24px;
    margin-bottom: 12px;
}

.blog-content p a {
    text-decoration: underline;
}

.cta-section {
    margin-top: 40px;
    padding: 24px;
    background: rgba(48, 27, 96, 0.1);
    border-radius: 20px;
    text-align: center;
}

.cta-section h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    margin-bottom: 12px;
    margin-top: 0;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #301B60;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    padding: 0 21px;
    height: 44px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 768px) {
    .blog-title {
        font-size: 32px;
        line-height: 34px;
    }

    .blog-content h2 {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 22px;
    }

    .blog-content p,
    .blog-content .intro-text {
        font-size: 16px;
    }
}