/* Blog Section */
.blog {
    padding: 120px 0;
    background: #f6f8fb;
}

/* Container readability */
.blog .container {
    max-width: 780px;
}

/* Header */
.blog-header {
    text-align: center;
    margin-bottom: 70px;
}

.blog-header img{
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Title (better scale) */
.blog-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* Intro paragraph */
.blog-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* Drop cap */
.blog-intro::first-letter {
    font-size: 42px;
    font-weight: 700;
    color: #ff7a18;
    line-height: 1;
}

/* Content */
.blog-content {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* Section */
.blog-section {
    position: relative;
}

/* Headings */
.blog-section h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #1f1f1f;
    line-height: 1.3;
    letter-spacing: -0.3px;
    padding-left: 18px;
}

/* Accent line */
.blog-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, #ff7a18, #ffb347);
    border-radius: 2px;
}

.blog-section h3 {
    font-size: 25px;
    font-weight: 550;
    margin-bottom: 14px;
    color: #1f1f1f;
    line-height: 1.3;
    letter-spacing: -0.3px;
    
}

/* Paragraph */
.blog-section p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Image */
.blog-section img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    margin-top: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease;
}

.blog-section img:hover {
    transform: scale(1.02);
}

/* Spacing after image */
.blog-section img + p {
    margin-top: 18px;
}

/* Divider */
.blog-section:not(:last-child)::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    margin: 50px auto 0;
    background: #eaeaea;
}

/* Conclusion */
.blog-conclusion {
    margin-top: 90px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.blog-conclusion h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.blog-conclusion p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    max-width: 640px;
    margin: 0 auto;
}

/* Highlight */
.highlight {
    background: linear-gradient(transparent 60%, #ffe0c2 60%);
}

/* Responsive */
@media (max-width: 768px) {
    .blog {
        padding: 80px 0;
    }

    .blog-title {
        font-size: 34px;
    }

    .blog-intro {
        font-size: 17px;
    }

    .blog-section h2 {
        font-size: 24px;
    }

    .blog-section p {
        font-size: 16px;
        line-height: 1.8;
    }

    .blog-conclusion h2 {
        font-size: 26px;
    }

    .blog-conclusion p {
        font-size: 16px;
    }
}