
        /* Activities Page Specific Styles */
        .activities-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .activities-header h1 {
            color: #006633;
            font-size: 2em;
            margin-bottom: 10px;
        }
        
        .activities-header p {
            color: #666;
            font-size: 1.1em;
        }
        
        /* Side by Side Layout */
        .side-by-side-activities {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        /* Left Column - EU Activities */
        .eu-activities-column {
            background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-top: 4px solid #006633;
        }
        
        .eu-activities-column h2 {
            color: #006633;
            font-size: 1.5em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff9933;
            display: inline-block;
        }
        
        /* Right Column - Country Activities */
        .country-activities-column {
            background: linear-gradient(135deg, #f8f9fa 0%, #fff3e0 100%);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-top: 4px solid #ff9933;
        }
        
        .country-activities-column h2 {
            color: #006633;
            font-size: 1.5em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff9933;
            display: inline-block;
        }
        
        /* Country Filter Buttons */
        .country-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #ddd;
        }
        
        .filter-btn {
            background: #f0f0f0;
            border: none;
            padding: 6px 15px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.85em;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover {
            background: #ff9933;
            color: white;
        }
        
        .filter-btn.active {
            background: #006633;
            color: white;
        }
        
        /* Activity Cards */
        .activity-card {
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .activity-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        
        .activity-card-content {
            display: flex;
            gap: 15px;
            padding: 15px;
        }
        
        .activity-card-img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }
        
        .activity-card-icon {
            width: 100px;
            height: 100px;
            background: #e8f5e9;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            flex-shrink: 0;
        }
        
        .activity-card-info {
            flex: 1;
        }
        
        .activity-card-info h3 {
            margin: 0 0 8px 0;
            font-size: 1.1em;
            color: #333;
        }
        
        .activity-card-info h3 a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .activity-card-info h3 a:hover {
            color: #ff9933;
        }
        
        .activity-meta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 10px;
            font-size: 0.75em;
            color: #888;
        }
        
        .activity-meta span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .country-badge {
            background: #006633;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.7em;
        }
        
        .activity-card-info p {
            margin: 8px 0;
            color: #666;
            font-size: 0.85em;
            line-height: 1.4;
        }
        
        .read-more-link {
            color: #ff9933;
            text-decoration: none;
            font-size: 0.8em;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .read-more-link:hover {
            padding-left: 5px;
            color: #e68a00;
        }
        
        .view-all-btn {
            display: inline-block;
            background: #006633;
            color: white;
            padding: 10px 25px;
            text-decoration: none;
            border-radius: 25px;
            margin-top: 20px;
            transition: background 0.3s;
        }
        
        .view-all-btn:hover {
            background: #004d26;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 40px;
            color: #888;
        }
        
        /* Mobile Responsive */
        @media (max-width: 900px) {
            .side-by-side-activities {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }
        
        @media (max-width: 600px) {
            .activity-card-content {
                flex-direction: column;
                text-align: center;
            }
            
            .activity-card-img,
            .activity-card-icon {
                margin: 0 auto;
            }
            
            .activity-meta {
                justify-content: center;
            }
            
            .eu-activities-column,
            .country-activities-column {
                padding: 20px;
            }
        }
