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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Clean List Styles */
.card-content ul, .map-info ul, .activity-item ul, .attraction-card ul, .content-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: none;
    text-align: left;
}

.card-content ul li, .map-info ul li, .activity-item ul li, .attraction-card ul li, .content-section ul li {
    position: relative;
    padding: 0.4rem 0;
    margin-bottom: 0.3rem;
    line-height: 1.6;
    text-align: left;
}

.card-content ul li::before, .map-info ul li::before, .activity-item ul li::before, .attraction-card ul li::before, .content-section ul li::before {
    content: '▸';
    position: absolute;
    left: -1.2rem;
    color: #2c5282;
    font-weight: bold;
}

.card-content ul li:last-child, .map-info ul li:last-child, .activity-item ul li:last-child, .attraction-card ul li:last-child, .content-section ul li:last-child {
    margin-bottom: 0;
}

/* Special styling for lists with strong elements */
.card-content ul li strong, .map-info ul li strong, .activity-item ul li strong, .attraction-card ul li strong, .content-section ul li strong {
    color: #2c5282;
    font-weight: 600;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 a {
    color: #2c5282;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5282;
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
    display: block;
    font-size: 1rem;
    line-height: normal;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f8fafc;
    color: #2c5282;
}

.dropdown-menu a.active {
    background-color: #2c5282 !important;
    color: white !important;
}

.nav-menu a.active {
    color: #2c5282;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0%;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5282;
    color: white;
}

.btn-primary:hover {
    background: #2a4e7c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5282;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Local Information Section */
.local-info {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f3ff 100%);
}

.local-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c5282;
    font-weight: 600;
}

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

.info-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(44, 82, 130, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(44, 82, 130, 0.1);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 82, 130, 0.15);
}

.info-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.info-content {
    flex: 1;
}

.info-content h3 {
    color: #2c5282;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.info-content span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.timezone, .day-of-week {
    background: #e6f3ff;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    color: #2c5282;
    font-weight: 600;
}

.temperature {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem !important;
}

.temp-range {
    color: #2c5282 !important;
    font-size: 1.3rem !important;
}

/* Weekly Forecast */
.weekly-forecast {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(44, 82, 130, 0.1);
    border: 1px solid rgba(44, 82, 130, 0.1);
}

.weekly-forecast h3 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.forecast-item {
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.forecast-item:hover {
    background: #e6f3ff;
    border-color: #2c5282;
    transform: translateY(-2px);
}

.forecast-day {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.forecast-icon {
    font-size: 2rem;
    margin: 0.5rem 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.forecast-temps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.forecast-temps .high {
    color: #2c5282;
    font-size: 1.1rem;
}

.forecast-temps .low {
    color: #666;
    font-size: 0.9rem;
}

/* Weather Icons Animation */
.weather-icon {
    animation: weatherPulse 3s ease-in-out infinite;
}

@keyframes weatherPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive adjustments - iPad and below (860px) */
@media (max-width: 860px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .info-icon {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .info-content p {
        font-size: 1.2rem;
    }
    
    .forecast-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .weekly-forecast {
        padding: 1.5rem;
    }
}

/* Location Map Section */
.location-map {
    padding: 4rem 0;
}

.location-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.map-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.travel-times h4 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.travel-times ul {
    list-style: none;
}

.travel-times li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Main Attractions Section */
.main-attractions {
    padding: 4rem 0;
    background: #f8fafc;
}

.main-attractions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

/* 只針對accommodation頁面的Featured Accommodation區域 */
.accommodation-cards .attraction-card {
    position: relative;
    background-size: cover;
    background-position: center -100px;
    background-repeat: no-repeat;
}

/* 隱藏原始圖片標籤，使用背景圖片代替 */
.accommodation-cards .attraction-card img {
    opacity: 0;
    height: 200px;
}

.accommodation-cards .card-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.85) 15%,
        rgba(255, 255, 255, 0.95) 35%,
        rgba(255, 255, 255, 1) 60%);
}

/* 為accommodation頁面的三張圖片設置不同的背景 */
.accommodation-cards .attraction-card:nth-child(1) {
    background-image: url('images/hcmc-pullman-hotel.jpg');
}

.accommodation-cards .attraction-card:nth-child(2) {
    background-image: url('images/hcmc-heritage-hotel.jpg');
}

.accommodation-cards .attraction-card:nth-child(3) {
    background-image: url('images/hcmc-hostel.jpg');
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.card-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #666;
}

/* Featured Activities Section */
.featured-activities {
    padding: 4rem 0;
}

/* Reduce spacing when featured-activities follows content-section */
.content-section + .featured-activities {
    padding-top: 0rem;
}

.featured-activities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

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

.activity-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-3px);
}

.activity-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.activity-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
}

/* External Links Styles */
.external-link {
    color: #2c5282 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.external-link:hover {
    color: #1a365d !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.external-link::after {
    content: ' ↗';
    font-size: 0.8em;
    color: #4a5568;
    transition: color 0.3s ease;
}

.external-link:hover::after {
    color: #1a365d;
}

/* Widget Separator Styles */
.widget-separator {
    height: 2px;
    margin: 20px 0;
}

