/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 5px solid #2a9d8f;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

header p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-style: italic;
}

/* Main Content Styles */
.blog-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.intro {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #444;
    font-weight: 500;
}

h2 {
    color: #2a9d8f;
    margin: 2rem 0 1.2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

h3 {
    color: #264653;
    margin: 1.5rem 0 0.8rem;
}

h4 {
    color: #2a9d8f;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.2rem;
}

.highlight {
    background-color: #e9f5f3;
    border-left: 4px solid #2a9d8f;
    padding: 1.2rem;
    margin: 1.8rem 0;
    border-radius: 0 8px 8px 0;
}

.flight-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.8rem;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.flight-info h3 {
    color: #2a9d8f;
    margin-bottom: 1.2rem;
}

.flight-info ul {
    list-style-type: none;
    padding-left: 0;
}

.flight-info li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    padding-left: 1.5rem;
}

.flight-info li:before {
    content: "✈️";
    position: absolute;
    left: 0;
}

.flight-info li:last-child {
    border-bottom: none;
}

.tip-box {
    background-color: #fff9e6;
    border: 1px solid #ffd166;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.8rem 0;
}

.tip-box h3 {
    color: #e6a700;
    margin-bottom: 0.5rem;
}

.cta-section {
    text-align: center;
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    background-color: #2a9d8f;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: #21867a;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-note {
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.blog-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1.8rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.destination-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2a9d8f;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.keyword-link {
    color: #2a9d8f;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px dotted #2a9d8f;
}

.keyword-link:hover {
    color: #21867a;
    border-bottom: 1px solid #21867a;
}

.sign-off {
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
}

/* Footer Styles */
footer {
    background-color: #264653;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer a {
    color: #2a9d8f;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
}