* {
    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 h2::before {
    content: "🏞️";
    position: absolute;
    left: -30px;
    font-size: 1.5rem;
}

.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: #1c1c1d;
    font-weight: 600;
}

.article-content strong a{
    color: #1d4ed8;
}

.article-content strong a:hover {
    color: #060a13;
}

.article-content em {
    color: #3b82f6;
    font-style: italic;
}

.article-content a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: #3b82f6;
    transform: translateY(-1px);
}

.highlight-box {
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    color: rgba(0, 0, 0, 0.678);
    padding: 25px;
    margin: 25px 0;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}


.destination-card {
    background: rgba(247, 245, 245, 0.9);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #104bb9;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.destination-card h3 {
    color: #104bb9;
    margin-bottom: 15px;
    position: relative;
}

.destination-card h3::before {
    content: "📍";
    margin-right: 10px;
}

.destination-card ul {
    padding-left: 20px;
}

.destination-card li {
    margin-bottom: 8px;
    position: relative;
}

.price-tag {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    color: #92400e;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}

.website-link {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin: 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.website-link:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    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;
}

.intro-section p {
    position: relative;
    z-index: 1;
}

.cta-section {
    text-align: center;
    color: rgb(17, 14, 14);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    
}

.cta-section h2 {
    font-size: 40px;
    border: none;
    padding: 0;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}

.cta-section h2::before {
    display: none;
}

.cta-section p{
    text-align: center;
}
.cta-button {
    display: inline-block;
    background: white;
    color: #333;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    color: #333;
}

.cta-button i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .article-container {
        max-width: 95%;
        padding: 20px 10px;
    }
    
    .article-header {
        padding: 30px 20px;
    }
    
    .article-content {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .article-container {
        max-width: 100%;
        padding: 15px 10px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-content {
        font-size: 0.95rem;
        padding: 20px 15px;
    }

    .article-content h2 {
        font-size: 1.5rem;
        padding-left: 15px;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }

    .destination-card {
        padding: 20px 15px;
        margin: 20px 0;
    }

    .highlight-box {
        padding: 20px 15px;
        margin: 20px 0;
    }

    .intro-section {
        padding: 20px 15px;
        font-size: 0.95rem;
    }
    
    .intro-section h1 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-content h2 {
        font-size: 1.3rem;
        padding-left: 10px;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
    
    .destination-card {
        padding: 15px 10px;
    }
    
    .highlight-box {
        padding: 15px 10px;
    }
    
    .intro-section {
        padding: 15px 10px;
    }
    
    .intro-section h1 {
        font-size: 1.3rem;
    }
    
    .cta-section {
        padding: 25px 15px;
    }
}

/* Animation for scroll effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-card,
.highlight-box {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1000;
    transition: transform 0.3s ease;
}