
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc; /* Tailwind: bg-blue-50 */
            color: #334155; /* Tailwind: text-slate-700 */
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 1.5rem;
        }
        h1 {
            font-size: 4rem; /* ~44px */
            font-weight: 800; /* Extra-bold */
            color: #1a202c; /* Darker for headings */
            line-height: 1.2;
        }
        h2 {
            font-size: 2.25rem; /* ~36px */
            font-weight: 700; /* Bold */
            color: #1a202c;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
        }
        h3 {
            font-size: 1.75rem; /* ~28px */
            font-weight: 700;
            color: #2d3748; /* Slightly lighter for subheadings */
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        p {
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        .cta-button {
            background-color: #ef4444; /* Tailwind: bg-red-500 */
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 9999px; /* Tailwind: rounded-full */
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .cta-button:hover {
            background-color: #dc2626; /* Tailwind: bg-red-600 */
            transform: translateY(-2px);
        }
        .place-card {
            background-color: #ffffff;
            border-radius: 0.75rem; /* Tailwind: rounded-xl */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .place-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .place-title {
            font-size: 1.5rem; /* ~24px */
            font-weight: 700;
            color: #ef4444; /* Tailwind: text-red-500 */
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .place-icon {
            font-size: 2rem; /* ~32px */
            line-height: 1;
        }
        .footer-section {
            background-color: #e2e8f0; /* Tailwind: bg-slate-200 */
            padding: 2rem;
            border-radius: 0.75rem;
            text-align: center;
            margin-top: 3rem;
            color: #475569; /* Tailwind: text-slate-600 */
        }
        .footer-link {
            color: #ef4444;
            font-weight: 600;
            text-decoration: none;
        }
        .footer-link:hover {
            text-decoration: underline;
        }
        .article-image {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .place-card-image {
            width: 100%;
            height: 200px; /* Fixed height for consistency */
            object-fit: cover; /* Ensures image covers the area, cropping if necessary */
            border-radius: 0.5rem; /* Slightly less rounded than card */
            margin-bottom: 1rem;
        }
        .place-card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }
        .place-card p {
            text-align: justify;
        }
        @media (max-width: 768px) {
            .place-card-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            .place-title { font-size: 1.25rem; }
            .place-icon { font-size: 1.75rem; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.75rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.25rem; }
            .place-title { font-size: 1.125rem; }
            .place-icon { font-size: 1.5rem; }
            .cta-button { padding: 0.6rem 1.5rem; font-size: 0.9rem; }
        }
    