.widget-separator.top {
    margin-bottom: 30px;
    background: linear-gradient(to right, transparent, #333, transparent);
    opacity: 0.3;
}

.widget-separator.bottom {
    margin-top: 30px;
    margin-bottom: 20px;
    background: transparent;
}

/* GetYourGuide Widget Container */
.getyourguide-widget-container {
    margin: 40px 0;
    padding: 0 20px;
}

.getyourguide-widget-container > div {
    max-width: 100%;
    overflow: hidden;
}

/* Travel Widget Container */
.travel-widget-container {
    margin-top: 40px;
    padding-top: 30px;
}

/* Mobile Navigation - 860px and below */
@media (max-width: 860px) {
    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Mobile menu - clean implementation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1000;
        /* Remove all default spacing */
        padding: 0;
        margin: 0;
        list-style: none;
        /* Simple block layout - no flexbox needed */
        display: block;
        /* Ensure content doesn't get cut off */
        overflow-x: hidden;
    }

    /* Show mobile menu when active */
    .nav-menu.active {
        transform: translateX(0);
    }

    /* Mobile menu items - simple block layout */
    .nav-menu li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        /* Clean separator using border */
        border-bottom: 1px solid #e5e5e5;
    }

    /* Remove border from last item */
    .nav-menu li:last-child {
        border-bottom: none;
    }

    /* Mobile menu links - clean and simple */
    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        color: #333;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        text-align: left;
        transition: all 0.2s ease;
        /* Reset everything */
        margin: 0;
        border: none;
        background: none;
        width: 100%;
        box-sizing: border-box;
        line-height: 1.2;
    }

    .nav-menu a:hover {
        background-color: #f8fafc;
        color: #2c5282;
    }

    /* Mobile dropdown - reset positioning */
    .dropdown {
        position: static !important;
        margin: 0;
        padding: 0;
    }

    .dropdown-toggle {
        display: block;
        padding: 1rem 1.5rem;
        color: #333;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        background: none;
        border: none;
        width: 100%;
        cursor: pointer;
        transition: all 0.2s ease;
        text-align: left;
        box-sizing: border-box;
        margin: 0;
        line-height: 1.2;
        position: relative;
    }



    .dropdown-toggle:hover {
        background-color: #f8fafc;
        color: #2c5282;
    }

    /* Hide desktop dropdown arrow in mobile */
    .dropdown-arrow {
        display: none !important;
    }

    /* Add mobile-specific arrow indicator for dropdown toggle */
    .dropdown-toggle::after {
        content: "▼";
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.2s ease;
        font-size: 0.8rem;
        color: #666;
    }

    /* Rotate arrow when dropdown is active */
    .dropdown.active .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* Dropdown menu - mobile native style */
    .dropdown-menu {
        display: none;
        background-color: white;
        padding: 0;
        margin: 0;
        list-style: none;
        /* Reset desktop positioning */
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        min-width: auto !important;
        z-index: auto !important;
    }

    /* Show dropdown when active */
    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Dropdown menu items - same style as main menu */
    .dropdown-menu li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    /* Dropdown menu links - same style as main menu but indented */
    .dropdown-menu a {
        display: block;
        padding: 1rem 2.5rem; /* Extra left padding for indentation */
        color: #333;
        font-size: 1rem;
        background-color: white;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        text-align: left;
        transition: all 0.2s ease;
        text-decoration: none;
        border: none;
        line-height: 1.2;
        /* Subtle background to show it's a submenu */
        background-color: #fafafa;
    }

    .dropdown-menu a:hover {
        background-color: #f8fafc;
        color: #2c5282;
    }

    .dropdown-menu a.active {
        background-color: #2c5282;
        color: white;
    }



    /* Other responsive styles */
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.4rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.5rem !important;
    }
}

/* Mobile phones - medium to small (620px and below) */
@media (max-width: 620px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Additional mobile optimizations */
    .info-card {
        padding: 1rem;
    }
    
    .forecast-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .attractions-grid {
        gap: 1.5rem;
    }

    .page-header h1 {
        font-size: 2.2rem !important;
    }
}

/* Very small mobile phones (400px and below) */
@media (max-width: 400px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
    }
    
    .info-card {
        padding: 0.75rem;
    }
    
    .forecast-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.25rem;
    }
    
    .forecast-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .nav-logo h1 a {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2.0rem !important;
    }
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c5282;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.affiliate-box {
    background: #f0f8ff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.affiliate-box h3 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.affiliate-box .btn {
    margin: 0.5rem;
}

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

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.highlight-box {
    background: #fff5f5;
    border-left: 4px solid #e53e3e;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #e53e3e;
    margin-bottom: 1rem;
}

/* Fix btn-secondary visibility on light backgrounds */
.content-section[style*="background: #f8fafc"] .btn-secondary,
.content-section[style*="background: #f8fafc"] .activity-item .btn-secondary {
    background: #2c5282;
    color: white;
    border: 2px solid #2c5282;
}

.content-section[style*="background: #f8fafc"] .btn-secondary:hover,
.content-section[style*="background: #f8fafc"] .activity-item .btn-secondary:hover {
    background: #2a4e7c;
    color: white;
    border: 2px solid #2a4e7c;
    transform: translateY(-2px);
} 