.container {
    margin: 0 auto;
    padding: 16px 16px;
}

/* Header */
h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 16px;
}

.post-meta {
    text-align: center;
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 48px;
}
/* Section titles */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 24px;
    color: #212529;
}

/* Content paragraphs */
.content p {
    margin-bottom: 16px;
}

/* Lists */
.value-list p {
    margin-bottom: 12px;
}

/* Tip boxes */
.tip-box {
    background: #e9f5ff;
    border-left: 5px solid #007bff;
    padding: 24px;
    margin: 32px 0;
    border-radius: 8px;
    font-size: 1.05em;
}

/* Text + Image layout */
.text-image-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.text-image-row .text {
    flex: 1;
    min-width: 280px;
}

.text-image-row .image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: flex-end;
}

.text-image-row img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* CTA button */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #fff;
    padding-top: 64px;
    padding-bottom: 32px;
    border-top: 1px solid #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-image-row {
        flex-direction: column;
        gap: 24px;
    }

    .text-image-row .image {
        justify-content: center;
    }
}
