* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.article-container {
    max-width: 85%;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-meta {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin: 2.5rem 0 1rem 0;
    border-left: 4px solid #3b82f6;
    padding-left: 20px;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2rem 0 1rem 0;
}

.article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-content strong {
    color: #1a202c;
    font-weight: 600;
}

.article-content em {
    color: #3b82f6;
    font-style: italic;
}

.article-content a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: #3b82f6;
}

.highlight-box {
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border-left: 4px solid #3b82f6;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.destination-card {
    background: rgba(247, 245, 245, 0.801);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #104bb9;
}

.destination-card h3 {
    color: #104bb9;
    margin-bottom: 15px;
}

.price-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
}

.website-link {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin: 10px 0;
    transition: background 0.3s ease;
}

.website-link:hover {
    background: #2563eb;
    border-bottom: none;
}

.intro-section {
    background: linear-gradient(135deg, #314ed1 0%, #2c29d6 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.intro-section h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}
@media (max-width: 992px) {
    .article-container {
        max-width: 98%;
        padding: 20px 5px;
    }
    .website-link:hover {
    background: #2563eb;
    border-bottom: none;
}
}

@media (max-width: 768px) {
    .article-container {
        max-width: 100%;
        padding: 15px 20px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-content {
        font-size: 0.98rem;
    }

    .article-content h2 {
        font-size: 1.2rem;
        padding-left: 10px;
    }

    .article-content h3 {
        font-size: 1.1rem;
    }

    .destination-card {
        padding: 12px;
        margin: 15px 0;
    }

    .highlight-box {
        padding: 12px;
        margin: 15px 0;
    }

    .intro-section {
        padding: 15px;
        font-size: 0.98rem;
    }
    .website-link:hover {
        background: #2563eb;
        border-bottom: none;
    }
}