/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Section */
.blog-section {
    background-color: #ffffff;
    padding: 64px 0;
}

.blog-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Blog Date */
.blog-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 16px;
}

/* Blog Title */
.blog-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 32px;
    line-height: 1.2;
}

/* Blog Content */
.blog-content {
    max-width: 100%;
    color: #374151;
    line-height: 1.75;
}

/* Introduction Paragraph */
.blog-intro {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #4b5563;
}

/* Regular Paragraphs */
.blog-paragraph {
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.75;
}

/* Headings */
.blog-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 48px;
    margin-bottom: 24px;
}

/* Subheadings */
.blog-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Lists */
.blog-list {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.blog-list li {
    margin-bottom: 8px;
    line-height: 1.75;
}

/* Conclusion Box */
.blog-conclusion {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 8px;
    margin-top: 48px;
}

.conclusion-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 16px;
}

.conclusion-text {
    color: #374151;
    line-height: 1.75;
}

/* Responsive Design */
@media (min-width: 640px) {
    .blog-container {
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .blog-title {
        font-size: 3rem;
    }

    .blog-heading {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        height: 100vh;
    }

    .blog-container {
        padding: 0 32px;
    }
}